Agent skill

pdf-processing

Extract text and tables from PDFs; use when PDFs, forms, or document extraction are mentioned.

Stars 14
Forks 0

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.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results