Skip to main content
ClaudeWave
Skill617 repo starsupdated 3d ago

pdf-processor

The pdf-processor skill enables extraction of text and tabular data from PDF files, form population, and document merging using pdfplumber and related tools. Use this skill when tasks involve reading PDF content, extracting structured data from tables, filling form fields, or combining multiple PDF documents.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/lofcz/LLMTornado /tmp/pdf-processor && cp -r /tmp/pdf-processor/src/LlmTornado.Tests/Static/Files/Skills/pdf-processor ~/.claude/skills/pdf-processor
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# PDF Processing

## Quick start

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

## Advanced features

**Form filling**: See [FORMS.md](FORMS.md) for complete guide
**API reference**: See [REFERENCE.md](REFERENCE.md) for all methods
**Examples**: See [EXAMPLES.md](EXAMPLES.md) for common patterns