--- name: pdf-processing description: Extract PDF text, fill forms, merge files. Use when handling PDFs. license: Apache-2.0 compatibility: Requires Python 3.12+ with installed. Needs network access. metadata: author: example-org version: "1.0" --- # Skill Title ## When to use Use this skill when... ## Workflow 1. ... ## Examples ... You can define code to use for tasks like so: ## Extract PDF text Use pdfplumber for text extraction. For scanned documents, fall back to pdf2image with pytesseract. ```python import pdfplumber with pdfplumber.open("file.pdf") as pdf: text = pdf.pages[0].extract_text() ```