# Send RSS Reader to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rss-reader",
    "name": "RSS Reader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/DimitriPantzos/rss-reader",
    "canonicalUrl": "https://clawhub.ai/DimitriPantzos/rss-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/rss-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "data/feeds.json",
      "scripts/rss.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "rss-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T20:09:04.809Z",
      "expiresAt": "2026-05-14T20:09:04.809Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-reader",
        "contentDisposition": "attachment; filename=\"rss-reader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "rss-reader"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rss-reader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rss-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/rss-reader",
    "agentUrl": "https://openagent3.xyz/skills/rss-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rss-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rss-reader/agent.md"
  }
}
```
## Documentation

### 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
  }
}

### 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"

### 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

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: DimitriPantzos
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T20:09:04.809Z
- Expires at: 2026-05-14T20:09:04.809Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/rss-reader)
- [Send to Agent page](https://openagent3.xyz/skills/rss-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/rss-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/rss-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/rss-reader)