# Send FreshRSS 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": "freshrss-reader",
    "name": "FreshRSS Reader",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/nickian/freshrss-reader",
    "canonicalUrl": "https://clawhub.ai/nickian/freshrss-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/freshrss-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=freshrss-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/freshrss.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "freshrss-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:19:11.297Z",
      "expiresAt": "2026-05-07T03:19:11.297Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=freshrss-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=freshrss-reader",
        "contentDisposition": "attachment; filename=\"freshrss-reader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "freshrss-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/freshrss-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/freshrss-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/freshrss-reader",
    "agentUrl": "https://openagent3.xyz/skills/freshrss-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/freshrss-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/freshrss-reader/agent.md"
  }
}
```
## Documentation

### FreshRSS

Query headlines from a self-hosted FreshRSS instance via the Google Reader compatible API.

### Setup

Set these environment variables:

export FRESHRSS_URL="https://your-freshrss-instance.com"
export FRESHRSS_USER="your-username"
export FRESHRSS_API_PASSWORD="your-api-password"

API password is set in FreshRSS → Settings → Profile → API Management.

### Get latest headlines

{baseDir}/scripts/freshrss.sh headlines --count 10

### Get headlines from the last N hours

{baseDir}/scripts/freshrss.sh headlines --hours 2

### Get headlines from a specific category

{baseDir}/scripts/freshrss.sh headlines --category "Technology" --count 15

### Get only unread headlines

{baseDir}/scripts/freshrss.sh headlines --unread --count 20

### Combine filters

{baseDir}/scripts/freshrss.sh headlines --category "News" --hours 4 --count 10 --unread

### List categories

{baseDir}/scripts/freshrss.sh categories

### List feeds

{baseDir}/scripts/freshrss.sh feeds

### Output

Headlines are formatted as:

[date] [source] Title
  URL
  Categories: cat1, cat2

### Notes

Default count is 20 headlines if not specified
Time filtering uses --hours for relative time (e.g., last 2 hours)
Category names are case-sensitive and must match your FreshRSS categories
Use categories command first to see available category names
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nickian
- 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-04-30T03:19:11.297Z
- Expires at: 2026-05-07T03:19:11.297Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/freshrss-reader)
- [Send to Agent page](https://openagent3.xyz/skills/freshrss-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/freshrss-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/freshrss-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/freshrss-reader)