# Send Mistral 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. 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": "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": {
    "downloadUrl": "/downloads/mistral-ocr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mistral-ocr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "requirements.txt",
      "scripts/mistral_ocr.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mistral-ocr",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T15:57:04.196Z",
      "expiresAt": "2026-05-12T15:57:04.196Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mistral-ocr",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mistral-ocr",
        "contentDisposition": "attachment; filename=\"mistral-ocr-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mistral-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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### ⚠️ Privacy Warning - 隐私警告

IMPORTANT - READ BEFORE INSTALLING:

This skill uploads your files to Mistral's cloud servers for OCR processing.

Do NOT use with sensitive or confidential documents unless:

You trust Mistral's data handling policies
You have reviewed Mistral's privacy policy
You accept that file contents will be transmitted and processed remotely

For sensitive documents, use offline/local OCR tools instead.

### Mistral OCR Skill

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.

### Installation

# Clone or download this repository
git clone https://github.com/YZDame/Mistral-OCR-SKILL.git
cd Mistral-OCR-SKILL

# Install dependencies
pip install -r requirements.txt

### 🔑 API Key Setup (Required)

Get your API key:
👉 https://console.mistral.ai/home

Set the environment variable:

export MISTRAL_API_KEY=your_api_key

### CLI Usage

cd scripts

# Process PDF to Markdown
python3 mistral_ocr.py -i input.pdf

# Process PDF to JSON
python3 mistral_ocr.py -i input.pdf -f json

# Specify output directory
python3 mistral_ocr.py -i input.pdf -o ~/my_ocr_results

### Arguments

FlagDescription-i, --inputInput file path (required)-f, --formatOutput format: markdown/json/html (default: markdown)-o, --outputOutput directory

### Data Privacy

What happens to your files:

Files are uploaded to Mistral's OCR API
Files are processed on Mistral servers
Processing results are returned to you
Files are not stored on Mistral servers (per Mistral policy)

For more details, see: https://mistral.ai/privacy-policy

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: YZDame
- Version: 1.0.4
## 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-05T15:57:04.196Z
- Expires at: 2026-05-12T15:57:04.196Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mistral-ocr)
- [Send to Agent page](https://openagent3.xyz/skills/mistral-ocr/agent)
- [JSON manifest](https://openagent3.xyz/skills/mistral-ocr/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mistral-ocr/agent.md)
- [Download page](https://openagent3.xyz/downloads/mistral-ocr)