# PDF Processing

> Extract text and tables from PDFs, fill forms, merge documents. Use when working with PDF files, forms, or document extraction.

- Skill: `ever-just/pdf-processing` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add ever-just/pdf-processing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ever-just/pdf-processing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: ever-just (https://skillmd.com/u/ever-just)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ever-just/pdf-processing

---

# PDF Processing

See [docs/INDEX.md](docs/INDEX.md) for complete instructions.

## Quick Start

Extract text:
```python
import pdfplumber
with pdfplumber.open("file.pdf") as pdf:
    text = pdf.pages[0].extract_text()
```


