This skill enables PDF creation, extraction, manipulation, and analysis. Claude should apply these patterns when users need to generate invoices, reports, extract data from PDFs, merge documents, or work with PDF forms.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondocument-pdfExecute the skills CLI command in your project's root directory to begin installation:
Fetches document-pdf from vasilyu1983/ai-agents-public and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate document-pdf. Access via /document-pdf in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
53
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
53
stars
This skill enables PDF creation, extraction, manipulation, and analysis. Claude should apply these patterns when users need to generate invoices, reports, extract data from PDFs, merge documents, or work with PDF forms.
Modern Best Practices (Jan 2026):
references/pdf-extraction-patterns.md.scripts/ helpers over re-implementing ad hoc.| Task | Tool/Library | Language | When to Use |
|---|---|---|---|
| Create PDF | pdfkit | Node.js | Reports, invoices, certificates |
| Create PDF | ReportLab | Python | Complex layouts, tables |
| Create PDF | FPDF2 | Python | Simple PDFs with Unicode support |
| Create PDF | Borb | Python | Interactive elements, pure Python |
| Edit PDF | pdf-lib | Node.js | Modify existing PDFs, add pages |
| Extract text | pdfplumber | Python | OCR-free text extraction |
| OCR scanned PDF | PyMuPDF + Tesseract | Python | Scanned PDFs (no selectable text) |
| Extract tables | Camelot | Python | Tables with borders (Lattice mode) |
| Extract tables | Camelot/Tabula | Python | Tables without borders (Stream mode) |
| Parse/merge/split/rotate | pypdf | Python | Deterministic PDF manipulation |
| Fill forms | pdf-lib | Node.js | Form automation |
| HTML to PDF | Puppeteer/Playwright | Node.js | High-fidelity web page rendering |
| HTML to PDF | WeasyPrint | Python | CSS3-based, no browser needed |
Claude should invoke this skill when a user requests:
pdfkit (Node) or ReportLab (Python) and start from assets/invoice-template.md or assets/report-template.md; for advanced layouts use references/pdf-generation-patterns.md.references/pdf-extraction-patterns.md (text/tables/images/metadata + OCR fallback).assets/pdf-release-checklist.md (fidelity, links, accessibility baseline, privacy).Scripts are optional helpers; they assume Python 3 plus the listed dependencies in each file.
python3 scripts/merge_pdfs.py merged.pdf a.pdf b.pdfpython3 scripts/split_pdf.py in.pdf out_dir --each-pagepython3 scripts/rotate_pdf.py in.pdf out.pdf --degrees 90python3 scripts/scrub_metadata.py in.pdf out.pdfINVOICE STRUCTURE
├── Header (logo, company info, invoice #)
├── Bill To / Ship To blocks
├── Line items table
│ ├── Description | Qty | Unit Price | Total
│ └── Subtotal, Tax, Total
├── Payment terms
└── Footer (contact, thank you)
REPORT PDF STRUCTURE
├── Cover page (title, author, date)
├── Table of contents
├── Body sections with page numbers
├── Charts/images with captions
├── Appendices
└── Running header/footer
PDF Task: [What do you need?]
├─ Create new PDF?
│ ├─ Simple text/tables → pdfkit (Node) or ReportLab (Python)
│ ├─ Complex layouts → ReportLab with Platypus
│ └─ From HTML → Puppeteer or wkhtmltopdf
│
├─ Extract from PDF?
│ ├─ Text only → pdfplumber (Python)
│ ├─ Tables → pdfplumber or camelot (Python)
│ └─ Images → PyMuPDF/fitz (Python)
│
├─ Modify existing PDF?
│ ├─ Add text/images → pdf-lib (Node)
│ ├─ Merge/split → pypdf or pdf-lib
│ └─ Fill forms → pdf-lib
│
└─ Batch processing?
└─ pypdf + pdfplumber pipeline
assets/pdf-release-checklist.md.Use only when explicitly requested and policy-compliant.
Resources
Templates
Related Skills
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
yejinlei/pdf-ocr-skill
yejinlei/pdf-ocr-skill
kagurananaga/official-document-writing-skill
duc01226/easyplatform
steipete/clawdis
travisjneuman/.claude
I recommend document-pdf for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: document-pdf is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for document-pdf matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: document-pdf is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend document-pdf for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
document-pdf reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for document-pdf matched our evaluation — installs cleanly and behaves as described in the markdown.
document-pdf is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
document-pdf reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for document-pdf matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 29