paddleocr-text-recognition

paddleocr-text-recognition is a skill for Claude Code from Aidenwu0209/PaddleOCR-Skills. It costs 125 tokens per session (3,107 once invoked), scanned A, original, Apache-2.0.

An OCR tool that reads text from images, photos, screenshots, scans, and scanned PDFs, with optional text locations. OCR means converting text in an image into editable computer text.

In plain words
What is it for?
Use it to extract exact text from image files or image-based PDFs when tables, formulas, charts, or complex document layout are not the main goal.
Why use it?
It removes the need to type visible text by hand, including small print, CJK text, and handwriting.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: built for openclaw.

Part of the paddleocr-skills plugin — 3 skills shipped together

not rated 34repo 26d ago A scan Socket: passSnyk: warnSkillSpector: pass 125 tokens original Apache-2.0

Good fit Use it to extract exact text from image files or image-based PDFs when tables, formulas, charts, or complex document layout are not the main goal.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Aidenwu0209/PaddleOCR-Skills --skill paddleocr-text-recognition
Clone the repo
git clone --depth 1 https://github.com/Aidenwu0209/PaddleOCR-Skills

Made for: Claude Code.

Or install paddleocr-skills, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for paddleocr-text-recognition

README.md
[![agentmods](https://agentmods.dev/badge/skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition/github.svg)](https://agentmods.dev/skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition)
Your own site
<a href="https://agentmods.dev/skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition"><img src="https://agentmods.dev/badge/skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for paddleocr-text-recognition

Your own site · 80×15
<a href="https://agentmods.dev/skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition"><img src="https://agentmods.dev/badge/skills/aidenwu0209/paddleocr-skills/paddleocr-text-recognition.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,107 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 6 May 2026
  • Snyk warn 6 May 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00125 $0.03107
Opus 5 $0.00063 $0.01554
Sonnet 5 $0.00025 $0.00621
Haiku 4.5 $0.00013 $0.00311

Measured 11d ago against content hash 1143eee7d2eb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

paddleocr-text-recognition scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/lib.py, scripts/ocr_caller.py, scripts/smoke_test.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/paddleocr-text-recognition/SKILL.md · 318 lines

How it starts

The opening of the file, as written. The whole thing — 318 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PaddleOCR Text Recognition Skill

When to Use This Skill

Trigger keywords (routing): Bilingual trigger terms (Chinese and English) are listed in the YAML description above—use that field for discovery and routing.

Use this skill for:

  • Extract text from images (screenshots, photos, scans)
  • Extract text from PDFs or document images when the goal is line/box-level text, not recovering table grids, formulas, or full reading-order layout
  • Extract text from URLs or local files that point to images/PDFs

Do not use for:

  • Plain text files, code files, or markdown documents that can be read directly as text
  • Documents with tables, formulas, charts, or complex layouts — use Document Parsing instead
  • Tasks that do not involve image-to-text conversion

Installation

Scripts declare their dependencies inline (PEP 723). No separate install step is needed — uv resolves dependencies automatically:

uv run scripts/ocr_caller.py --help

How to Use This Skill

Working directory: All uv run scripts/... commands below should be run from this skill's root directory (the directory containing this SKILL.md file).

Basic Workflow

  1. Identify the input source:

    • User provides URL: Use the --file-url parameter
    • User provides local file path: Use the --file-path parameter
  2. Execute OCR:

    uv run scripts/ocr_caller.py --file-url "URL provided by user" --pretty
    

    Or for local files:

    uv run scripts/ocr_caller.py --file-path "file path" --pretty
    

    Performance note: Parsing time scales with document complexity. Single-page images typically complete in 1-3 seconds; large PDFs (50+ pages) may take several minutes. Allow adequate time before assuming a timeout.

    Default behavior: save raw JSON to a temp file:

    • If --output is omitted, the script saves automatically under the system temp directory
    • Default path pattern: <system-temp>/paddleocr/text-recognition/results/result_<timestamp>_<id>.json
    • If --output is provided, it overrides the default temp-file destination
    • If --stdout is provided, JSON is printed to stdout and no file is saved
    • In save mode, the script prints the absolute saved path on stderr: Result saved to: /absolute/path/...
    • In default/custom save mode, read and parse the saved JSON file before responding
    • Use --stdout only when you explicitly want to skip file persistence

Read the full file on GitHub · 318 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 318 lines · 125 tokens per session scan A 1143eee7d2eb

Subscribe to this mod's changes

paddleocr-text-recognition is a skill published in the GitHub repository Aidenwu0209/PaddleOCR-Skills (34 stars, last pushed 26d ago), licensed Apache-2.0. It adds 125 tokens to every session and 3,107 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

paddleocr-doc-parsing

A document-parsing tool configuration for extracting structured Markdown or JSON from complex PDFs and document images, including tables, formulas, charts, and multi-column pages.

PaddlePaddle/PaddleOCR · 140 tokens

paddleocr-text-recognition

An optical character recognition tool configuration for extracting text from images, photos, scans, screenshots, and scanned PDFs. OCR means converting text visible in an image into machine-readable text.

PaddlePaddle/PaddleOCR · 125 tokens

kreuzberg

Extract text, tables, metadata, and images from 91+ document formats (PDF, Office, images, HTML, email, archives, academic) using Kreuzberg. Use when writing code that calls Kreuzberg APIs in Python, Node.js/TypeScript, Rust, or CLI. Covers installation, extraction (sync/async), configuration (OCR, chunking, output…

kreuzberg-dev/kreuzberg-lts · 89 tokens

format-specific-extraction

ZIP archive → Security validation → XML parsing → Text + tables + metadata.

kreuzberg-dev/kreuzberg-lts · 3 tokens

paddleocr-mcp

Use the local PaddleOCR MCP SDK v2 server for image OCR, PDF/document parsing, screenshots, tables, and structured text extraction.

Nicvank/paddleocr-mcp · 33 tokens

ade

Parse documents and extract schema-shaped data with the ADE (Agentic Document Extraction) v2 APIs through the ade CLI. A local job-item store makes every run idempotent, resumable, and citable — repeat runs are free, interrupted runs resume, and every answer can cite element ids with visual evidence.

landing-ai/ade-cli · 65 tokens