{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/rss-ai-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rss-ai-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/config_guide.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/rss-ai-reader",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "📰 RSS AI Reader",
        "body": "自动抓取 RSS 订阅 → LLM 生成中文摘要 → 推送到 IM"
      },
      {
        "title": "✨ 核心功能",
        "body": "📡 自动抓取 RSS/Atom feeds\n🤖 Claude/OpenAI 生成中文摘要\n📬 多渠道推送：飞书、Telegram、Email\n💾 SQLite 去重，不重复推送\n⏰ 支持定时任务"
      },
      {
        "title": "🚀 快速开始",
        "body": "# 安装\ngit clone https://github.com/BENZEMA216/rss-reader.git ~/rss-reader\ncd ~/rss-reader && pip install -r requirements.txt\n\n# 配置（编辑 config.yaml）\ncp config.yaml my_config.yaml\n# 设置 feeds、LLM key、推送渠道\n\n# 运行\npython main.py --once              # 单次执行\npython main.py                     # 启动定时任务\npython main.py --stats             # 查看统计"
      },
      {
        "title": "📝 配置示例",
        "body": "# RSS 订阅\nfeeds:\n  - name: \"Hacker News\"\n    url: \"https://hnrss.org/frontpage\"\n    category: \"tech\"\n  - name: \"阮一峰周刊\"\n    url: \"https://www.ruanyifeng.com/blog/atom.xml\"\n    category: \"tech\"\n\n# LLM 配置\nllm:\n  provider: \"claude\"  # 或 \"openai\"\n  model: \"claude-sonnet-4-20250514\"\n  api_key: \"${ANTHROPIC_API_KEY}\"\n\n# 推送到飞书\nnotify:\n  feishu:\n    enabled: true\n    webhook_url: \"${FEISHU_WEBHOOK}\""
      },
      {
        "title": "📬 支持的推送渠道",
        "body": "渠道配置项说明飞书webhook_url群机器人 WebhookTelegrambot_token + chat_idBot APIEmailSMTP 配置支持 Gmail 等"
      },
      {
        "title": "🔧 命令行参数",
        "body": "python main.py [options]\n\n--config, -c  配置文件路径 (默认: config.yaml)\n--once        只执行一次\n--stats       显示统计信息\n--db          数据库路径 (默认: rss_reader.db)"
      },
      {
        "title": "💡 使用场景",
        "body": "技术博客监控 — 订阅 HN、阮一峰、V2EX 等\n新闻早报 — 每天定时推送摘要到飞书群\n竞品监控 — 订阅竞品博客，自动摘要\n论文追踪 — 订阅 arXiv，AI 帮你筛选"
      },
      {
        "title": "📊 输出效果",
        "body": "飞书消息示例：\n\n📰 Hacker News\n\n**Why SQLite is Taking Over**\n\n📝 SQLite 正在从嵌入式数据库扩展到更多应用场景。\n文章分析了其在边缘计算、移动应用中的优势...\n\n[🔗 阅读原文]"
      },
      {
        "title": "☕ 支持作者",
        "body": "GitHub Sponsors: @BENZEMA216\nBuy Me a Coffee: buymeacoffee.com/benzema216"
      }
    ],
    "body": "📰 RSS AI Reader\n\n自动抓取 RSS 订阅 → LLM 生成中文摘要 → 推送到 IM\n\n✨ 核心功能\n📡 自动抓取 RSS/Atom feeds\n🤖 Claude/OpenAI 生成中文摘要\n📬 多渠道推送：飞书、Telegram、Email\n💾 SQLite 去重，不重复推送\n⏰ 支持定时任务\n🚀 快速开始\n# 安装\ngit clone https://github.com/BENZEMA216/rss-reader.git ~/rss-reader\ncd ~/rss-reader && pip install -r requirements.txt\n\n# 配置（编辑 config.yaml）\ncp config.yaml my_config.yaml\n# 设置 feeds、LLM key、推送渠道\n\n# 运行\npython main.py --once              # 单次执行\npython main.py                     # 启动定时任务\npython main.py --stats             # 查看统计\n\n📝 配置示例\n# RSS 订阅\nfeeds:\n  - name: \"Hacker News\"\n    url: \"https://hnrss.org/frontpage\"\n    category: \"tech\"\n  - name: \"阮一峰周刊\"\n    url: \"https://www.ruanyifeng.com/blog/atom.xml\"\n    category: \"tech\"\n\n# LLM 配置\nllm:\n  provider: \"claude\"  # 或 \"openai\"\n  model: \"claude-sonnet-4-20250514\"\n  api_key: \"${ANTHROPIC_API_KEY}\"\n\n# 推送到飞书\nnotify:\n  feishu:\n    enabled: true\n    webhook_url: \"${FEISHU_WEBHOOK}\"\n\n📬 支持的推送渠道\n渠道\t配置项\t说明\n飞书\twebhook_url\t群机器人 Webhook\nTelegram\tbot_token + chat_id\tBot API\nEmail\tSMTP 配置\t支持 Gmail 等\n🔧 命令行参数\npython main.py [options]\n\n--config, -c  配置文件路径 (默认: config.yaml)\n--once        只执行一次\n--stats       显示统计信息\n--db          数据库路径 (默认: rss_reader.db)\n\n💡 使用场景\n技术博客监控 — 订阅 HN、阮一峰、V2EX 等\n新闻早报 — 每天定时推送摘要到飞书群\n竞品监控 — 订阅竞品博客，自动摘要\n论文追踪 — 订阅 arXiv，AI 帮你筛选\n📊 输出效果\n\n飞书消息示例：\n\n📰 Hacker News\n\n**Why SQLite is Taking Over**\n\n📝 SQLite 正在从嵌入式数据库扩展到更多应用场景。\n文章分析了其在边缘计算、移动应用中的优势...\n\n[🔗 阅读原文]\n\n☕ 支持作者\nGitHub Sponsors: @BENZEMA216\nBuy Me a Coffee: buymeacoffee.com/benzema216"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/BENZEMA216/rss-ai-reader",
    "publisherUrl": "https://clawhub.ai/BENZEMA216/rss-ai-reader",
    "owner": "BENZEMA216",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}