Agent skill · Content & Marketing

rss-catchup

Fetch and summarize latest articles from RSS feeds. Creates notes with article summaries as bullet points. Use to catch up on blogs without reading everything. Triggers on "rss catchup", "blog catchup", "check feeds", "summarize articles".

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill rss-catchup --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: BashReadWriteEditGlobGrepWebFetch
Path: skills/analysis/rss-catchup/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

Catch up on RSS feeds by auto-summarizing new articles. ## Prerequisites Requires `feedparser`: ```bash pip install feedparser ``` ## Helper Script Use `scripts/rss_helper.py` for fetching data: ```bash # List recent articles from a feed python3 scripts/rss_helper.py feed URL [limit] # Get article content (fetches full page) python3 scripts/rss_helper.py article URL ``` ## Workflow 1. **Load configuration** - Read feed list from `references/feeds.json` - Read last run timestamp from `references/state.json` - If first run: go back ~3 months - Otherwise: only articles since last run 2. **For each enabled feed:** - Run: `python3 scripts/rss_helper.py feed "FEED_URL" 20` - Filter to articles published since last run - **Deduplicate against existing notes:** ```bash grep -rl "media: {article_url}" "my-vault/07 Knowledge Base/Capture/Articles/" ``` - If a note with that URL exists: skip (already processed, may be missing from state) 3. **For each new article:** - If feed provides full content, use that - Otherwise, run: `python3 scripts/rss_helper.py article "ARTICLE_URL"` to fetch full text - Summarize the content into bullet points (3-8 based on length/density) - Create article note wi

What's inside
Steps it walks through
  1. Prerequisites
  2. Helper Script
  3. Workflow
  4. Tagging
  5. Article Note Format
  6. Feed Config
  7. Discovery Note Format
  8. Processing Tips
  9. Path Handling
Ships with 1 file
  • metadata.json
Commands it runs
pip install feedparser
List recent articles from a feed
python3 scripts/rss_helper.py feed URL [limit]
Get article content (fetches full page)
python3 scripts/rss_helper.py article URL
grep -rl "media: {article_url}" "my-vault/07 Knowledge Base/Capture/Articles/"
More from claude-skill-registry
All skills →
About this skill
What does the rss-catchup skill do?

Fetch and summarize latest articles from RSS feeds. Creates notes with article summaries as bullet points. Use to catch up on blogs without reading everything. Triggers on "rss catchup", "blog catchup", "check feeds", "summarize articles".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill rss-catchup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going