用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fuyuxiang/echo-agent --skill rss-watcher命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | rss-watcher |
| description | Monitor RSS/Atom feeds for new articles. Poll on schedule, summarize updates, deliver via any channel. |
| version | 1.0.0 |
| metadata | {"echo":{"tags":["RSS","Atom","Feed","Monitor","News","Research"]}} |
Monitor RSS/Atom feeds and get notified of new articles.
Create ~/.echo-agent/feeds.yaml:
feeds:
- url: https://hnrss.org/frontpage
category: tech
label: Hacker News
- url: https://arxiv.org/rss/cs.AI
category: ai
label: arXiv AI
- url: https://feeds.feedburner.com/ruanyifeng
category: blog
label: 阮一峰
poll_interval: "*/30 * * * *" # every 30 minutes
max_items: 10
pip install feedparser
python3 scripts/feed_monitor.py check # check all feeds for new items
python3 scripts/feed_monitor.py list # list configured feeds
python3 scripts/feed_monitor.py add "https://example.com/feed.xml" --category tech
feeds.yamlfeedparser library~/.echo-agent/feeds.db) by entry ID/link📰 New Articles:
[tech] Hacker News
• Title of Article 1
https://link-to-article.com
• Title of Article 2
https://link-to-article.com
[ai] arXiv AI
• New Paper Title
https://arxiv.org/abs/2406.xxxxx
Combine with Echo Agent's cron channel for automatic polling. Set poll_interval in feeds.yaml to control check frequency.