<< All versions
Skill v1.0.0
currentAutomated scan100/100mkurman/zorai/pdf
──Details
PublishedJuly 30, 2026 at 08:10 AM
Content Hashsha256:9733f66ffb6e90c9...
Git SHAd0acbfaf3d62
──Files
Files (1 file, 1.3 KB)
SKILL.md1.3 KBactive
SKILL.md · 26 lines · 1.3 KB
version: "1.0.0"
name: pdf description: Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill. license: Proprietary. LICENSE.txt has complete terms
tags: [scientific-skills, pdf] ---|-----------|--------------|
| Merge PDFs | pypdf | writer.add_page(page) | |
|---|---|---|---|
| Split PDFs | pypdf | One page per file | |
| Extract text | pdfplumber | page.extract_text() | |
| Extract tables | pdfplumber | page.extract_tables() | |
| Create PDFs | reportlab | Canvas or Platypus | |
| Command line merge | qpdf | qpdf --empty --pages ... | |
| OCR scanned PDFs | pytesseract | Convert to image first | |
| Fill PDF forms | pdf-lib or pypdf (see FORMS.md) | See FORMS.md |
Next Steps
- For advanced pypdfium2 usage, see REFERENCE.md
- For JavaScript libraries (pdf-lib), see REFERENCE.md
- If you need to fill out a PDF form, follow the instructions in FORMS.md
- For troubleshooting guides, see REFERENCE.md