kolmopdf

kolmopdf is a skill for Claude Code from komoai2026/claude-plugin. It costs 103 tokens per session (2,205 once invoked), scanned A, original, MIT.

A workflow for using KolmoPDF, a paid cloud service, to process PDFs or Markdown files. It supports PDF parsing, translation, export to common document formats, and reading aids such as outlines and summaries.

In plain words
What is it for?
Use it to parse PDFs, translate them, export Markdown to DOCX, HTML, PDF, or LaTeX, or request an outline or summary.
Why use it?
It provides a documented way to submit files, wait for processing, and save the returned results without assuming a fixed output filename or format.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Good fit Use it to parse PDFs, translate them, export Markdown to DOCX, HTML, PDF, or LaTeX, or request an outline or summary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/komoai2026/claude-plugin/kolmopdf
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 komoai2026/claude-plugin --skill kolmopdf
Clone the repo
git clone --depth 1 https://github.com/komoai2026/claude-plugin

Made for: Claude Code.

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 kolmopdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/komoai2026/claude-plugin/kolmopdf.svg)](https://agentmods.dev/skills/komoai2026/claude-plugin/kolmopdf)
Your own site
<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>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,205 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00103 $0.02205
Opus 5 $0.00051 $0.01103
Sonnet 5 $0.00021 $0.00441
Haiku 4.5 $0.00010 $0.00220

Measured 8d ago against content hash 9dd589504077, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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
codex-skill/kolmopdf/SKILL.md · 185 lines

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

Read the full file on GitHub · 185 lines

Files

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.

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. 8d ago First seen · 185 lines · 103 tokens per session scan A 9dd589504077

Subscribe to this mod's changes

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.

Related

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.

deusyu/translate-book · 42 tokens

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".

ForceInjection/AI-fundamentals · 47 tokens

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.

znlgis/opengis-skills · 47 tokens

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.

lovstudio/skills · 87 tokens

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…

skills-il/localization · 247 tokens

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…

breslee1707/VI-Translate · 77 tokens