jpskill.com
📦 その他 コミュニティ 🟡 少し慣れが必要 👤 幅広いユーザー

📦 ニュースSentimentエンジン

news-sentiment-engine

複数の情報源から最新ニュースを自動で集め、

⏱ この作業 数時間 → 数分

📺 まず動画で見る(YouTube)

▶ 【Claude Code完全入門】誰でも使える/Skills活用法/経営者こそ使うべき ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Multi-source RSS news aggregation with Claude-powered sentiment analysis and structured briefing output

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

一言でいうと

複数の情報源から最新ニュースを自動で集め、

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

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して news-sentiment-engine.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → news-sentiment-engine フォルダができる
  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-17
同梱ファイル
1

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

  • News Sentiment Engine の使い方を教えて
  • News Sentiment Engine で何ができるか具体例で見せて
  • News Sentiment Engine を初めて使う人向けにステップを案内して

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

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

News Sentiment Engine (Free)

Collect and analyze AI/tech news from multiple sources with Claude-powered sentiment analysis. Open source lite version.

When to Use

  • Use when preparing a concise AI or technology news briefing from multiple RSS sources.
  • Use when you need ranked article summaries with sentiment, tags, and impact scoring.
  • Use when monitoring industry changes across product launches, policy moves, and infrastructure shifts.
  • Use when deduplicating overlapping coverage before writing a daily or weekly briefing.

What it does

  • Collects news from 4+ RSS feeds (TechCrunch, The Verge, Ars Technica, Hacker News)
  • Deduplicates articles across sources
  • Ranks by importance (industry impact, technology trends, policy changes)
  • Generates structured briefing with sentiment tags
  • Outputs formatted briefing card

Usage

Collect latest AI/tech news from RSS feeds.
Rank top 5 by importance to the tech industry.
For each: summary (2-3 sentences), sentiment (positive/negative/neutral),
impact score (1-5), industry tags, one-sentence commentary.
Output as a structured briefing card.

Example Output

AI/Tech News Briefing — 2026-05-13

1. OpenAI announces GPT-5 with 2M context window
   Source: TechCrunch | Impact: 5/5
   Tags: #AI #LLM #OpenAI
   Sentiment: Positive

   Summary: OpenAI unveiled GPT-5 with a 2M token context window and
   improved reasoning. Enterprise pricing starts at $0.03/1k tokens.

   Commentary: Direct competitive pressure on Anthropic Claude 3.5.
   Enterprise deals may shift in H2 2026.

2. EU AI Act enforcement begins for high-risk systems
   Source: The Verge | Impact: 4/5
   Tags: #Regulation #EU #Compliance
   Sentiment: Neutral

Output Format

For each article:

  • Title + source + publish date
  • Summary (2-3 sentences)
  • Industry tags: [AI, Semiconductor, Cloud, etc.]
  • Sentiment: Positive/Negative/Neutral
  • Impact score: 1-5
  • Commentary: 1-sentence industry perspective

Setup

git clone https://github.com/tellmefrankie/news-engine
cd news-engine
pnpm install
cp .env.example .env
# Requires: ANTHROPIC_API_KEY
pnpm dev -- --collect-only

No paid APIs required for free tier. Anthropic API key only.

Limitations

  • RSS feeds can lag, disappear, throttle, or duplicate syndicated coverage.
  • Sentiment and impact scores are briefing aids, not authoritative market or policy analysis.
  • The example setup runs third-party code; review the repository and environment variables before use.
  • Outputs should be cross-checked against original article sources before publication or investment use.

Pro Version

Free tier covers news collection and basic analysis.

Full bundle — $29 one-time: Investment-grade analysis (portfolio impact scoring, options flow correlation, earnings catalyst detection), Telegram auto-delivery. → https://jaehyunpark.gumroad.com/l/tcyahy

Author

Core module from a production news analysis engine processing 50+ articles daily since 2026.