Content Publisher Pro
一键将文章发布至 GitHub Pages 和 Dev.to,支持 SEO 优化与去重检查。
下载 377
从BBC、Reuters等国际RSS源抓取新闻并生成文本或语音摘要。
openclaw skills install @joargp/news-summary命令、参数、文件名以原文为准
通过 RSS 订阅源从可信的国际新闻来源获取并摘要新闻内容。
# 世界新闻
curl -s "https://feeds.bbci.co.uk/news/world/rss.xml"
# 头条新闻
curl -s "https://feeds.bbci.co.uk/news/rss.xml"
# 商业新闻
curl -s "https://feeds.bbci.co.uk/news/business/rss.xml"
# 科技新闻
curl -s "https://feeds.bbci.co.uk/news/technology/rss.xml"# 世界新闻
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"提取标题和描述:
curl -s "https://feeds.bbci.co.uk/news/world/rss.xml" | \
grep -E "<title>|<description>" | \
sed 's/<[^>]*>//g' | \
sed 's/^[ \t]*//' | \
head -30curl -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📰 新闻摘要 [日期]
🌍 世界
- [新闻标题 1]
- [新闻标题 2]
💼 商业
- [新闻标题 1]
💻 科技
- [新闻标题 1]已收录 1 个 Skill