blog-watcher

Installation
SKILL.md

Blog Watcher

Overview

Monitor blogs and RSS/Atom feeds for new content and updates.

Reading RSS/Atom Feeds

Fetch and parse with curl + jq/xmlstarlet

# Atom feed (GitHub releases, blogs)
curl -s "https://github.com/user/repo/releases.atom" \
  | xmlstarlet sel -t -m "//entry" -v "title" -n

# RSS feed
curl -s "https://blog.example.com/rss" \
  | xmlstarlet sel -N rss="http://purl.org/rss/1.0/" -t -m "//item" -v "title" -o " | " -v "link" -n
Related skills
Installs
3
GitHub Stars
7
First Seen
Mar 5, 2026