agentsclimarketplace

Pdf converter

Skill halukerenozlu/bolt-cowork/cmd/bolt-cowork/skills/pdf-converter

Merge, split, and convert PDF/document filesFrom its SKILL.md

Install
npx -y skills add halukerenozlu/bolt-cowork --skill pdf-converter

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

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.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.