RSS Reader — RSS 阅读器
v1.0.0监控RSS和Atom源以进行内容研究。跟踪博客、新闻网站、新闻通讯和任何源。用于监控竞争对手、跟踪行业新闻、寻找内容创意或构建个人新闻聚合器。支持多个源,具有分类、过滤和摘要功能。
运行时依赖
安装命令
点击复制技能文档
RSS Reader 监控任何RSS/Atom源以获取内容创意、竞争对手跟踪和行业新闻。 快速开始 # 添加源节点 node scripts/rss.js add "https://example.com/feed.xml" --category tech # 检查所有源 node scripts/rss.js check # 检查特定类别 node scripts/rss.js check --category tech # 列出所有源 node scripts/rss.js list # 删除源 node scripts/rss.js remove "https://example.com/feed.xml" 配置 源存储在rss-reader/feeds.json中: { "feeds": [ { "url": "https://example.com/feed.xml", "name": "Example Blog", "category": "tech", "enabled": true, "lastChecked": "2026-02-22T00:00:00Z", "lastItemDate": "2026-02-21T12:00:00Z" } ], "settings": { "maxItemsPerFeed": 10, "maxAgeDays": 7, "summaryEnabled": true } } 用例 内容研究 监控竞争对手博客、行业出版物和思想领袖: # 添加多个源 node scripts/rss.js add "https://competitor.com/blog/feed" --category competitors node scripts/rss.js add "https://techcrunch.com/feed" --category news node scripts/rss.js add "https://news.ycombinator.com/rss" --category tech # 获取最近的项目作为内容创意 node scripts/rss.js check --since 24h --format ideas 通讯汇总 跟踪通讯和摘要: node scripts/rss.js add "https://newsletter.com/feed" --category newsletters 关键词监控 根据关键词筛选项目: node scripts/rss.js check --keywords "AI,agents,automation" 输出格式 默认(列表) [tech] Example Blog - "New Post Title" (2h ago) https://example.com/post-1 [news] TechCrunch - "Breaking News" (4h ago) https://techcrunch.com/article-1 创意(内容研究模式)