Logo
Agent Skills
  • Skills
  • Category
  • Publishers
  • Cookbook
  • Blog
Logo
Agent Skills
SkillsDocument Skillspdf
Featuredpython

pdf

by Anthropic•Document Skills

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms

920downloads
85stars
~520tokens

Quick Install

One command to add this skill

Terminal
$ mkdir -p ~/.claude/skills/pdf && curl -L https://raw.githubusercontent.com/anthropics/skills/main/skills/pdf/SKILL.md > ~/.claude/skills/pdf/SKILL.md

Instructions

SKILL.md

Back

Prerequisites

  • Python 3.8+
  • PyPDF2
  • pdfplumber

Security & Permissions

2 permissions required

  • No network access required
  • Can modify files on disk
  • Executes shell commands

Details

Published
2026/01/09
Language
python
Token Est.
~520

Resources

  • GitHub Repository

Tags

pdfdocumentextractmerge
Logo
Agent Skills

Discover and download skills for Claude Code and other AI agents

GitHub
Skills
  • Category
  • Publishers
  • Cookbook
Resources
  • Blog
  • GitHub
Legal
  • Privacy Policy
  • Terms of Service
Copyright © 2026 All Rights Reserved.

PDF Skill

Comprehensive PDF manipulation toolkit for all your PDF processing needs.

Features

  • Text Extraction: Extract text content from PDF files with layout preservation
  • Table Extraction: Identify and extract tables as structured data
  • Create PDFs: Generate new PDF documents programmatically
  • Merge/Split: Combine multiple PDFs or split into separate files
  • Form Handling: Fill, read, and manipulate PDF forms

Usage

import PyPDF2

with open('document.pdf', 'rb') as file:
    reader = PyPDF2.PdfReader(file)
    for page in reader.pages:
        print(page.extract_text())

Installation

pip install PyPDF2 pdfplumber