| name | skyreader |
| description | Read and manage RSS feeds, saved articles, and subscriptions using the Skyreader CLI. Use when the user asks about their feeds, articles, saved items, subscriptions, or wants to read/browse RSS content. |
| allowed-tools | Bash(skyreader *) |
Skyreader CLI
Use the skyreader CLI to interact with the user's Skyreader account. The CLI must already be authenticated (via skyreader login).
Commands
Check auth status
skyreader whoami
List subscriptions
skyreader subscriptions
skyreader subscriptions --json
Fetch feed articles
skyreader feeds --all --limit 5
skyreader feeds https://example.com/rss
skyreader feeds --all --content --limit 3
skyreader feeds --all --unread
skyreader feeds --all --since "3 days ago"
skyreader feeds --all --since yesterday
skyreader feeds --all --since 2024-01-01
skyreader feeds --all --unread --since "1 week ago" --limit 10
skyreader feeds --all --json
Saved articles
skyreader saved
skyreader saved --archive
skyreader saved --all
skyreader saved --content
skyreader saved --json
Tips
- Always use
--json when you need to parse or process the output programmatically.
- Use
--limit with feeds to avoid fetching too many articles at once.
- Use
--content to get full article text for summarization or analysis.
- Combine
--unread and --since to focus on recent new content.
- When the user asks to "catch up" or "what's new", use
--unread --since "1 day ago" or similar.
- When summarizing articles, fetch with
--content --json for the richest data.