Skip to content

Commit b1efbfa

Browse files
pal-hexraysclaude
andcommitted
docs: add agentio-rss skill for Claude Code
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9b9d41d commit b1efbfa

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

claude/skills/agentio-rss/SKILL.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
name: agentio-rss
3+
description: Use when reading RSS/Atom feeds - list articles, get article content, or get feed info from any blog URL. Auto-discovers feed URLs from blog home pages.
4+
---
5+
6+
# RSS Feed Operations with agentio
7+
8+
Use `agentio rss` commands to read RSS/Atom feeds. Just provide a blog URL - the feed will be auto-discovered.
9+
10+
## List Articles
11+
12+
```bash
13+
agentio rss articles <url> [--limit N] [--since YYYY-MM-DD]
14+
```
15+
16+
Options:
17+
- `--limit <n>`: Number of articles (default: 20)
18+
- `--since <date>`: Only articles after this date
19+
20+
Examples:
21+
```bash
22+
agentio rss articles https://simonwillison.net --limit 5
23+
agentio rss articles https://steipete.me --since 2025-01-01
24+
```
25+
26+
## Get Article Content
27+
28+
```bash
29+
agentio rss get <url> <article-id>
30+
```
31+
32+
The article-id can be the article URL or GUID from the articles list.
33+
34+
Example:
35+
```bash
36+
agentio rss get https://blog.fsck.com https://blog.fsck.com/2025/12/27/streamlinear/
37+
```
38+
39+
## Get Feed Info
40+
41+
```bash
42+
agentio rss info <url>
43+
```
44+
45+
Shows feed title, description, discovered feed URL, and article count.
46+
47+
Example:
48+
```bash
49+
agentio rss info https://kau.sh
50+
```
51+
52+
## Feed Auto-Discovery
53+
54+
The URL can be:
55+
- A blog home page (e.g., `https://simonwillison.net`)
56+
- A direct feed URL (e.g., `https://example.com/feed.xml`)
57+
58+
Auto-discovery checks:
59+
1. HTML `<link rel="alternate">` tags
60+
2. Common paths: `/feed`, `/feed.xml`, `/rss.xml`, `/atom.xml`, `/index.xml`

0 commit comments

Comments
 (0)