Install
openclaw skills install rss-feed-digestFetch, filter, and summarize RSS/Atom feeds into a clean daily or weekly digest. Supports multiple feeds, keyword filtering, deduplication, and outputs Markdown or plain text summaries.
openclaw skills install rss-feed-digestAggregate multiple RSS/Atom feeds into a clean, summarized digest. Perfect for automated newsletters, news monitoring, or daily briefings.
python3 {baseDir}/scripts/rss_digest.py fetch \
--feeds "https://hnrss.org/frontpage" "https://feeds.arstechnica.com/arstechnica/technology-lab" \
--hours 24 \
--limit 20
python3 {baseDir}/scripts/rss_digest.py fetch \
--feeds "https://hnrss.org/frontpage" \
--keywords "AI,LLM,agent,OpenClaw" \
--hours 48
python3 {baseDir}/scripts/rss_digest.py fetch \
--feeds "https://hnrss.org/frontpage" \
--output digest.md \
--format markdown
# Create feeds.txt with one URL per line
python3 {baseDir}/scripts/rss_digest.py fetch \
--feed-file feeds.txt \
--hours 24
pip3 install feedparser
# feeds.txt
https://hnrss.org/frontpage
https://feeds.arstechnica.com/arstechnica/technology-lab
https://www.artificialintelligence-news.com/feed/
https://openai.com/blog/rss.xml
# Run daily via cron
python3 rss_digest.py fetch --feed-file feeds.txt --keywords "AI,LLM,GPT,Claude,agent" --hours 24 --output /tmp/daily-ai-digest.md