# Openclaw Rss Content Skill

> RSS Content Aggregator Skill

- Skill: `jingchang0623-crypto/openclaw-rss-content-skill` (Agent Skill, multi-file: 5 files)
- Install (CLI): `npx skillmds@latest add jingchang0623-crypto/openclaw-rss-content-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jingchang0623-crypto/openclaw-rss-content-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: jingchang0623-crypto (https://skillmd.com/u/jingchang0623-crypto)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jingchang0623-crypto/openclaw-rss-content-skill

---

# RSS Content Aggregator Skill

> 📡 **Automated RSS feed aggregation and content digest generation for OpenClaw agents**

## What This Does

Aggregates RSS/Atom feeds, filters content by keywords, and generates daily digests — perfect for building your own content factory.

Inspired by miaoquai.com's 2382+ issues RSS aggregation pipeline.

## Features

- 📡 **Multi-feed Support** - Subscribe to unlimited RSS/Atom feeds
- 🔍 **Smart Filtering** - Keyword, date range, source filtering
- 📊 **Content Digest** - Auto-generate daily/weekly digests
- 🔗 **Link Extraction** - Extract and categorize links
- 💾 **Persistent State** - Remembers seen items (no duplicates)
- 🎯 **Topic Tracking** - Track specific topics across feeds

## Quick Start

```bash
# Install
cd openclaw-rss-content-skill
npm install

# Configure feeds
cp config.example.json config.json
# Edit config.json with your feeds

# Run
node index.js
```

## Configuration

```json
{
  "feeds": [
    "https://openai.com/blog/rss.xml",
    "https://www.anthropic.com/rss.xml",
    "https://huggingface.co/blog/feed.xml"
  ],
  "filters": {
    "keywords": ["AI", "agent", "OpenClaw"],
    "minLength": 100
  },
  "output": {
    "format": "markdown",
    "digest": true,
    "savePath": "./digests"
  }
}
```

## Integration with OpenClaw

Add to your OpenClaw agent's skills:

```javascript
// In your agent config
{
  "skills": [
    "~/skills/openclaw-rss-content-skill"
  ]
}
```

## Why This Matters

Build your own content pipeline:
- 📰 Daily news digests
- 🔬 Research paper tracking  
- 💼 Industry trend monitoring
- 📈 SEO content sourcing

---

**Part of the [miaoquai](https://miaoquai.com) OpenClaw toolchain** 🤖

