PDF Processing Toolkit
An end-to-end PDF skill for reading, merging, splitting, table extraction, creation, and OCR.
Docs & OfficeBeginner★ 33,030⑂ 3,248AI score 10/10Last updated: Aug 9, 2026
What it does
- Extracts text and tables from PDFs with pdfplumber, including code to dump tables straight to Excel.
- Merges, splits, rotates, watermarks, encrypts and decrypts PDFs using pypdf, qpdf, or pdftk.
- Creates new PDFs with reportlab, plus a practical warning to use
<sub>/<super>tags instead of Unicode sub/superscripts that render as black boxes. - Handles scanned documents via pdf2image + pytesseract OCR, and image extraction via pdfimages.
- Points to forms.md for filling PDF forms and reference.md for advanced/JS workflows.
Who it's for
- Office workers, researchers, and students who deal with contracts, reports, and papers in PDF.
- Analysts who need invoice or report tables pulled into spreadsheets.
- Developers automating PDF report generation.
Examples
- "Combine these three PDFs into one" → merged output via qpdf or pypdf.
- "Pull the tables from pages 12–20 into Excel" → pdfplumber extraction saved as .xlsx.
- "Make this scanned contract searchable" → convert pages to images, then run pytesseract OCR.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/K-Dense-AI/scientific-agent-skills/HEAD/skills/pdf/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/pdf folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/k-dense-ai-pdf/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/pdf ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r scientific-agent-skills/skills/pdf ~/.claude/skills/ - Install Python deps:
pip install pypdf pdfplumber reportlab pandas openpyxl - Optional system tools for OCR/image extraction — macOS:
brew install poppler tesseract qpdf; Ubuntu:sudo apt install poppler-utils tesseract-ocr qpdf - Restart Claude Code and try a prompt like "extract the tables from this PDF".
View source on GitHub ↗License: MIT