# Send Tesseract Ocr 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": "tesseract-ocr",
    "name": "Tesseract Ocr",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/WhaleFell/tesseract-ocr",
    "canonicalUrl": "https://clawhub.ai/WhaleFell/tesseract-ocr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tesseract-ocr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tesseract-ocr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tesseract-ocr",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T02:45:45.980Z",
      "expiresAt": "2026-05-11T02:45:45.980Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tesseract-ocr",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tesseract-ocr",
        "contentDisposition": "attachment; filename=\"tesseract-ocr-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tesseract-ocr"
      },
      "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/tesseract-ocr"
    },
    "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/tesseract-ocr",
    "downloadUrl": "https://openagent3.xyz/downloads/tesseract-ocr",
    "agentUrl": "https://openagent3.xyz/skills/tesseract-ocr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tesseract-ocr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tesseract-ocr/agent.md"
  }
}
```
## Documentation

### Tesseract OCR Skill

Extract text content from images using the Tesseract engine directly via command line.

### Features

Extract text from image files using native tesseract CLI
Support multi-language recognition (Chinese, English, etc.)
No Python dependencies required
Simple and fast

### Dependencies

Install Tesseract OCR system package:

# Ubuntu/Debian:
sudo apt-get install tesseract-ocr tesseract-ocr-chi-sim

# macOS:
brew install tesseract tesseract-lang

### Basic Usage

# Use default language (English)
tesseract /path/to/image.png stdout

# Specify language (Chinese + English)
tesseract /path/to/image.png stdout -l chi_sim+eng

# Save to file
tesseract /path/to/image.png output.txt -l chi_sim+eng

# Multiple languages
tesseract /path/to/image.png stdout -l chi_sim+eng+jpn

### Common Language Codes

LanguageCodeSimplified Chinesechi_simTraditional Chinesechi_traEnglishengJapanesejpnKoreankorChinese + Englishchi_sim+eng

### Quick Examples

# OCR with Chinese support
tesseract image.jpg stdout -l chi_sim

# OCR with mixed Chinese and English
tesseract image.png stdout -l chi_sim+eng

# Save to file instead of stdout
tesseract document.png result -l chi_sim+eng
# Creates result.txt

### Notes

OCR accuracy depends on image quality; use clear images for best results
Complex layouts (tables, multi-column) may require post-processing
Chinese recognition requires the tesseract-ocr-chi-sim language pack
Language packs must be installed separately on your system
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: WhaleFell
- 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-05-04T02:45:45.980Z
- Expires at: 2026-05-11T02:45:45.980Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tesseract-ocr)
- [Send to Agent page](https://openagent3.xyz/skills/tesseract-ocr/agent)
- [JSON manifest](https://openagent3.xyz/skills/tesseract-ocr/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tesseract-ocr/agent.md)
- [Download page](https://openagent3.xyz/downloads/tesseract-ocr)