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 skills add komoai2026/claude-plugin --skill kolmopdfgit clone --depth 1 https://github.com/komoai2026/claude-pluginWrote 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/skills/komoai2026/claude-plugin/kolmopdf)<a href="https://agentmods.dev/skills/komoai2026/claude-plugin/kolmopdf"><img src="https://agentmods.dev/badge/skills/komoai2026/claude-plugin/kolmopdf.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.1 | $0.00103 | $0.02205 |
| Opus 5 | $0.00051 | $0.01103 |
| Sonnet 5 | $0.00021 | $0.00441 |
| Haiku 4.5 | $0.00010 | $0.00220 |
Grade A, and why
kolmopdf scanned grade A with 1 finding 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 8d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
description: Use when the user explicitly wants KolmoPDF cloud processing of a PDF/Markdown file — parse PDF to Markdown, layout-preserving PDF translation, Markdown export (DOCX/HTML/PDF/LaTeX), or parse-time reading ai How it starts
The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.
KolmoPDF Skill (API-first)
KolmoPDF is a paid cloud service. Capabilities live on Jobs API v1. MCP tools are optional wrappers that wait internally.
Base URL: https://www.kolmopdf.com
Auth: Authorization: Bearer $KOLMOPDF_API_KEY or X-API-Key: $KOLMOPDF_API_KEY
Guide: https://www.kolmopdf.com/api-docs
Do not trigger only because a PDF was mentioned. Do not fabricate summary.md / outline.md without downloading job results.
Preferred path: create → SSE wait → save by result.filename
Reuse the same Idempotency-Key if you retry create (avoid double charge). MCP tools mint a new key per invocation.
Never hard-code -o result.zip / translated.pdf / result.md. Parse, translate, and convert each return ZIP or a single file. A ZIP saved as .pdf opens as “file is damaged” even though the bytes are fine.
export KOLMOPDF_API_KEY=sk-...
export BASE=https://www.kolmopdf.com
export IDEM="parse-$(date +%s)" # keep stable across retries of THIS job only
# 1) Create (HTTP 202, body.id like job_...)
JOB=$(curl -sS -X POST "$BASE/api/v1/jobs/parse" \
-H "Authorization: Bearer $KOLMOPDF_API_KEY" \
-H "Idempotency-Key: $IDEM" \
-F "file=@/path/to/doc.pdf" \
-F "table_mode=markdown" \
-F "enable_translation=false" | jq -r .id)
# 2) Wait on ONE SSE connection (curl -N = no buffer). Stop on terminal event.
# timeout wraps the wait (PDF jobs can take minutes).
timeout 1800 curl -N -sS \
-H "Authorization: Bearer $KOLMOPDF_API_KEY" \
-H "Accept: text/event-stream" \
"$BASE/api/v1/jobs/$JOB/events"
# Look for: event: job.succeeded | job.failed | job.cancelled
# 3) Read declared filename/kind, then download under THAT name
META=$(curl -sS -H "Authorization: Bearer $KOLMOPDF_API_KEY" "$BASE/api/v1/jobs/$JOB")
NAME=$(echo "$META" | jq -r '.result.filename // "download.bin"')
KIND=$(echo "$META" | jq -r '.result.kind // "binary"')
curl -sSL -H "Authorization: Bearer $KOLMOPDF_API_KEY" \
"$BASE/api/v1/jobs/$JOB/download" -o "$NAME"
# 4) Magic-byte check (do this even if KIND looks right)
HEAD=$(od -An -t x1 -N 4 "$NAME" | tr -d ' \n')
# 504b0304 / 504b0506 / 504b0708 = ZIP
# 25504446 = %PDF
What ships with it
2 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.
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.
- 8d ago First seen · 185 lines · 103 tokens per session scan A 9dd589504077
kolmopdf is a skill published in the GitHub repository komoai2026/claude-plugin (3 stars, last pushed 14d ago), licensed MIT. It adds 103 tokens to every session and 2,205 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
translate-book
Translate books (PDF/DOCX/EPUB) into any language using parallel sub-agents. Converts input -> Markdown chunks -> translated chunks -> HTML/DOCX/EPUB/PDF.
pdf_translator
Extract text from PDF files, translate it to a target language, and save the result as a Markdown file. Use this skill when the user wants to translate a PDF document or asks to "convert PDF to Chinese".
docutranslate
Use when translating documents locally via LLM — PDF, Word, Excel, Markdown, SRT subtitles with format preservation. DocuTranslate: LLM-powered multi-format local file translation tool with MCP server support.
lov-academic-translator
A tool for translating English research papers, journal or conference articles, arXiv papers, and technical PDFs into Chinese PDFs or publishable Chinese Markdown. It can preserve requested images, formulas, page matching, and layout details.
hebrew-document-generator
Generate Hebrew documents (PDF, DOCX/Word, PPTX) with correct right-to-left layout, mixed Hebrew-and-English bidi handling, and Hebrew typography. Use whenever the output is a Hebrew or mixed Hebrew/English Word document, Hebrew PDF, or Hebrew PowerPoint ("Hebrew Word document", "מסמך Word בעברית", "create a .docx in…
pdf-translate
Translate local PDFs, including safe prose on image-only scans, into Vietnamese or another supported Latin-script language while preserving layout, formulas, tables, and figures. Use for PDF translation, OCR-assisted scan translation, batch translation, terminology-sensitive handoff translation, or diagnosing…