# Send Zerox 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zerox",
    "name": "Zerox",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/otacu/zerox",
    "canonicalUrl": "https://clawhub.ai/otacu/zerox",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/zerox",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zerox",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "scripts/convert-bg.mjs",
      "scripts/convert.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "zerox",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T14:56:02.993Z",
      "expiresAt": "2026-05-11T14:56:02.993Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zerox",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zerox",
        "contentDisposition": "attachment; filename=\"zerox-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "zerox"
      },
      "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/zerox"
    },
    "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/zerox",
    "downloadUrl": "https://openagent3.xyz/downloads/zerox",
    "agentUrl": "https://openagent3.xyz/skills/zerox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zerox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zerox/agent.md"
  }
}
```
## Documentation

### Zerox Document Converter

Convert various document formats to Markdown using the zerox library and GPT-4o vision.

### Supported Formats

PDF (scanned and text-based)
Microsoft Word (DOCX)
Microsoft PowerPoint (PPTX)
Images (PNG, JPG, etc.)
And more via OCR

### Convert Document (Foreground)

For small files (< 30 seconds):

node {baseDir}/scripts/convert.mjs <filePath> [outputPath]

### Examples

# Convert PDF - saves to {baseDir}/output/document.md by default
node {baseDir}/scripts/convert.mjs "/path/to/document.pdf"

# Convert PDF with custom output path
node {baseDir}/scripts/convert.mjs "/path/to/document.pdf" "/path/to/output.md"

# Convert Word document - saves to {baseDir}/output/document.md
node {baseDir}/scripts/convert.mjs "/path/to/document.docx"

### Convert Document (Background)

For large files or scanned PDFs that take minutes:

node {baseDir}/scripts/convert-bg.mjs <filePath> [outputPath]

### Features

Runs conversion in background (no timeout issues)
Logs progress to {baseDir}/output/convert-bg.log
Sends macOS notification when complete
Detached from terminal (safe to close)

### Examples

# Convert large scanned PDF in background
node {baseDir}/scripts/convert-bg.mjs "/path/to/scanned-document.pdf"

# Monitor progress
tail -f {baseDir}/output/convert-bg.log

### Requirements

APIYI_API_KEY: Your OpenAI-compatible API key (environment variable)

### Notes

The conversion uses GPT-4o vision to extract text, so it works even with scanned documents
Large documents may take some time to process
Output is plain Markdown text
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: otacu
- 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-04T14:56:02.993Z
- Expires at: 2026-05-11T14:56:02.993Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/zerox)
- [Send to Agent page](https://openagent3.xyz/skills/zerox/agent)
- [JSON manifest](https://openagent3.xyz/skills/zerox/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/zerox/agent.md)
- [Download page](https://openagent3.xyz/downloads/zerox)