ocr
Extract text from images locally with PaddleOCR weights via onnxruntime. Free, multi-language, batch.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Extract text from images locally with PaddleOCR weights via onnxruntime. Free, multi-language, batch.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Add the EasyBits MCP server (@easybits.cloud/mcp) so the container agent can manage cloud files, images, video/voice generation, designs, websites, forms, brand kits, characters, and a built-in DB. 65+ tools (server-side).
Reference & priority guide for the EasyBits MCP server (`mcp__easybits__*`). When to use EasyBits vs native skills, and which EasyBits tools exist.
Semantic search over your workspace text files using local multilingual embeddings (fastembed + e5-small). Free, local.
Remove backgrounds and segment images locally with the u2net family (rembg). Free, no API keys, works in batch.
Generate vector logos (SVG) and convert raster images to SVG via Recraft on fal.ai. Use for logo / brand mark / icon requests, or when the user sends a PNG/JPG and wants the editable SVG version.
Extract individual PNG frames from any WhatsApp sticker — static .webp, animated .webp, or Lottie .was. Use when the user wants to see, analyze, clone, or recreate a sticker.
| name | ocr |
| description | Extract text from images locally with PaddleOCR weights via onnxruntime. Free, multi-language, batch. |
| allowed-tools | Bash(ocr:*) |
Wraps rapidocr-onnxruntime — the PaddleOCR detection + recognition models exported to ONNX. Runs on CPU, no API. Works on Spanish, English, Chinese, Japanese, Korean and more out of the box.
| Mode | Command |
|---|---|
| Plain text | ocr screenshot.png |
| With boxes + scores | ocr --json receipt.jpg |
| Filter low-confidence | ocr --min-confidence 0.7 ticket.png |
| Batch | ocr --batch /workspace/agent/screenshots/ |
ocr: many images at once, need exact strings (URLs, codes, prices), need bounding-box coords, processing screenshots in bulk, or building a searchable text index.ocr is ~100× faster than vision for batch transcription and gives you exact characters (vision sometimes "smooths" weird strings).
Plain mode prints one detection per line, top-to-bottom roughly. --json gives full structure:
{
"screenshot.png": [
{ "text": "Total $1,250.00", "confidence": 0.97, "box": [[10,20],[200,20],[200,45],[10,45]] }
]
}
ocr returns each bubble as a detection — order is approximate, may need re-sorting by box y if you care about chronology.generate-gif --crop WxH+X+Y if you only want one region.upscale if available.