🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Content Watcher

by @su707181393-del

Monitor RSS feeds, blogs, and news sources with AI-powered summarization and generate daily digests in Markdown or console output.

Versionv1.0.0
Downloads1,887
Installs11
Stars⭐ 1
TERMINAL
clawhub install content-watcher

πŸ“– About This Skill


name: content-watcher description: AI-powered content monitoring and summarization tool. Monitor RSS feeds, blogs, and news sources with automatic AI summarization and daily digest generation. metadata: { "openclaw": { "emoji": "πŸ“°", "requires": { "bins": ["node", "npm"] }, "install": [ { "id": "npm", "kind": "node", "package": "content-watcher", "bins": ["content-watcher"], "label": "Install Content Watcher CLI", }, ], }, }

Content Watcher

Monitor any RSS feeds, blogs, or news sources and get AI-powered daily digests.

Quick Start

# Install dependencies
npm install

Add your first source

content-watcher add https://techcrunch.com/feed/ --name "TechCrunch"

Run once to test

content-watcher run

Save digest to file

content-watcher run --output digest.md

Commands

| Command | Description | |---------|-------------| | add | Add a source to monitor | | remove | Remove a source | | list | List all sources | | run | Generate digest now | | config | Show configuration |

Features

  • βœ… RSS/Atom feed parsing
  • βœ… Web content extraction
  • βœ… AI text summarization (local, no API key)
  • βœ… Markdown digest generation
  • βœ… Multi-source aggregation
  • βœ… Duplicate detection
  • βœ… Configurable via CLI
  • Configuration

    Config stored at ~/.config/content-watcher/config.json:

    {
      "sources": [...],
      "delivery": "console",
      "summaryStyle": "bullet",
      "maxItemsPerSource": 5
    }
    

    Use Cases

    1. Competitive Intelligence - Monitor competitor blogs/news 2. Industry Trends - Track tech/finance/marketing trends 3. Research Assistant - Aggregate academic/sources 4. Content Curation - Create newsletters automatically

    Integration

    Works great with:

  • Feishu webhook (auto-post digest)
  • Email delivery (send digest)
  • Cron scheduling (daily runs)
  • ⚑ When to Use

    TriggerAction
    2. **Industry Trends** - Track tech/finance/marketing trends
    3. **Research Assistant** - Aggregate academic/sources
    4. **Content Curation** - Create newsletters automatically

    πŸ’‘ Examples

    # Install dependencies
    npm install

    Add your first source

    content-watcher add https://techcrunch.com/feed/ --name "TechCrunch"

    Run once to test

    content-watcher run

    Save digest to file

    content-watcher run --output digest.md

    βš™οΈ Configuration

    Config stored at ~/.config/content-watcher/config.json:

    {
      "sources": [...],
      "delivery": "console",
      "summaryStyle": "bullet",
      "maxItemsPerSource": 5
    }