pdf-reader
Installation
SKILL.md
PDF Reader
Tools for reading, extracting, and manipulating PDF files.
Extract text from PDF
# Using pdftotext (poppler-utils) if available
pdftotext input.pdf output.txt
# Using python with PyPDF2
python3 -c "
import PyPDF2