Agent skill · AI & Agents

fetch-rss-feeds

Fetch articles from RSS/Atom feeds and store them in memory for analysis. Uses the rss tool for fetching and memory MCP for storage and deduplication. '

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill fetch-rss-feeds --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 2.0.0
Path: skills/analysis/fetch-rss-feeds/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

# Fetch RSS Feeds Fetch and store articles from RSS/Atom feeds with deduplication. ## When to Use Use this skill when you need to: - Collect articles from RSS or Atom feeds - Store articles in memory for later analysis - Avoid processing duplicate articles ## Instructions ### Step 1: Check for Duplicates Before Fetching Before fetching each feed, prepare to deduplicate articles: - Use `memory/check_seen` with the article URL as the key - Namespace: `news/articles` ### Step 2: Fetch RSS Feeds Use the `rss` tool to fetch articles from configured feeds. **Feed sources to fetch:** - Company blogs (OpenAI, Anthropic, Google DeepMind, etc.) - AI-focused tech news (TechCrunch AI, VentureBeat AI, The Verge AI) - Research feeds (arXiv, Papers with Code) **For each feed:** 1. Call the `rss` tool with the feed URL 2. Extract: title, url, published_date, summary, author ### Step 3: Filter and Deduplicate For each article from the feed: 1. **Check if already seen:** - Call `memory/check_seen` with key=URL hash, namespace="news/articles" - If seen=true, skip this article 2. **Validate required fields:** - Article must have: title, url - Skip articles missing required fields 3. **Filter by age (o

What's inside
Steps it walks through
  1. When to Use
  2. Instructions
  3. Step 1: Check for Duplicates Before Fetching
  4. Step 2: Fetch RSS Feeds
  5. Step 3: Filter and Deduplicate
  6. Step 4: Store New Articles
  7. Step 5: Return Results
  8. Tool Usage Guidance
  9. rss tool
  10. memory/checkseen
  11. memory/add
  12. memory/markseen
  13. Error Handling
  14. Success Criteria
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the fetch-rss-feeds skill do?

Fetch articles from RSS/Atom feeds and store them in memory for analysis. Uses the rss tool for fetching and memory MCP for storage and deduplication. '

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill fetch-rss-feeds --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