{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tesseract-ocr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tesseract-ocr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/tesseract-ocr",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Tesseract OCR Skill",
        "body": "Extract text content from images using the Tesseract engine directly via command line."
      },
      {
        "title": "Features",
        "body": "Extract text from image files using native tesseract CLI\nSupport multi-language recognition (Chinese, English, etc.)\nNo Python dependencies required\nSimple and fast"
      },
      {
        "title": "Dependencies",
        "body": "Install Tesseract OCR system package:\n\n# Ubuntu/Debian:\nsudo apt-get install tesseract-ocr tesseract-ocr-chi-sim\n\n# macOS:\nbrew install tesseract tesseract-lang"
      },
      {
        "title": "Basic Usage",
        "body": "# Use default language (English)\ntesseract /path/to/image.png stdout\n\n# Specify language (Chinese + English)\ntesseract /path/to/image.png stdout -l chi_sim+eng\n\n# Save to file\ntesseract /path/to/image.png output.txt -l chi_sim+eng\n\n# Multiple languages\ntesseract /path/to/image.png stdout -l chi_sim+eng+jpn"
      },
      {
        "title": "Common Language Codes",
        "body": "LanguageCodeSimplified Chinesechi_simTraditional Chinesechi_traEnglishengJapanesejpnKoreankorChinese + Englishchi_sim+eng"
      },
      {
        "title": "Quick Examples",
        "body": "# OCR with Chinese support\ntesseract image.jpg stdout -l chi_sim\n\n# OCR with mixed Chinese and English\ntesseract image.png stdout -l chi_sim+eng\n\n# Save to file instead of stdout\ntesseract document.png result -l chi_sim+eng\n# Creates result.txt"
      },
      {
        "title": "Notes",
        "body": "OCR accuracy depends on image quality; use clear images for best results\nComplex layouts (tables, multi-column) may require post-processing\nChinese recognition requires the tesseract-ocr-chi-sim language pack\nLanguage packs must be installed separately on your system"
      }
    ],
    "body": "Tesseract OCR Skill\n\nExtract text content from images using the Tesseract engine directly via command line.\n\nFeatures\nExtract text from image files using native tesseract CLI\nSupport multi-language recognition (Chinese, English, etc.)\nNo Python dependencies required\nSimple and fast\nDependencies\n\nInstall Tesseract OCR system package:\n\n# Ubuntu/Debian:\nsudo apt-get install tesseract-ocr tesseract-ocr-chi-sim\n\n# macOS:\nbrew install tesseract tesseract-lang\n\nUsage\nBasic Usage\n# Use default language (English)\ntesseract /path/to/image.png stdout\n\n# Specify language (Chinese + English)\ntesseract /path/to/image.png stdout -l chi_sim+eng\n\n# Save to file\ntesseract /path/to/image.png output.txt -l chi_sim+eng\n\n# Multiple languages\ntesseract /path/to/image.png stdout -l chi_sim+eng+jpn\n\nCommon Language Codes\nLanguage\tCode\nSimplified Chinese\tchi_sim\nTraditional Chinese\tchi_tra\nEnglish\teng\nJapanese\tjpn\nKorean\tkor\nChinese + English\tchi_sim+eng\nQuick Examples\n# OCR with Chinese support\ntesseract image.jpg stdout -l chi_sim\n\n# OCR with mixed Chinese and English\ntesseract image.png stdout -l chi_sim+eng\n\n# Save to file instead of stdout\ntesseract document.png result -l chi_sim+eng\n# Creates result.txt\n\nNotes\nOCR accuracy depends on image quality; use clear images for best results\nComplex layouts (tables, multi-column) may require post-processing\nChinese recognition requires the tesseract-ocr-chi-sim language pack\nLanguage packs must be installed separately on your system"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/WhaleFell/tesseract-ocr",
    "publisherUrl": "https://clawhub.ai/WhaleFell/tesseract-ocr",
    "owner": "WhaleFell",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}