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.