✓ Verified
💻 Development
✓ Enhanced Data
Rss Reader
Monitor RSS and Atom feeds for content research.
- Rating
- 4 (362 reviews)
- Downloads
- 1,425 downloads
- Version
- 1.0.0
Overview
Monitor RSS and Atom feeds for content research.
Complete Documentation
View Source →
RSS Reader
Monitor any RSS/Atom feed for content ideas, competitor tracking, and industry news.
Quick Start
bash
# 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:
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:bash
# 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:bash
node scripts/rss.js add "https://newsletter.com/feed" --category newsletters
Keyword Monitoring
Filter items by keywords:bash
node scripts/rss.js check --keywords "AI,agents,automation"
Output Formats
Default (list)
text
[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)
text
## 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)
bash
node scripts/rss.js check --format json
Popular Feeds by Category
Tech/AI
https://news.ycombinator.com/rss- Hacker Newshttps://www.reddit.com/r/artificial/.rss- r/artificialhttps://www.reddit.com/r/LocalLLaMA/.rss- r/LocalLLaMAhttps://openai.com/blog/rss.xml- OpenAI Blog
Marketing
https://www.reddit.com/r/Entrepreneur/.rss- r/Entrepreneurhttps://www.reddit.com/r/SaaS/.rss- r/SaaS
News
https://techcrunch.com/feed/- TechCrunchhttps://www.theverge.com/rss/index.xml- The Verge
Cron Integration
Set up daily feed checking via heartbeat or cron:
text
// In HEARTBEAT.md
- Check RSS feeds once daily, summarize new items worth reading
Or via cron job:
bash
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 managementscripts/parse-feed.js- Feed parser module (uses xml2js)
Dependencies
bash
npm install xml2js node-fetch
The script will prompt for installation if dependencies are missing.
Installation
Terminal bash
openclaw install rss-reader
Copied!
💻Code Examples
node scripts/rss.js remove "https://example.com/feed.xml"
node-scriptsrssjs-remove-httpsexamplecomfeedxml.txt
## Configuration
Feeds stored in `rss-reader/feeds.json`:}
.txt
## Use Cases
### Content Research
Monitor competitor blogs, industry publications, and thought leaders:node scripts/rss.js check --since 24h --format ideas
node-scriptsrssjs-check---since-24h---format-ideas.txt
### Newsletter Aggregation
Track newsletters and digests:node scripts/rss.js add "https://newsletter.com/feed" --category newsletters
node-scriptsrssjs-add-httpsnewslettercomfeed---category-newsletters.txt
### Keyword Monitoring
Filter items by keywords:node scripts/rss.js check --keywords "AI,agents,automation"
node-scriptsrssjs-check---keywords-aiagentsautomation.txt
## Output Formats
### Default (list)node scripts/rss.js check --format json
node-scriptsrssjs-check---format-json.txt
## 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: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"
clawdbot-cron-add---schedule-0-8------task-check-rss-feeds-and-summarize-node-rootclawdskillsrss-readerscriptsrssjs-check---since-24h---format-ideas.txt
## Scripts
- `scripts/rss.js` - Main CLI for feed management
- `scripts/parse-feed.js` - Feed parser module (uses xml2js)
## Dependenciesexample.sh
# 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"example.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
}
}example.sh
# 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 ideasTags
#coding_agents-and-ides
Quick Info
Category Development
Model Claude 3.5
Complexity One-Click
Author dimitripantzos
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
Ready to Install?
Get started with this skill in seconds
openclaw install rss-reader
Related Skills
✓ Verified
💻 Development
4claw
4claw — a moderated imageboard for AI agents.
🧠 Claude-Ready
)}
★ 4.4 (118)
↓ 4,990
v1.0.0
✓ Verified
💻 Development
Aap Passport
Agent Attestation Protocol - The Reverse Turing Test.
🧠 Claude-Ready
)}
★ 4.3 (89)
↓ 4,621
v1.0.0
✓ Verified
💻 Development
Acestep Lyrics Transcription
Transcribe audio to timestamped lyrics using OpenAI Whisper or ElevenLabs Scribe API.
⚡ GPT-Optimized
)}
★ 3.8 (274)
↓ 17,648
v1.0.0
✓ Verified
💻 Development
Adaptive Suite
A continuously adaptive skill suite that empowers Clawdbot.
🧠 Claude-Ready
)}
★ 4.7 (88)
↓ 1,625
v1.0.0