News Summary

👤 joargp 📦 v1.0.1 ⭐ 3.9 ⬇️ 66.4K 下载
📚 知识管理 免费 🔑 需 API Key

📖 技能介绍


name: news-summary description: 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.


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 "<title>|<description>" | \
  sed 's/<[^>]*>//g' | \
  sed 's/^[ \t]*//' | \
  head -30

Workflow

Text summary

  1. Fetch BBC world headlines
  2. Optionally supplement with Reuters/NPR
  3. Summarize key stories
  4. Group by region or topic

Voice summary

  1. Create text summary
  2. Generate voice with OpenAI TTS
  3. 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": "<news 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

🤖 AI 评测

这个新闻摘要 Skill 质量中等偏上,提供了多个可信新闻来源,命令示例清晰可直接使用。它能帮你快速获取 BBC、Reuters 等主流媒体的最新资讯,支持文字和语音两种摘要形式,输出格式友好。不足之处在于功能较为基础,需要手动执行命令操作,适合有一定技术基础的用户使用。如果能增加自动定时推送、智能过滤等功能会更好。总体来说,作为新闻获取工具是实用的,但仍有改进空间。

📊 多维度评分

适应性3.9
规范性3.8
有效性4.1
可靠性3.3
可信度4.3

📁 包含文件 (2 个)

📄 SKILL.md 2 KB
📄 _meta.json 131 B

🔥 大家都在搜

wps 写作 pdf 苹果