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

### When To Use

Use this skill when a task needs any BYR operation via CLI:

authenticate/check auth state
search torrents with filters
browse latest torrents with filters
inspect torrent details
plan or execute torrent downloads
fetch BYR metadata and user info
run local diagnostics before live calls

### Boundaries

Work only through the byr binary.
Prefer --json for machine-readable output.
Do not infer missing IDs/paths or silently mutate files.
Keep read-only commands non-destructive.

### Auth Notes

Support both cookie formats in auth import-cookie:

uid=...; pass=...
session_id=...; auth_token=... (optional refresh_token=...)


Browser import:

chrome (macOS path/decrypt flow)
safari best effort with manual fallback


Always check status before live operations:

byr auth status --verify --json

### Commands (JSON First)

Read-only:

byr check --json
byr whoami --json
byr doctor [--verify] --json
byr browse [--limit <n>] [--category <alias|id>] [--incldead <alias|id>] [--spstate <alias|id>] [--bookmarked <alias|id>] [--page <n>] --json
byr search --query "<text>" --limit <n> --json
byr search --imdb <tt-id> [--category <alias|id>] [--spstate <alias|id>] --json
byr get --id <torrent-id> --json
byr user info --json
byr meta categories --json
byr meta levels --json
byr auth status [--verify] --json
byr auth import-cookie --cookie "<cookie-header>" --json
byr auth import-cookie --from-browser <chrome|safari> [--profile <name>] --json
byr auth logout --json

Write side effect:

Dry run first: byr download --id <torrent-id> --output <path> --dry-run --json
Actual write: byr download --id <torrent-id> --output <path> --json

### Search/Browse Semantics

search and browse return paged list data.
JSON fields:

matchedTotal: estimated total hits inferred from BYR pagination range blocks.
returned: number of items returned in current payload.
total: backward-compatible alias of returned.


If --page is omitted, list commands auto-fetch subsequent pages until --limit is reached.
If --page is provided, only that page is fetched.

### Side-Effect Policy

Before non-dry-run download:

verify --id and --output are explicit
run dry-run and inspect sourceUrl/fileName
confirm intent for the output path

If parameters are missing, ask for explicit values.

### Error handling

Surface error.code and error.message.
For E_ARG_*: request corrected flags/arguments.
For E_AUTH_*: re-auth guidance (auth import-cookie or credential refresh).
For E_NOT_FOUND_*: request different query/torrent ID.
For E_UPSTREAM_*: suggest retry and capture command/context.

### Response Style

Keep result summaries short.
Include key fields for search/get: id, title, size, seeders, leechers.
For list commands include both matchedTotal and returned when present.
Include key fields for download: outputPath, sourceUrl, dryRun, bytesWritten.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 1MoreBuild
- Version: 0.1.2
## 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-30T09:14:22.954Z
- Expires at: 2026-05-07T09:14:22.954Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/byr-cli)
- [Send to Agent page](https://openagent3.xyz/skills/byr-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/byr-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/byr-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/byr-cli)