← スキル一覧に戻る

rss-reader
by memorysaver
Looplia Skills provides curated skills—packaged as a Claude Code-compatible plugin—to accelerate workflow design, orchestration, and execution.
⭐ 0🍴 0📅 2026年1月19日
SKILL.md
name: rss-reader description: Read and parse RSS/Atom feeds to monitor news, blogs, and content updates. Use when you need to fetch RSS feeds, parse entries, or monitor content sources for updates.
RSS Reader
Fetch, parse, and process RSS/Atom feeds to monitor content sources and extract updates.
When to Use
- Monitoring news feeds for specific topics
- Tracking blog updates from multiple sources
- Aggregating content from various RSS sources
- Extracting structured data from feed entries
Feed Fetching
Using the Script
python scripts/fetch_rss.py <feed_url> [--limit N] [--format json|text]
Arguments:
feed_url: The RSS/Atom feed URL to fetch--limit N: Number of entries to return (default: 10)--format: Output format -jsonortext(default: text)
Examples:
# Fetch latest 5 entries as text
python scripts/fetch_rss.py https://example.com/feed.xml --limit 5
# Fetch as JSON for processing
python scripts/fetch_rss.py https://example.com/rss --format json
Feed Entry Structure
Each feed entry typically contains:
- title: Entry headline
- link: URL to full content
- published: Publication date
- summary: Brief description or excerpt
- author: Content author (if available)
Common RSS Sources
| Type | Example Feed Pattern |
|---|---|
| Blogs | /feed, /rss, /atom.xml |
| News | /rss/headlines, /feeds/all |
| GitHub | /releases.atom, /commits.atom |
/.rss, /top/.rss |
Processing Guidelines
- Check feed validity: Ensure URL returns valid XML
- Handle encoding: Most feeds use UTF-8
- Parse dates: Use ISO 8601 format when available
- Respect rate limits: Cache results when possible
- Handle errors gracefully: Some feeds may be temporarily unavailable
スコア
総合スコア
70/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です