opendataloader-pdf

opendataloader-pdf is a skill for Claude Code from matematicsolutions/awesome-matematic-skills-pl. It costs 109 tokens per session (1,066 once invoked), scanned A, original, MIT.

A PDF converter that turns documents into JSON, Markdown, or HTML while preserving reading order, headings, and tables. JSON keeps detailed structure, while Markdown produces text suited to AI tools.

In plain words
What is it for?
Use it to convert individual PDFs or folders of PDFs, including batches in an Obsidian knowledge vault. It can also extract LaTeX formulas and describe images when the relevant options are enabled.
Why use it?
Basic PDF-to-text tools can scramble columns, headings, and tables, especially in research papers or complex documents. This tool is intended to keep those relationships usable after conversion.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the dokumenty plugin — 10 skills shipped together

Good fit Use it to convert individual PDFs or folders of PDFs, including batches in an Obsidian knowledge vault. It can also extract LaTeX formulas and describe images when the relevant options are enabled.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf
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 matematicsolutions/awesome-matematic-skills-pl --skill opendataloader-pdf
Clone the repo
git clone --depth 1 https://github.com/matematicsolutions/awesome-matematic-skills-pl

Made for: Claude Code.

Or install dokumenty, the plugin that ships this one along with the rest of its 10 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 opendataloader-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf/github.svg)](https://agentmods.dev/skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf)
Your own site
<a href="https://agentmods.dev/skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf"><img src="https://agentmods.dev/badge/skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf/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 opendataloader-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf"><img src="https://agentmods.dev/badge/skills/matematicsolutions/awesome-matematic-skills-pl/opendataloader-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,066 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.
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.00109 $0.01066
Opus 5 $0.00055 $0.00533
Sonnet 5 $0.00022 $0.00213
Haiku 4.5 $0.00011 $0.00107

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

Security

Grade A, and why

opendataloader-pdf 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.

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.

dokumenty/skills/opendataloader-pdf/SKILL.md · 87 lines

How it starts

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

OpenDataLoader PDF - PDF→JSON/MD (PL)

Java-based (Python wrapper) parser PDF najwyższej jakości dla AI. Benchmarki: NID (reading order), TEDS (tabele), MHS (headings). Używany w pipeline Konwerter/ w vault.

Instalacja (zrobione 2026-04-21)

python -m pip install --user opendataloader-pdf

Python 3.14, opendataloader-pdf 2.2.1. Wymaga Java 17+ (mamy Eclipse Adoptium JDK 17). CLI: python -m opendataloader_pdf albo opendataloader-pdf.exe ze Scripts/.

Wspierane outputy

  • JSON (pełna struktura - reading order, bounding boxes, tabele jako 2D arrays) - default
  • Markdown (flattened output, gotowy pod LLM)
  • HTML (opcjonalnie)

Użycie

CLI - pojedynczy PDF

python -m opendataloader_pdf --input plik.pdf --output output/ --format md

Batch (Obsidian Vault, pipeline Konwerter)

python -m opendataloader_pdf \
  --input "%USERPROFILE%/Documents/Obsidian Vault/wszystko co wpada szybko/" \
  --output "%USERPROFILE%/Documents/Obsidian Vault/Konwerter/" \
  --format md \
  --recursive

Zaawansowane flagi

  • --enrich-formula - wyciąga formuły LaTeX
  • --enrich-picture-description - opis obrazów (wymaga --hybrid-mode full)
  • --filter-hidden-text - wykrywa ukryty tekst (off by default, per-page rendering)

Python API

import opendataloader_pdf
result = opendataloader_pdf.load("plik.pdf", output_format="markdown")
print(result.markdown)

Kiedy użyć vs MarkItDown

PDF Narzędzie
Prosty, tekst liniowy (blog, artykuł prasowy) MarkItDown (szybsze)
Papers naukowe, raporty z tabelami OpenDataLoader (jakość)
Dokumenty z 2-kolumnowym layoutem OpenDataLoader (reading order)
Multi-page tabele OpenDataLoader (TEDS)
Batch Konwerter/ (domyślnie) OpenDataLoader

Integracja z vault

Pipeline Konwerter (istnieje Python script w _vault-management/scripts/):

  1. PDF wrzucone do wszystko co wpada szybko/ lub dropowane bezpośrednio
  2. opendataloader-pdf --input <path> --format md --output Konwerter/
  3. Frontmatter: type: source-pdf, tags: [pdf, zrodlo] - zgodnie z vault-rules.jsonclippings.classification_rules.pdf_source
  4. Powiązane oryginały PDF w folderze Konwerter/ lub Attachments

Read the full file on GitHub · 87 lines

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 · 87 lines · 109 tokens per session scan A 8f0fc7a49bd4

Subscribe to this mod's changes

opendataloader-pdf is a skill published in the GitHub repository matematicsolutions/awesome-matematic-skills-pl (6 stars, last pushed 17d ago), licensed MIT. It adds 109 tokens to every session and 1,066 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

exam-study-guide

A study-guide builder for a completed exam chapter that has not yet passed its required checks. It creates a structured teaching checklist and, in full mode, a self-contained HTML and printable PDF guide with readable formulas, visible images, explanations, examples, and answers.

ZeKaiNie/universal-examprep-skill · 113 tokens

exam-cheatsheet

A compiler that turns completed exam notes, mistakes, mastered topics, and reference material into a traceable pre-exam cheat sheet. It can also make a print-ready PDF when visual output or printing is requested.

ZeKaiNie/universal-examprep-skill · 156 tokens

pdf-cascade

Acquire PDFs for bibliographic references via a strict 8-source cascade (Crossref OA → arXiv → OpenAlex → Unpaywall → HAL → CORE → archive.org → WebSearch queue; optionally Sci-Hub + Anna's Archive, plus Anna's via a windowed browser, in opt-in mode). Each acquired PDF is validated against expected author/title/year…

roomi-fields/paper-trail · 266 tokens

gemini-file-analysis

Analyze files (PDFs, images, audio, video, large source files) via Gemini's multi-modal file analysis. Use when a file is too large for Claude's context or when the file is a non-text format requiring visual/audio understanding.

azmym/gemini-plugin · 49 tokens

invoice-processing

Extract, validate, and classify invoices from PDF, Factur-X, and UBL formats. Multi-country support with field mapping and anomaly detection.

BuilderCed/agent-skills · 32 tokens

foundry-hosted-agent-validation

Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.

microsoft/agent-framework · 82 tokens