rss-fetch
Installation
SKILL.md
How to Use
1. Fetch Raw RSS Feed
curl -s "https://hnrss.org/frontpage" | head -100
2. Parse RSS with xmllint
Extract titles from RSS feed:
curl -s "https://hnrss.org/frontpage" | xmllint --xpath '//item/title/text()' - 2>/dev/null
Extract titles and links: