From sundial-org-awesome-openclaw-skills-4
Fetches news from BBC, Reuters, NPR, and Al Jazeera RSS feeds using curl/bash, parses headlines, summarizes top stories by topic/region, and generates voice summaries with OpenAI TTS. For news updates or daily briefings.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Fetch and summarize news from trusted international sources via RSS feeds.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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]