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
# 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
{
"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:
// 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 OpenClaw toolchain 🤖