One-click install
npx skills add https://github.com/GrilledSword/claude-office-skills --skill pdf-grilledsword
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pdf
Source: https://github.com/GrilledSword/claude-office-skills/tree/main/public/pdf
Command: npx skills add https://github.com/GrilledSword/claude-office-skills --skill pdf-grilledsword

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pypdf, pdfplumber, reportlab, pytesseract, pdf2image, Pillow, pypdfium2, and includes scripts (resource) components.

What problem does it solve?

This Skill eliminates the manual, repetitive, and often frustrating tasks associated with PDF processing, such as filling out forms, extracting data, and manipulating documents at scale.

Core Features & Use Cases

  • Automated Form Filling: Programmatically fill both fillable and non-fillable PDF forms with high precision, saving hours of data entry.
  • Intelligent Data Extraction: Extract text, structured tables, and metadata from any PDF document for analysis or integration into other systems.
  • Comprehensive Document Manipulation: Merge, split, rotate, and create new PDF documents, streamlining document workflows.
  • Use Case: Imagine you receive hundreds of application forms in PDF format each week. This Skill can automatically extract key applicant data, fill out internal processing forms, and organize documents, freeing your team from repetitive data entry.

Quick Start

Example: Extracting text from a PDF

from pypdf import PdfReader reader = PdfReader("document.pdf") print(f"Pages: {len(reader.pages)}") text = "" for page in reader.pages: text += page.extract_text() print(text)