news-summary▌
sundial-org/awesome-openclaw-skills · updated Apr 8, 2026
Fetch and summarize news from trusted international sources via RSS feeds.
News Summary
Overview
Fetch and summarize news from trusted international sources via RSS feeds.
RSS Feeds
BBC (Primary)
# 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"
Reuters
# World news
curl -s "https://www.reutersagency.com/feed/?best-regions=world&post_type=best"
NPR (US perspective)
curl -s "https://feeds.npr.org/1001/rss.xml"
Al Jazeera (Global South perspective)
curl -s "https://www.aljazeera.com/xml/rss/all.xml"
Parse RSS
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
Workflow
Text summary
- Fetch BBC world headlines
- Optionally supplement with Reuters/NPR
- Summarize key stories
- Group by region or topic
Voice summary
- Create text summary
- Generate voice with OpenAI TTS
- Send as audio message
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
Example Output Format
📰 News Summary [date]
🌍 WORLD
- [headline 1]
- [headline 2]
💼 BUSINESS
- [headline 1]
💻 TECH
- [headline 1]
Best Practices
- Keep summaries concise (5-8 top stories)
- Prioritize breaking news and major events
- For voice: ~2 minutes max
- Balance perspectives (Western + Global South)
- Cite source if asked
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★64 reviews- ★★★★★Henry Singh· Dec 28, 2024
news-summary is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Advait Iyer· Dec 24, 2024
Keeps context tight: news-summary is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Arjun Ghosh· Dec 20, 2024
news-summary fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Noor Zhang· Dec 8, 2024
news-summary has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Pratham Ware· Dec 4, 2024
Registry listing for news-summary matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Dev Thomas· Nov 27, 2024
Useful defaults in news-summary — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Anaya Chawla· Nov 27, 2024
We added news-summary from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Yash Thakker· Nov 23, 2024
news-summary reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Mia Menon· Nov 23, 2024
Solid pick for teams standardizing on skills: news-summary is focused, and the summary matches what you get after install.
- ★★★★★Henry Ghosh· Nov 19, 2024
Keeps context tight: news-summary is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 64