karaage0703/xs-tech-news-curation
RSSフィードからAI・技術系の最新ニュースを取得して紹介するスキル。「テックニュース」「最新のニュース教えて」「技術ニュースまとめて」で使用。
npx skills add https://github.com/karaage0703/ai-assistant-workspace --skill xs-tech-news-curation
AI・技術系の最新ニュースをRSSフィードから取得して紹介するスキルです。
「テックニュース」「最新のニュース教えて」「技術ニュースまとめて」
以下のRSSフィードから最新記事を取得します:
# Hacker News(テック全般)
curl -s "https://hnrss.org/newest?points=100" | head -200
# はてなテクノロジー(日本語テック)
curl -s "https://b.hatena.ne.jp/hotentry/it.rss" | head -200
# Reddit Programming
curl -s "https://www.reddit.com/r/programming/.rss?limit=10" | head -200
Web検索も併用して最新情報を補完します。
以下の基準で3〜5件を選びます:
## 今日のテックニュース(YYYY-MM-DD)
### 1. 記事タイトル
- 概要: 2〜3行で内容を説明
- ポイント: なぜ注目すべきか
- リンク: URL
### 2. 記事タイトル
...
ユーザーが特定のジャンルを指定した場合:
ユーザーが好きなRSSフィードを追加したい場合は、このファイルに追記してもらう。
# 追加例
curl -s "https://example.com/feed.xml" | head -200
Take karaage0703/xs-tech-news-curation from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.