Agent skill
pdf-processing
Extract text and tables from PDFs; use when PDFs, forms, or document extraction are mentioned.
Install this agent skill to your Project
npx add-skill https://github.com/BA-CalderonMorales/codex-cheat-sheet/tree/main/skills/pdf-processing
SKILL.md
PDF Processing
- Use pdfplumber to extract text.
- Install pdfplumber with
pip install pdfplumber. - Extract text per page:
python
import pdfplumber with pdfplumber.open("input.pdf") as pdf: text = "\n".join(page.extract_text() or "" for page in pdf.pages) - For form filling, pair with your form template or validation steps.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
form-filling
Guide PDF or web form filling; use when structured form completion is requested.
log-review
Inspect error logs quickly; use when log snippets or stack traces are mentioned.
project-management
Manage projects, tasks, and workflows with Codex; use when project planning, task tracking, or team coordination is mentioned.
versioning
release
multi-repo
Didn't find tool you were looking for?