parse-document

A document-conversion workflow that turns PDFs, scans, images, and office files into clean Markdown text. Markdown is a plain-text format for structured documents, and OCR reads text from images.

In plain words
What is it for?
It helps parse documents, extract or recognize their text, save the result as a Markdown file, and answer questions from selected sections of that extracted content.
Why use it?
It lets the agent work from extracted text instead of manually reading the original document, while supporting scanned pages when text recognition is needed.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/superlinked/sie/parse-document
Any agent
npx skills add superlinked/sie --skill parse-document
Clone the repo
git clone --depth 1 https://github.com/superlinked/sie

Made for: Claude Code, Codex.

Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00064 $0.00430
Opus 5 $0.00032 $0.00215
Sonnet 5 $0.00013 $0.00086
Haiku 4.5 $0.00006 $0.00043

Measured 2d ago against content hash fe66cd87608f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

parse-document 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 2d 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.

packages/sie_mcp/plugin/claude-code/parse-document/SKILL.md · 45 lines

What it actually says

Parse a Document with Superlinked MCP

Use the connected Superlinked MCP server to convert the source file to markdown through the MCP docs_to_markdown tool, then work from the markdown artifact.

Steps

  1. Do not open, view, attach, or read the source document into context. Read its raw bytes only and base64-encode those bytes.

  2. Call the Superlinked MCP docs_to_markdown tool with:

    • document_base64: the base64-encoded source bytes
    • filename: the original filename
    • engine: auto unless the user explicitly asks to force docling or vl-ocr
    • ocr: leave false unless forcing the docling OCR path
  3. Write the returned markdown to processed/<source-stem>.md. Create processed/ if it does not exist.

  4. Your next message must begin with a short receipt, then answer from the artifact selectively:

    Parsed <source> -> processed/<source-stem>.md (<chars> chars)
    

    If the MCP metadata includes token-saving figures, include those figures directly under the receipt. Keep estimates marked as estimates.

  5. Answer the user's question from the artifact. Grep or read specific sections; do not read the whole markdown file unless it is small.

Errors

If the MCP call fails, relay the tool error and do not retry blindly. For auth or connector errors, tell the user to reinstall the generated MCP plugin pack or rerun the generated claude mcp add ... --header 'Authorization: Bearer ...' command from INSTALL.md.

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. 2d ago First seen · 45 lines · 64 tokens per session scan A fe66cd87608f

Subscribe to this mod's changes

parse-document is a skill published in the GitHub repository superlinked/sie (2,863 stars, last pushed 5d ago), licensed Apache-2.0. It adds 64 tokens to every session and 430 once invoked, about $0.0003 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

esm

Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel…

synthetic-sciences/openscience · 86 tokens

vector-search-workflows

Vector search indexing and querying workflows using MCP Vector Search, including setup, reindexing, auto-index strategies, and MCP integration.

bobmatnyc/claude-mpm-skills · 31 tokens

locus

npx @sylphx/locus --root=/absolute/path/to/project.

SylphxAI/coderag · 0 tokens

RAG Chunking Strategy Advisor

Given a document type and retrieval goal, recommends the optimal chunking strategy for a RAG pipeline to minimize retrieval failures.

Notysoty/openagentskills · 31 tokens

check-memory-before-acting

Search this project's own memory before doing something it may already have opinions about. Use before running a build/test/deploy command, before choosing a library or approach, before changing configuration or CI, and before re-opening a decision that may already have been settled. Also use when a task resembles…

GiulioDER/RE-call · 66 tokens

keep-memory-current

Load this project's memory when you start, and write back what you learned before you stop. Use at the beginning of a work session, when finishing a task or about to end a session, after debugging something non-obvious, after a decision that took argument to reach, and whenever you catch yourself thinking "I should…

GiulioDER/RE-call · 77 tokens