/install hami-news-summary
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 "\x3Ctitle>|\x3Cdescription>" | \
sed 's/\x3C[^>]*>//g' | \
sed 's/^[ ]*//' | \
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": "\x3Cnews 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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install hami-news-summary - After installation, invoke the skill by name or use
/hami-news-summary - Provide required inputs per the skill's parameter spec and get structured output
What is News Summary?
This skill should be used when the user asks for news updates, daily briefings, or what's happening in the world. Fetches news from trusted international RSS... It is an AI Agent Skill for Claude Code / OpenClaw, with 191 downloads so far.
How do I install News Summary?
Run "/install hami-news-summary" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is News Summary free?
Yes, News Summary is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does News Summary support?
News Summary is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created News Summary?
It is built and maintained by niceNASA (@nicenasa); the current version is v1.0.1.