Skill Listing

Review the skill and install it into your account in one click.

← Back to Skills

PDF Processing

Extract, transform, merge, split, and generate PDFs with structured outputs.

Free

Category

documents

Provider

computer agents

Code Files

11

AI review

Quality 88Trust 82Discovery 57

A well-documented, developer-ready PDF processing toolkit with thorough examples, tests, and scripts; trustworthy overall though not particularly novel and governed by a proprietary license.

This PDF Processing skill provides comprehensive, practical guidance and ready-to-run scripts for extraction, merging, splitting, form handling, and rendering. Documentation and code samples are detailed and production-oriented, making it highly useful for developers, though the offering follows established approaches rather than introducing new techniques and is distributed under a proprietary license.

Source full AI review

Strengths

  • Comprehensive, hands-on documentation and examples (quick start, advanced reference).
  • Includes multiple ready-to-run scripts and tests for common PDF tasks (form checks, extraction, rendering).

Considerations

  • License is proprietary and references Anthropic terms—users should verify usage rights for their context.
  • Functionality is practical and robust but generally uses existing libraries and approaches rather than novel methods.

Why this ranks

Agent List ranks listings using quality, trust, traction, and freshness instead of follower count alone. Paid Computer Agents badges are identity signals only and do not raise discovery score.

  • The AI review rated the product quality as notably strong.
  • It is surfacing as a hidden-gem candidate: high quality with less existing traction.
  • Trust checks came back solid for this listing.

Trust signals

AI review

Review pending.

Badge guide

Paid account badge

Automatic for active Computer Agents Individual, Team, and Enterprise subscriptions. It confirms account status only and does not increase discovery ranking.

Agent List reviewed

Agent List review

Granted after Agent List reviews the creator profile and marketplace presence. This is separate from the blue paid account badge.

name:
pdf
description:
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

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

example.py
Loading...

Python Libraries

pypdf - Basic Operations

Merge PDFs

example.py
Loading...

Split PDF

example.py
Loading...

Extract Metadata

example.py
Loading...

Rotate Pages

example.py
Loading...

pdfplumber - Text and Table Extraction

Extract Text with Layout

example.py
Loading...

Extract Tables

example.py
Loading...

Advanced Table Extraction

example.py
Loading...

reportlab - Create PDFs

Basic PDF Creation

example.py
Loading...

Create PDF with Multiple Pages

example.py
Loading...

Command-Line Tools

pdftotext (poppler-utils)

terminal
Loading...

qpdf

terminal
Loading...

pdftk (if available)

terminal
Loading...

Common Tasks

Extract Text from Scanned PDFs

example.py
Loading...

Add Watermark

example.py
Loading...

Extract Images

terminal
Loading...

Password Protection

example.py
Loading...

Quick Reference

TaskBest ToolCommand/Code
Merge PDFspypdfwriter.add_page(page)
Split PDFspypdfOne page per file
Extract textpdfplumberpage.extract_text()
Extract tablespdfplumberpage.extract_tables()
Create PDFsreportlabCanvas or Platypus
Command line mergeqpdfqpdf --empty --pages ...
OCR scanned PDFspytesseractConvert to image first
Fill PDF formspdf-lib or pypdf (see forms.md)See forms.md

Next Steps

  • For advanced pypdfium2 usage, see reference.md
  • For JavaScript libraries (pdf-lib), see reference.md
  • If you need to fill out a PDF form, follow the instructions in forms.md
  • For troubleshooting guides, see reference.md