一键导入
agentio-rss
Use when reading RSS feeds via the agentio CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when reading RSS feeds via the agentio CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use when interacting with Google Chat via the agentio CLI - send messages, list spaces, read history.
Use to manage the agentio daemon (runs the scheduler for .run.md prompts).
Use when interacting with Google Docs via the agentio CLI - list, read, create.
Use when interacting with Google Drive via the agentio CLI - list, search, download, upload, folder navigation.
Use when interacting with Gmail via the agentio CLI - list, read, search, send, draft, reply, archive, mark, attachments, export.
Use when interacting with mcp via the agentio CLI.
基于 SOC 职业分类
| name | agentio-rss |
| description | Use when reading RSS feeds via the agentio CLI. |
Auto-generated from agentio skill rss. Do not edit by hand.
List articles from a blog
Options:
--limit <n>: Number of articles (default: 20)--since <date>: Only articles after this date (YYYY-MM-DD)Examples:
# 20 most recent articles (feed auto-discovered from blog URL)
agentio rss articles https://simonwillison.net
# cap to 5 articles
agentio rss articles https://simonwillison.net --limit 5
# only articles since a date
agentio rss articles https://steipete.me --since 2026-01-01
# direct feed URL also works
agentio rss articles https://example.com/feed.xml --limit 10
Get a specific article
Examples:
# fetch full content by article URL (most common — copy from 'rss articles' output)
agentio rss get https://blog.fsck.com https://blog.fsck.com/2025/12/27/streamlinear/
# by GUID (also shown in the articles list)
agentio rss get https://simonwillison.net "tag:simonwillison.net,2024:/blog/2024/jan/12/article"
Get feed information
Examples:
# title, description, discovered feed URL, article count
agentio rss info https://kau.sh
# also accepts a direct feed URL
agentio rss info https://example.com/atom.xml
Auto-discovery looks for HTML <link rel="alternate"> tags first, then falls
back to common paths: /feed, /feed.xml, /rss.xml, /atom.xml, /index.xml.