# Send Rss Ai 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-ai-reader",
    "name": "Rss Ai Reader",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/BENZEMA216/rss-ai-reader",
    "canonicalUrl": "https://clawhub.ai/BENZEMA216/rss-ai-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/rss-ai-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-ai-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/config_guide.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "rss-ai-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T11:44:36.309Z",
      "expiresAt": "2026-05-10T11:44:36.309Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-ai-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-ai-reader",
        "contentDisposition": "attachment; filename=\"rss-ai-reader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "rss-ai-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-ai-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-ai-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/rss-ai-reader",
    "agentUrl": "https://openagent3.xyz/skills/rss-ai-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rss-ai-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rss-ai-reader/agent.md"
  }
}
```
## Documentation

### 📰 RSS AI Reader

自动抓取 RSS 订阅 → LLM 生成中文摘要 → 推送到 IM

### ✨ 核心功能

📡 自动抓取 RSS/Atom feeds
🤖 Claude/OpenAI 生成中文摘要
📬 多渠道推送：飞书、Telegram、Email
💾 SQLite 去重，不重复推送
⏰ 支持定时任务

### 🚀 快速开始

# 安装
git clone https://github.com/BENZEMA216/rss-reader.git ~/rss-reader
cd ~/rss-reader && pip install -r requirements.txt

# 配置（编辑 config.yaml）
cp config.yaml my_config.yaml
# 设置 feeds、LLM key、推送渠道

# 运行
python main.py --once              # 单次执行
python main.py                     # 启动定时任务
python main.py --stats             # 查看统计

### 📝 配置示例

# RSS 订阅
feeds:
  - name: "Hacker News"
    url: "https://hnrss.org/frontpage"
    category: "tech"
  - name: "阮一峰周刊"
    url: "https://www.ruanyifeng.com/blog/atom.xml"
    category: "tech"

# LLM 配置
llm:
  provider: "claude"  # 或 "openai"
  model: "claude-sonnet-4-20250514"
  api_key: "${ANTHROPIC_API_KEY}"

# 推送到飞书
notify:
  feishu:
    enabled: true
    webhook_url: "${FEISHU_WEBHOOK}"

### 📬 支持的推送渠道

渠道配置项说明飞书webhook_url群机器人 WebhookTelegrambot_token + chat_idBot APIEmailSMTP 配置支持 Gmail 等

### 🔧 命令行参数

python main.py [options]

--config, -c  配置文件路径 (默认: config.yaml)
--once        只执行一次
--stats       显示统计信息
--db          数据库路径 (默认: rss_reader.db)

### 💡 使用场景

技术博客监控 — 订阅 HN、阮一峰、V2EX 等
新闻早报 — 每天定时推送摘要到飞书群
竞品监控 — 订阅竞品博客，自动摘要
论文追踪 — 订阅 arXiv，AI 帮你筛选

### 📊 输出效果

飞书消息示例：

📰 Hacker News

**Why SQLite is Taking Over**

📝 SQLite 正在从嵌入式数据库扩展到更多应用场景。
文章分析了其在边缘计算、移动应用中的优势...

[🔗 阅读原文]

### ☕ 支持作者

GitHub Sponsors: @BENZEMA216
Buy Me a Coffee: buymeacoffee.com/benzema216
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: BENZEMA216
- 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-03T11:44:36.309Z
- Expires at: 2026-05-10T11:44:36.309Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/rss-ai-reader)
- [Send to Agent page](https://openagent3.xyz/skills/rss-ai-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/rss-ai-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/rss-ai-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/rss-ai-reader)