agentio-rss

Read RSS feed articles and metadata via the agentio CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-rss-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-rss
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-rss
Command: npx skills add https://github.com/plosson/agentio --skill agentio-rss-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Reading and monitoring RSS feeds from blogs and news sites requires parsing feed XML and handling discovery manually. This Skill lets an agent list articles, fetch full article content, and inspect feed metadata through simple agentio CLI commands. ## Core Features & Use Cases - List Articles: Run agentio rss articles <url> to list recent articles from any blog, with --limit and --since filters for date-bounded monitoring. - Fetch Article Content: Run agentio rss get <url> <article-id> to retrieve a specific article by its URL or GUID. - Feed Inspection: Run agentio rss info <url> to get the feed title, description, discovered feed URL, and article count. - Use Case: Schedule a daily GitHub Actions job that lists new articles from a set of blogs since yesterday and posts a digest to Slack or Telegram. ## Quick Start Use the agentio rss skill to list the 10 most recent articles from https://simonwillison.net and summarize them.

Frequently Asked Questions about agentio-rss

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list recent articles from an RSS feed with agentio?▼

Run `agentio rss articles <url>` with the blog or feed URL. Use `--limit` to cap the number of articles (default 20) and `--since YYYY-MM-DD` to only show articles published after a given date.

How to fetch full content of a specific RSS article?▼

Use `agentio rss get <feed-url> <article-id>`, where the article ID is typically the article URL copied from the `rss articles` output. A GUID shown in the articles list also works as the identifier.

Does agentio rss work with a blog URL instead of a feed URL?▼

Yes, agentio auto-discovers feeds from a blog URL by checking HTML link rel="alternate" tags first, then falling back to common paths like /feed, /feed.xml, /rss.xml, /atom.xml, and /index.xml. Direct feed URLs are also accepted.

Can I filter RSS articles by publication date?▼

Yes, pass `--since <date>` in YYYY-MM-DD format to `agentio rss articles` to return only articles published after that date. This is useful for incremental daily or weekly digest jobs.

What information does agentio rss info return?▼

The `agentio rss info <url>` command returns the feed title, description, the discovered feed URL, and the article count. It accepts both blog URLs and direct feed URLs.