Summary
news-summary Installation Command Prompt $ npx skills add https://github.com/kirkluokun/awesome-a-stock-openclawskills --skill news-summary
kirkluokun/awesome-a-stock-openclawskills
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.
npx skills add kirkluokun/awesome-a-stock-openclawskills --skill news-summary
news-summary Installation Command Prompt $ npx skills add https://github.com/kirkluokun/awesome-a-stock-openclawskills --skill news-summary
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
call-summary Installation Command Prompt $ npx skills add https://github.com/anthropics/knowled…
2.5K installsGo back through the previous year of work and create a Notion doc that groups relevant links in…
1.5K installs会议纪要整理工作流:汇总指定时间范围?
668.7K installs会议纪要整理工作流:汇总指定时间范围?
431.1K installsSummarizes WeChat group chat highlights into a structured digest using the local wx-cli binary …
8.8K installs会议纪要整理工作流:汇总指定时间范围?
3.8K installsOther skills from kirkluokun/awesome-a-stock-openclawskills · top by installs.
npx skills add kirkluokun/awesome-a-stock-openclawskills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Files included with this skill beyond the listing page.
SKILL.md
2,091 B
SUMMARY.md
215 B
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]