Installation
SKILL.md
PDF Processing Skill
When working with PDF files, follow these guidelines:
1. Reading & Extracting from PDFs
For text extraction:
# Extract all text
pdftotext input.pdf output.txt
# Extract specific pages
pdftotext -f 1 -l 10 input.pdf output.txt
# Preserve layout
pdftotext -layout input.pdf output.txt