What problem does it solve? Checking blogs, release pages, subreddits, and newsrooms for updates usually means scraping rendered HTML pages, which is fragile and expensive. This Skill reads any RSS 2.0, RSS 1.0/RDF, Atom, or JSON Feed URL into a clean, date-sorted list of entries, and automatically discovers the feed hidden behind an ordinary page URL. ## Core Features & Use Cases - Feed Reading: Parse RSS, Atom, RDF, and JSON Feed sources into structured entries with title, link, published date, author, and summary, sorted newest-first. - Feed Discovery: Point it at a plain site URL and it finds the advertised feed via <link rel="alternate"> tags or common paths like /feed and /atom.xml. - Filtering & Automation: Bound results with --limit and --since for incremental cron digests, and emit machine-readable JSON with --json. - Use Case: Ask for the latest releases of a GitHub repository; the Skill reads releases.atom, returns the newest entries with dates and links, and you hand an entry link to web_extract for the full text. ## Quick Start Use the rss-feeds skill to read the latest 10 entries from https://hnrss.org/frontpage and summarize what is new.