Skip to main content
ClaudeWave
Skill617 estrellas del repoactualizado 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.

Instalar en Claude Code
Copiar
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
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

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