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.
npx agentmods add instructions/clefru/ocrmypdf-paddleocr/claude-mdgit clone --depth 1 https://github.com/clefru/ocrmypdf-paddleocrWrote 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.
[](https://agentmods.dev/instructions/clefru/ocrmypdf-paddleocr/claude-md)<a href="https://agentmods.dev/instructions/clefru/ocrmypdf-paddleocr/claude-md"><img src="https://agentmods.dev/badge/instructions/clefru/ocrmypdf-paddleocr/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02132 | $0.02132 |
| Opus 5 | $0.01066 | $0.01066 |
| Sonnet 5 | $0.00426 | $0.00426 |
| Haiku 4.5 | $0.00213 | $0.00213 |
Grade A, and why
ocrmypdf-paddleocr CLAUDE.md 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 4d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OCRmyPDF-PaddleOCR Bounding Box Fixes
This document describes the bounding box improvements implemented in the PaddleOCR plugin for OCRmyPDF.
Overview
Three major improvements to text bounding boxes in the hOCR output:
- Native Word Boxes: Use PaddleOCR 3.x's
return_word_box=Truefor accurate word-level detection - Horizontal Fallback: Improved word width estimation when native boxes unavailable
- Vertical Issue: Tighter line bounding boxes using polygon edge averaging
Fix 1: Native Word-Level Bounding Boxes
Implementation
PaddleOCR 3.x supports native word-level bounding boxes via the return_word_box=True parameter. The plugin now uses this feature:
result = paddle_ocr.predict(str(input_file), return_word_box=True)
# Extract word-level data
text_words = ocr_result.get('text_word', [])
text_word_regions = ocr_result.get('text_word_region', [])
Token Merging
PaddleOCR may split words unexpectedly (German umlauts, punctuation, emails). The plugin merges adjacent non-whitespace tokens:
# Merge tokens that were split unexpectedly
merged_words = []
current_word = []
current_boxes = []
for token, box in zip(line_word_tokens, line_word_boxes):
token_str = str(token).strip()
if not token_str or token_str.isspace():
# Whitespace token - finalize current word
if current_word:
merged_words.append((''.join(current_word), current_boxes))
current_word = []
current_boxes = []
else:
# Non-whitespace token - accumulate
current_word.append(token_str)
current_boxes.append(box)
The bounding box for merged words is computed as the union of all sub-token boxes, using the polygon-edge method for vertical bounds.
Location: src/ocrmypdf_paddleocr/plugin.py:319-404
Results
- Pixel-accurate word boundaries from PaddleOCR's detection
- Proper handling of split tokens (umlauts, punctuation)
- Automatic fallback to estimation when word boxes unavailable
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.
- 4d ago First seen · 256 lines · 2,132 tokens per session scan A d38ffd6f379f
ocrmypdf-paddleocr CLAUDE.md is an instructions file published in the GitHub repository clefru/ocrmypdf-paddleocr (51 stars, last pushed 6mo ago), licensed MPL-2.0. It adds 2,132 tokens to every session, about $0.0107 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.
Other instructions, from other repositories
ailang-parse CLAUDE.md
Claude Code instructions for sunholo-data/ailang-parse, covering claude.md — ailang parse, project purpose, project structure, authoring documents in markdown and ailang language & toolchain reference.
cdxml-toolkit-community CLAUDE.md
Claude Code instructions for ZiChenWang114514/cdxml-toolkit-community, covering cdxml-toolkit — agent reference, what this is, key rules, mcp server and tool reference.
pdffigures-mcp-server CLAUDE.md
Instructions for vlln/pdffigures-mcp-server, covering claude.md, architecture, commands, build and run with docker and run locally (requires pdffigures2 jar at the expected path).
SolvingMicroDSOPs CLAUDE.md
Instructions for llorracc/SolvingMicroDSOPs, covering claude.md, project overview, build commands, latex → pdf and python dependencies.
codex-stata-for-economists CLAUDE.md
Claude Code instructions for maxwell2732/codex-stata-for-economists, covering core principles, folder structure, commands, render the markdown/pdf report (quarto + stata engine) and quality score for a do-file (0–100).
paper2code-skill AGENTS.md
Instructions for issol14/paper2code-skill, covering agents.md - for llm agents, quick summary, repository structure, installation commands and one-liner installation.