Agent Skills: PDF Processing

Extracts text and tables from PDF files, fills forms, and merges documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.

UncategorizedID: lofcz/LLMTornado/pdf-processor

Install this agent skill to your local

pnpm dlx add-skill https://github.com/lofcz/LLMTornado/tree/HEAD/src/LlmTornado.Demo/Static/Files/Skills/pdf-processor

Skill Files

Browse the full folder contents for pdf-processor.

Download Skill

Loading file tree…

src/LlmTornado.Demo/Static/Files/Skills/pdf-processor/SKILL.md

Skill Metadata

Name
pdf-processor
Description
Extracts text and tables from PDF files, fills forms, and merges documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.

PDF Processing

Quick start

Extract text with pdfplumber:

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

Advanced features

Form filling: See FORMS.md for complete guide API reference: See REFERENCE.md for all methods Examples: See EXAMPLES.md for common patterns