Files
home-manager/tests/modules/programs/antigravity-cli/skills/pdf-processing/SKILL.md
2026-06-05 11:39:28 -05:00

401 B

name, description
name description
pdf-processing Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.

PDF Processing

Quick start

Use pdfplumber to extract text from PDFs:

import pdfplumber

with pdfplumber.open("document.pdf") as pdf:
    text = pdf.pages[0].extract_text()