jpskill.com
🛠️ 開発・MCP コミュニティ 🔴 エンジニア向け 👤 エンジニア・AI開発者

🛠️ ニュースSummary

news-summary

世界のニュース速報や日々のブリーフィング、最新の出来事をユーザーが求めた際に、信頼できる国際的なRSSフィードからニュースを取得し、音声で要約を作成するSkillです。

⏱ ライブラリ調査+組込 半日 → 1時間
📜 元の英語説明(参考)

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.

🇯🇵 日本人クリエイター向け解説

一言でいうと

世界のニュース速報や日々のブリーフィング、最新の出来事をユーザーが求めた際に、信頼できる国際的なRSSフィードからニュースを取得し、音声で要約を作成するSkillです。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o news-summary.zip https://jpskill.com/download/5099.zip && unzip -o news-summary.zip && rm news-summary.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/5099.zip -OutFile "$d\news-summary.zip"; Expand-Archive "$d\news-summary.zip" -DestinationPath $d -Force; ri "$d\news-summary.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して news-summary.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → news-summary フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-18
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • News Summary を使って、最小構成のサンプルコードを示して
  • News Summary の主な使い方と注意点を教えて
  • News Summary を既存プロジェクトに組み込む方法を教えて

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

ニュースの要約

概要

信頼できる国際的な情報源からRSSフィードを介してニュースを取得し、要約します。

RSSフィード

BBC (主要)

# 世界のニュース
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"

Reuters

# 世界のニュース
curl -s "https://www.reutersagency.com/feed/?best-regions=world&post_type=best"

NPR (米国の視点)

curl -s "https://feeds.npr.org/1001/rss.xml"

Al Jazeera (グローバルサウスの視点)

curl -s "https://www.aljazeera.com/xml/rss/all.xml"

RSSの解析

タイトルと説明を抽出します。

curl -s "https://feeds.bbci.co.uk/news/world/rss.xml" | \
  grep -E "<title>|<description>" | \
  sed 's/<[^>]*>//g' | \
  sed 's/^[ \t]*//' | \
  head -30

ワークフロー

テキスト要約

  1. BBCの世界のヘッドラインを取得します。
  2. オプションでReuters/NPRで補足します。
  3. 主要な記事を要約します。
  4. 地域またはトピックごとにグループ化します。

音声要約

  1. テキスト要約を作成します。
  2. OpenAI TTSで音声を生成します。
  3. 音声メッセージとして送信します。
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]

ベストプラクティス

  • 要約は簡潔に保ちます(上位5~8記事)。
  • 速報ニュースと主要なイベントを優先します。
  • 音声の場合:最大約2分です。
  • 視点のバランスを取ります(欧米 + グローバルサウス)。
  • 求められた場合は情報源を引用します。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

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