{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mistral-ocr",
    "name": "Mistral OCR",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/YZDame/mistral-ocr",
    "canonicalUrl": "https://clawhub.ai/YZDame/mistral-ocr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mistral-ocr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mistral-ocr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "requirements.txt",
      "scripts/mistral_ocr.py"
    ],
    "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/mistral-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/mistral-ocr",
    "agentPageUrl": "https://openagent3.xyz/skills/mistral-ocr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mistral-ocr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mistral-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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "⚠️ Privacy Warning - 隐私警告",
        "body": "IMPORTANT - READ BEFORE INSTALLING:\n\nThis skill uploads your files to Mistral's cloud servers for OCR processing.\n\nDo NOT use with sensitive or confidential documents unless:\n\nYou trust Mistral's data handling policies\nYou have reviewed Mistral's privacy policy\nYou accept that file contents will be transmitted and processed remotely\n\nFor sensitive documents, use offline/local OCR tools instead."
      },
      {
        "title": "Mistral OCR Skill",
        "body": "A powerful OCR tool that converts PDF files and images into Markdown, JSON, or HTML formats using Mistral's state-of-the-art OCR API."
      },
      {
        "title": "Installation",
        "body": "# Clone or download this repository\ngit clone https://github.com/YZDame/Mistral-OCR-SKILL.git\ncd Mistral-OCR-SKILL\n\n# Install dependencies\npip install -r requirements.txt"
      },
      {
        "title": "🔑 API Key Setup (Required)",
        "body": "Get your API key:\n👉 https://console.mistral.ai/home\n\nSet the environment variable:\n\nexport MISTRAL_API_KEY=your_api_key"
      },
      {
        "title": "CLI Usage",
        "body": "cd scripts\n\n# Process PDF to Markdown\npython3 mistral_ocr.py -i input.pdf\n\n# Process PDF to JSON\npython3 mistral_ocr.py -i input.pdf -f json\n\n# Specify output directory\npython3 mistral_ocr.py -i input.pdf -o ~/my_ocr_results"
      },
      {
        "title": "Arguments",
        "body": "FlagDescription-i, --inputInput file path (required)-f, --formatOutput format: markdown/json/html (default: markdown)-o, --outputOutput directory"
      },
      {
        "title": "Data Privacy",
        "body": "What happens to your files:\n\nFiles are uploaded to Mistral's OCR API\nFiles are processed on Mistral servers\nProcessing results are returned to you\nFiles are not stored on Mistral servers (per Mistral policy)\n\nFor more details, see: https://mistral.ai/privacy-policy"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "⚠️ Privacy Warning - 隐私警告\n\nIMPORTANT - READ BEFORE INSTALLING:\n\nThis skill uploads your files to Mistral's cloud servers for OCR processing.\n\nDo NOT use with sensitive or confidential documents unless:\n\nYou trust Mistral's data handling policies\nYou have reviewed Mistral's privacy policy\nYou accept that file contents will be transmitted and processed remotely\n\nFor sensitive documents, use offline/local OCR tools instead.\n\nMistral OCR Skill\n\nA powerful OCR tool that converts PDF files and images into Markdown, JSON, or HTML formats using Mistral's state-of-the-art OCR API.\n\nInstallation\n# Clone or download this repository\ngit clone https://github.com/YZDame/Mistral-OCR-SKILL.git\ncd Mistral-OCR-SKILL\n\n# Install dependencies\npip install -r requirements.txt\n\n🔑 API Key Setup (Required)\n\nGet your API key: 👉 https://console.mistral.ai/home\n\nSet the environment variable:\n\nexport MISTRAL_API_KEY=your_api_key\n\nCLI Usage\ncd scripts\n\n# Process PDF to Markdown\npython3 mistral_ocr.py -i input.pdf\n\n# Process PDF to JSON\npython3 mistral_ocr.py -i input.pdf -f json\n\n# Specify output directory\npython3 mistral_ocr.py -i input.pdf -o ~/my_ocr_results\n\nArguments\nFlag\tDescription\n-i, --input\tInput file path (required)\n-f, --format\tOutput format: markdown/json/html (default: markdown)\n-o, --output\tOutput directory\nData Privacy\n\nWhat happens to your files:\n\nFiles are uploaded to Mistral's OCR API\nFiles are processed on Mistral servers\nProcessing results are returned to you\nFiles are not stored on Mistral servers (per Mistral policy)\n\nFor more details, see: https://mistral.ai/privacy-policy\n\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/YZDame/mistral-ocr",
    "publisherUrl": "https://clawhub.ai/YZDame/mistral-ocr",
    "owner": "YZDame",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mistral-ocr",
    "downloadUrl": "https://openagent3.xyz/downloads/mistral-ocr",
    "agentUrl": "https://openagent3.xyz/skills/mistral-ocr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mistral-ocr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mistral-ocr/agent.md"
  }
}