Install
openclaw skills install rss-monitorMonitor RSS feeds and send notifications when new content is published. Use when user needs to track blog updates, news feeds, or any RSS source. Supports Feishu/Lark notifications and scheduled monitoring via cron.
openclaw skills install rss-monitorMonitor RSS feeds and deliver notifications when new articles are published.
scripts/rss_monitor.py add <feed_url> [--name <friendly_name>]
scripts/rss_monitor.py check-all
scripts/rss_monitor.py list
To receive Feishu notifications:
export FEISHU_WEBHOOK="https://open.feishu.cn/open-apis/bot/v2/hook/..."
Add to crontab for automatic monitoring:
# Check every 30 minutes
*/30 * * * * cd /path/to/workspace && python scripts/rss_monitor.py check-all
Or use OpenClaw cron:
openclaw cron add --name "rss-monitor" --schedule "*/30 * * * *" --command "python scripts/rss_monitor.py check-all"
| Command | Description |
|---|---|
add <url> | Add RSS feed to watchlist |
remove <name> | Remove feed from watchlist |
list | Show all monitored feeds |
check-all | Check all feeds for updates |
check <name> | Check specific feed |
history | Show recently detected articles |
~/.rss_monitor/feeds.json~/.rss_monitor/history.jsonInstall: pip install requests feedparser