typescript/skills/blogwatcher/SKILL.md
Monitor RSS/Atom feeds and blogs for new posts. Fetches and summarizes latest entries.
npx skillsauth add kody-w/openrappter blogwatcherInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Monitor RSS/Atom feeds for new posts.
curl -s "https://example.com/feed.xml" | head -100
curl -s "https://example.com/feed.xml" | xmllint --xpath '//item/title/text()' -
Store feed URLs in a file and iterate:
while IFS= read -r url; do
echo "=== $url ==="
curl -s "$url" | xmllint --xpath '//item[position()<=3]/title/text()' - 2>/dev/null
done < feeds.txt
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.