# Send Agent2RSS - AI Content to RSS Feed 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": "agent2rss",
    "name": "Agent2RSS - AI Content to RSS Feed",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/yaotutu/agent2rss",
    "canonicalUrl": "https://clawhub.ai/yaotutu/agent2rss",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent2rss",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent2rss",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "_meta.json",
      "SKILL.md",
      "assets/config-template.json",
      "scripts/agent2rss.sh",
      "references/api-examples.md",
      ".clawhub/origin.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent2rss",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:06:32.468Z",
      "expiresAt": "2026-05-06T03:06:32.468Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent2rss",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent2rss",
        "contentDisposition": "attachment; filename=\"agent2rss-0.2.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent2rss"
      },
      "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/agent2rss"
    },
    "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/agent2rss",
    "downloadUrl": "https://openagent3.xyz/downloads/agent2rss",
    "agentUrl": "https://openagent3.xyz/skills/agent2rss/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent2rss/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent2rss/agent.md"
  }
}
```
## Documentation

### Agent2RSS Client（OpenClaw）

管理 Agent2RSS 频道并推送内容到 RSS。

### Requirements

bash
curl
jq

### 重要安全说明

本技能会向 config.json 中的 serverUrl 发起网络请求（创建频道、上传内容、推送文章）。
默认 serverUrl 是 https://agent2rss.yaotutu.top:8765（官方托管服务）。
如果改为远程地址，请只使用你信任的服务；远程 http:// 会有明文传输风险。
频道 token 存储在：

$HOME/.openclaw/workspace/.skill-data/agent2rss-client/config.json


脚本会将该文件权限收敛为 600。不要把该文件提交到仓库。

### 路径约定

脚本：scripts/agent2rss.sh
配置目录：$HOME/.openclaw/workspace/.skill-data/agent2rss-client/
配置文件：$CONFIG_DIR/config.json
模板：assets/config-template.json

### 初始化（默认官方服务，不会自动建频道）

# 推荐：直接使用官方托管服务（默认）
scripts/agent2rss.sh init

# 如果你有自建实例，再显式指定 server-url
scripts/agent2rss.sh init --server-url https://your-agent2rss.example.com

init 只初始化配置，不会自动创建默认频道。请显式执行 create-channel。
Agent2RSS 是开源项目，可自部署：https://github.com/yaotutu/agent2rss。

### 常用命令

# 健康检查
scripts/agent2rss.sh health

# 创建频道（并设为默认）
scripts/agent2rss.sh create-channel "技术博客" "分享技术文章"

# 列出频道
scripts/agent2rss.sh list

# 设置默认频道
scripts/agent2rss.sh set-default <channelId>

# 上传文件推送（推荐）
scripts/agent2rss.sh push-file article.md

# JSON 推送
scripts/agent2rss.sh push-json post.json

# 仅预览请求，不实际发送
DRY_RUN=1 scripts/agent2rss.sh push-file article.md

### 网络操作范围（透明说明）

脚本会调用以下接口（基于 serverUrl）：

GET /health
POST /api/channels
PUT /api/channels/:id
POST /api/channels/:id/posts
POST /api/channels/:id/posts/upload

### 幂等建议

idempotencyKey 建议使用：文章URL、文件名+哈希 或业务唯一 ID。
重复推送同一 key 时应返回已存在（isNew: false）。

### 常见错误

401：token 无效或缺失。
404：频道 ID 不存在。
400：缺少 content/file 等必填字段。
5xx：服务异常，稍后重试。

### 参考

API 示例：references/api-examples.md
发布前回归清单：references/e2e-test.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yaotutu
- Version: 0.2.1
## 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-04-29T03:06:32.468Z
- Expires at: 2026-05-06T03:06:32.468Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent2rss)
- [Send to Agent page](https://openagent3.xyz/skills/agent2rss/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent2rss/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent2rss/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent2rss)