# Send Readeck 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": "readeck",
    "name": "Readeck",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Jayphen/readeck",
    "canonicalUrl": "https://clawhub.ai/Jayphen/readeck",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/readeck",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=readeck",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "readeck",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T23:18:51.961Z",
      "expiresAt": "2026-05-14T23:18:51.961Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=readeck",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=readeck",
        "contentDisposition": "attachment; filename=\"readeck-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "readeck"
      },
      "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/readeck"
    },
    "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/readeck",
    "downloadUrl": "https://openagent3.xyz/downloads/readeck",
    "agentUrl": "https://openagent3.xyz/skills/readeck/agent",
    "manifestUrl": "https://openagent3.xyz/skills/readeck/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/readeck/agent.md"
  }
}
```
## Documentation

### Configuration

Configure Readeck access via:

Request parameters: url and apiKey
Environment variables: READECK_URL and READECK_API_KEY

### Add Article

Add a URL to Readeck for parsing and saving:

curl -X POST "$READECK_URL/api/bookmarks" \\
  -H "Authorization: Bearer $READECK_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"url": "https://example.com/article"}'

Response includes id, url, and title.

### List Entries

Fetch saved articles:

curl "$READECK_URL/api/bookmarks?limit=20" \\
  -H "Authorization: Bearer $READECK_API_KEY"

Query parameters: page, limit, status, search.

### Get Single Entry

curl "$READECK_URL/api/bookmarks/$ID" \\
  -H "Authorization: Bearer $READECK_API_KEY"

### Delete Entry

curl -X DELETE "$READECK_URL/api/bookmarks/$ID" \\
  -H "Authorization: Bearer $READECK_API_KEY"

### Mark as Read

curl -X PUT "$READECK_URL/api/bookmarks/$ID/status" \\
  -H "Authorization: Bearer $READECK_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"status": "read"}'

### Common Patterns

Save with tags:

{"url": "https://example.com", "tags": ["tech", "readlater"]}

Save to specific collection:

{"url": "https://example.com", "collection": "my-collection"}

Filter by status: unread, read, archived

### Error Handling

401: Invalid API key
404: Entry not found
422: Invalid URL or request body
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Jayphen
- Version: 0.1.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-07T23:18:51.961Z
- Expires at: 2026-05-14T23:18:51.961Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/readeck)
- [Send to Agent page](https://openagent3.xyz/skills/readeck/agent)
- [JSON manifest](https://openagent3.xyz/skills/readeck/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/readeck/agent.md)
- [Download page](https://openagent3.xyz/downloads/readeck)