Claude Code Plugins

Community-maintained marketplace

Feedback

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

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name pdf-processing
description Extract text and tables from PDF files, fill PDF forms, and merge multiple PDFs. Use when working with PDF documents or when the user mentions PDFs, forms, or document extraction.
license Apache-2.0
metadata [object Object]

PDF Processing

When to use this skill

Use this skill when the user needs to work with PDF files, including:

  • Extracting text or tables from PDF documents
  • Filling out PDF forms programmatically
  • Merging multiple PDF files into one
  • Splitting PDF files into separate documents

How to extract text

  1. Use pdfplumber for text extraction:
    import pdfplumber
    with pdfplumber.open('document.pdf') as pdf:
        text = pdf.pages[0].extract_text()
    

How to fill forms

  1. Use PyPDF2 to fill form fields:
    from PyPDF2 import PdfReader, PdfWriter
    reader = PdfReader('form.pdf')
    writer = PdfWriter()
    # Fill fields here
    

How to merge documents

See the reference guide for details.