跳至主要内容
小龙虾小龙虾AI
🤖

RSS 阅读器

监控 RSS 和 Atom 提要以进行内容研究。跟踪博客、新闻网站、新闻通讯和任何提要源。用于监控竞争对手、跟踪行业趋势等。

下载863
星标0
版本1.0.0
搜索研究
安全通过
⚙️脚本

技能说明


name: rss-reader description: Monitor RSS and Atom feeds for content research. Track blogs, news sites, newsletters, and any feed source. Use when monitoring competitors, tracking industry news, finding content ideas, or building a personal news aggregator. Supports multiple feeds with categories, filters, and summaries.

RSS Reader

Monitor any RSS/Atom feed for content ideas, competitor tracking, and industry news.

Quick Start

# Add a feed
node scripts/rss.js add "https://example.com/feed.xml" --category tech

# Check all feeds
node scripts/rss.js check

# Check specific category
node scripts/rss.js check --category tech

# List feeds
node scripts/rss.js list

# Remove a feed
node scripts/rss.js remove "https://example.com/feed.xml"

Configuration

Feeds stored in 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
  }
}

Use Cases

Content Research

Monitor competitor blogs, industry publications, and thought leaders:

# Add multiple feeds
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

# Get recent items as content ideas
node scripts/rss.js check --since 24h --format ideas

Newsletter Aggregation

Track newsletters and digests:

node scripts/rss.js add "https://newsletter.com/feed" --category newsletters

Keyword Monitoring

Filter items by keywords:

node scripts/rss.js check --keywords "AI,agents,automation"

Output Formats

Default (list)

[tech] Example Blog - "New Post Title" (2h ago)
  https://example.com/post-1
[news] TechCrunch - "Breaking News" (4h ago)
  https://techcrunch.com/article-1

Ideas (content research mode)

## Content Ideas from RSS (Last 24h)

### Tech
- **"New Post Title"** - [Example Blog]
  Key points: Point 1, Point 2, Point 3
  Angle: How this relates to your niche

### News  
- **"Breaking News"** - [TechCrunch]
  Key points: Summary of the article
  Angle: Your take or response

JSON (for automation)

node scripts/rss.js check --format json

Popular Feeds by Category

Tech/AI

  • https://news.ycombinator.com/rss - Hacker News
  • https://www.reddit.com/r/artificial/.rss - r/artificial
  • https://www.reddit.com/r/LocalLLaMA/.rss - r/LocalLLaMA
  • https://openai.com/blog/rss.xml - OpenAI Blog

Marketing

  • https://www.reddit.com/r/Entrepreneur/.rss - r/Entrepreneur
  • https://www.reddit.com/r/SaaS/.rss - r/SaaS

News

  • https://techcrunch.com/feed/ - TechCrunch
  • https://www.theverge.com/rss/index.xml - The Verge

Cron Integration

Set up daily feed checking via heartbeat or cron:

// In HEARTBEAT.md
- Check RSS feeds once daily, summarize new items worth reading

Or via cron job:

clawdbot cron add --schedule "0 8 * * *" --task "Check RSS feeds and summarize: node /root/clawd/skills/rss-reader/scripts/rss.js check --since 24h --format ideas"

Scripts

  • scripts/rss.js - Main CLI for feed management
  • scripts/parse-feed.js - Feed parser module (uses xml2js)

Dependencies

npm install xml2js node-fetch

The script will prompt for installation if dependencies are missing.

如何使用「RSS 阅读器」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「RSS 阅读器」技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能