From sundial-org-awesome-openclaw-skills-4
Fetches and summarizes news from trusted international RSS feeds (BBC, Reuters, NPR, Al Jazeera) with optional OpenAI TTS voice output. Great for daily briefings or quick news updates.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:news-summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch and summarize news from trusted international sources via RSS feeds.
Fetch and summarize news from trusted international sources via RSS feeds.
# World news
curl -s "https://feeds.bbci.co.uk/news/world/rss.xml"
# Top stories
curl -s "https://feeds.bbci.co.uk/news/rss.xml"
# Business
curl -s "https://feeds.bbci.co.uk/news/business/rss.xml"
# Technology
curl -s "https://feeds.bbci.co.uk/news/technology/rss.xml"
# World news
curl -s "https://www.reutersagency.com/feed/?best-regions=world&post_type=best"
curl -s "https://feeds.npr.org/1001/rss.xml"
curl -s "https://www.aljazeera.com/xml/rss/all.xml"
Extract titles and descriptions:
curl -s "https://feeds.bbci.co.uk/news/world/rss.xml" | \
grep -E "<title>|<description>" | \
sed 's/<[^>]*>//g' | \
sed 's/^[ \t]*//' | \
head -30
curl -s https://api.openai.com/v1/audio/speech \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "tts-1-hd",
"input": "<news summary text>",
"voice": "onyx",
"speed": 0.95
}' \
--output /tmp/news.mp3
📰 News Summary [date]
🌍 WORLD
- [headline 1]
- [headline 2]
💼 BUSINESS
- [headline 1]
💻 TECH
- [headline 1]
npx claudepluginhub sundial-org/awesome-openclaw-skillsAggregates and deduplicates recent news from multiple RSS sources into concise topic summaries with source links. Useful for getting a multi-outlet briefing.
Aggregates RSS feeds from major NZ news sites (Stuff, RNZ, NZ Herald, etc.) into a CLI tool for headlines, source browsing, and topic search.
Fetches headlines from curated RSS feeds across news, games, and finance categories. No API keys required.