📄
AutomationPython

PDF

by anthropics

PDF is an Automation skill for Claude Code, published by anthropics in skills.

168.6K stars20.1K forkson anthropics/skillsAdded 2026/08/13Repository updated 2026/08/07
agent-skills
Install in seconds
Install PDF
Copy PDF into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/anthropics/skills/tree/main/skills/pdf ~/.claude/skills/pdf

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/anthropics/skills.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/pdf/SKILL.md in anthropics/skills
Installs to
~/.claude/skills/pdf
Collection
One of 18 skills cataloged from this repository
Category
Automation1523 skills

What PDF does

PDF reads, merges, splits, rotates, and creates PDF documents, and extracts text, tables, and images, including OCR for scanned PDFs.

PDF is cataloged under Automation on DirSkills. PDF comes from a repository tagged agent-skills.

Documentation

README

PDF Processing Guide

Overview

This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.

Quick Start

from pypdf import PdfReader, PdfWriter

# Read a PDF
reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")

# Extract text
text = ""
for page in reader.pages:
    text += page.extract_text()

Python Libraries

pypdf - Basic Operations

This is the opening of the README. Read the full README on GitHub.

Frequently asked about PDF

  • What else does anthropics publish alongside PDF?

    PDF is one of 18 skills that DirSkills catalogs from anthropics/skills, the repository it ships in. Its siblings there include Algorithmic Art, Brand Guidelines and Canvas Design. Each one is a separate skill with its own page in this directory, installs the same way PDF does, and is maintained by anthropics in that same repository. The rest of the collection is listed on the anthropics/skills page.

  • How does PDF compare to other Automation skills?

    PDF ranks #9 by stars among the 1523 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of PDF against them. Open each page to compare what they document and how they install.

More from anthropics/skills

PDF is one of 18 skills cataloged on DirSkills from anthropics/skills.

See all 18 skills
🎨
3w ago

Algorithmic Art

Algorithmic Art creates original generative art using p5.js with seeded randomness and interactive parameter exploration. Use it when users request code-based art, flow fields, particle systems, or other algorithmic visualizations.
Frontend
168.6K20.1K
🎨
3w ago

Brand Guidelines

Brand Guidelines applies Anthropic's official brand colors and typography to artifacts that benefit from the company's look-and-feel. Use it when brand colors, style guidelines, visual formatting, or company design standards apply.
Frontend
168.6K20.1K
🎨
3w ago

Canvas Design

Canvas Design creates original visual art in .png and .pdf documents guided by design philosophy. Use it when asked to create posters, art pieces, or other static designs, never copying existing artists' work to avoid copyright violations.
Frontend
168.6K20.1K
🤖
3w ago

Claude API

Claude API provides reference documentation for the Anthropic SDK, covering model IDs, pricing, parameters, streaming, tool use, MCP, agents, caching, token counting, and model migration. Use it before writing Claude integration code or when asked about Claude/Anthropic APIs, models, or limits.
AI Engineering
168.6K20.1K
📝
3w ago

Doc Co-Authoring

Doc Co-Authoring guides users through a structured workflow for co-authoring documentation, from context gathering and iterative refinement to reader testing. Use it when writing proposals, technical specs, decision docs, or similar structured content.
Writing
168.6K20.1K
🎨
3w ago

Frontend Design

Frontend Design guides distinctive, intentional visual design for building new UI or reshaping existing ones, including aesthetic direction, typography, and avoiding templated defaults. Use it when you need deliberate, non-generic visual choices for a frontend.
Frontend
168.6K20.1K