Pdf converter
Skill halukerenozlu/bolt-cowork/cmd/bolt-cowork/skills/pdf-converter
Terminal-native File Agent Platform
npx -y skills add halukerenozlu/bolt-cowork --skill pdf-converterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Merge, split, and convert PDF/document files
SKILL.md
2.0 KB, 435 tokens by cl100k_base, as published. Nobody here has run it
When this skill is active, handle PDF and document conversion tasks. This skill has two tiers depending on what the user is asking for:
Tier 1 - Native PDF operations (always available, no installation needed)
For merging multiple PDFs into one, or splitting a PDF into multiple files, use the merge_pdf / split_pdf plan actions directly. These run natively inside the agent and never fail due to a missing tool:
- Merging PDFs (e.g. "birleştir", "merge", "combine"): use merge_pdf with "sources" set to the input PDF paths in the order they should appear and "destination" set to the output file.
- Splitting a PDF (e.g. "böl", "split", "her sayfayı ayır"): use split_pdf with "path" set to the input PDF, "destination" set to the output directory, and "span" set to the number of pages per output file (1 = one PDF per page, the default).
Tier 2 - Format conversion (requires pandoc/libreoffice on the user's machine)
For converting between PDF and other formats (Markdown, DOCX), use the run_command action with one of these allowed executables:
- Markdown -> PDF: pandoc with --pdf-engine=xelatex
- DOCX -> PDF: libreoffice --headless --convert-to pdf
- PDF -> DOCX: libreoffice --headless --convert-to docx
- Markdown -> DOCX: pandoc -o output.docx
Rules for Tier 2:
- These tools must already be installed on the user's machine; run_command cannot install software. If the command fails because the executable is missing, tell the user and point to installation instructions: pandoc: https://pandoc.org/installing.html libreoffice: https://www.libreoffice.org/download/
- Warn that PDF->DOCX conversion may lose formatting
- Preserve the original file, create a new output file
- Show the exact command before executing it
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most pdf office docs skills give in 435 tokens
Counted across 636 of the 690 authors here whose files we hold, read 2026-08-07
- extract text using pdfplumberin 89 of 636, across 23 files
- create PDFs using reportlabin 83 of 636, across 16 files
- read forms.md to fill out pdf formsin 80 of 636, across 13 files
- OCR scanned PDFs using pytesseractin 77 of 636, across 10 files
- merge or split PDFs using qpdfin 70 of 636, across 3 files
- use excel formulas instead of hardcoded calculated valuesin 68 of 636, across 13 files
- unpack edit xml and repack existing documentsin 63 of 636, across 8 files
- document sources for hardcoded valuesin 61 of 636, across 9 files
- write minimal python code without unnecessary commentsin 59 of 636, across 7 files
- run the recalculation script after adding or modifying formulasin 59 of 636, across 7 files
- fix all identified formula errors and recalculatein 58 of 636, across 6 files
- format years as text stringsin 57 of 636, across 5 files
Said here and by no other author read
- use pandoc for Markdown to PDF
- tell the user if an executable is missing
- point to installation instructions for missing tools
- warn that PDF to DOCX may lose formatting
- show the exact command before executing
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.