aipptskill.

COMPARE

anthropic-pdf vs pdf-creator: manipulate or generate?

Two PDF skills with non-overlapping jobs. anthropic-pdf is for working with PDFs you already have. pdf-creator is for generating new PDFs from Markdown with proper Chinese fonts. Use both.

anthropic-pdf vs pdf-creator

A common confusion: “I want to use a Claude skill for PDFs — which one?”. The answer depends on which direction you’re going.

anthropic-pdf is for working with PDFs that already exist. pdf-creator is for generating new PDFs from Markdown. They don’t compete — they chain.

Side by side

anthropic-pdfpdf-creator
DirectionOperates on existing PDFsGenerates PDFs from Markdown
AuthorAnthropic (official)daymade
Enginepypdf, PyMuPDF, OCRWeasyPrint (HTML/CSS to PDF)
Read text/tablesYesn/a
Merge/splitYesn/a
WatermarkYesn/a
OCR scannedYesn/a
Generate from MDn/aYes
CJK font supportn/aYes (proper rendering)
Print-quality layoutn/aYes (CSS @page)

anthropic-pdf — work with existing PDFs

Use it when you already have a .pdf and need to:

  • Read or extract text/tables/metadata
  • Merge multiple PDFs into one
  • Split a PDF into per-page files
  • Add watermarks, page numbers, headers
  • Encrypt, decrypt, password-protect
  • Fill PDF forms programmatically
  • OCR a scanned PDF to make it searchable

It is not a Markdown → PDF tool.

pdf-creator — generate PDFs with proper Chinese rendering

Use it when:

  • Source is Markdown (notes, articles, reports).
  • Output is print-quality PDF.
  • Chinese / Japanese / Korean text needs to render without missing glyphs.
  • You want modern CSS print features (page-break, named pages, running headers).

It is not for manipulating existing PDFs.

They chain naturally

The most common pipeline:

Markdown source
  → [pdf-creator] generate.pdf
  → [anthropic-pdf] add watermark, page numbers, encrypt
  → final.pdf

For a research report distributed bilingually:

  1. Write Markdown.
  2. pdf-creator renders to PDF with proper CJK fonts.
  3. anthropic-pdf adds watermark + DRM-style encryption.

For an existing internal PDF you want to redistribute:

  1. anthropic-pdf OCRs the scanned pages, extracts text.
  2. (Optional) Convert to Markdown for editing.
  3. pdf-creator re-generates with cleaned styling.

30-second decision

You have a PDF and need to modify it             → anthropic-pdf
You have Markdown and need print-quality PDF     → pdf-creator
Chinese / CJK content?                            → pdf-creator
Need to fill a PDF form?                          → anthropic-pdf
Need OCR on a scanned PDF?                        → anthropic-pdf
Generating a research report end-to-end?         → both, chained

See also: Markdown to polished PDF — three skill paths