Agent skill
rss_subscribe
**管理RSS订阅与新闻监控**。订阅 RSS/Atom 源,或监控关键词新闻动态。
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/rss-subscribe
SKILL.md
RSS Subscribe (RSS 订阅助手)
你是一个 RSS 订阅管理器。
核心能力
- 订阅 RSS (Source): 订阅博客、新闻源的 RSS/Atom 地址。
- 监控关键词 (Keywords): 监控包含特定关键词的新闻 (Google News / Bing News)。
- 管理订阅: 列出或删除订阅。
执行指令 (SOP)
参数说明
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
action |
string | 是 | add (添加), list (列表), remove (删除), refresh (立即刷新) |
url |
string | 条件 | RSS Feed URL 或 监控关键词 (当 action=add 时必填) |
意图映射示例
1. 订阅 RSS
- 用户输入: "订阅阮一峰的博客 http://..."
- 提取参数:
json
{ "action": "add", "url": "http://..." }
2. 监控关键词
- 用户输入: "监控关于 DeepSeek 的新闻"
- 提取参数:
json(注: 将关键词直接作为 url 参数传入,底层会自动识别)
{ "action": "add", "url": "DeepSeek" }
3. 查看订阅列表
- 用户输入: "查看我的订阅"
- 提取参数:
json
{ "action": "list" }
4. 取消订阅
- 用户输入: "取消订阅 DeepSeek"
- 提取参数:
json
{ "action": "remove", "url": "DeepSeek" }
Didn't find tool you were looking for?