skills/blogwatcher/SKILL.md
Monitor RSS/Atom feeds for new articles. Use when user asks to track blogs, news sources, or content updates. No API key needed.
npx skillsauth add emanueleielo/ciana-parrot 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 blogs and news sources via RSS/Atom feeds.
curl -s "https://example.com/feed" | head -100
Most blogs have feeds at predictable URLs:
/feed or /rss or /atom.xml/feed.xml or /index.xml/feed//feed/feed# Titles
curl -s "https://example.com/feed" | grep -oP '(?<=<title>).*?(?=</title>)'
# Links
curl -s "https://example.com/feed" | grep -oP '(?<=<link>).*?(?=</link>)'
curl -s "https://example.com/feed/json" | jq '.items[:5] | .[] | {title, url, date_published}'
curl -s "URL" | head -20schedule_task to check periodicallycurl -s -H "User-Agent: CianaParrot/1.0" "URL"schedule_task for periodic monitoringtools
Send and read WhatsApp messages via the wacli CLI. Search chats, view history, send text and files to contacts or groups.
development
Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.
tools
Extract frames, thumbnails, or clips from video files using ffmpeg. Use when analyzing video content or creating previews.
tools
Diagnose and resolve errors with Ciana's host bridges, CLI tools, Claude Code mode, macOS permissions, and gateway connectivity.