Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →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 feeds and can create voice summaries.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-14 | ✗→✓ | ▲ Improved | -8% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -32% | 0% |
| case-16 | ✗→✓ | ▲ Improved | -25% | 0% |
| case-17 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-18 | ✗→✓ | ▲ Improved | -20% | 0% |
Fetch and summarize news from trusted international sources via RSS feeds.
bash# 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"
bash# World news curl -s "https://www.reutersagency.com/feed/?best-regions=world&post_type=best"
bashcurl -s "https://feeds.npr.org/1001/rss.xml"
bashcurl -s "https://www.aljazeera.com/xml/rss/all.xml"
Extract titles and descriptions:
bashcurl -s "https://feeds.bbci.co.uk/news/world/rss.xml" | \ grep -E "<title>|<description>" | \ sed 's/<[^>]*>//g' | \ sed 's/^[ \t]*//' | \ head -30
bashcurl -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]Other measured skills in the registry, with their headline benchmark lift.