processing-pdfs

Installation
SKILL.md

Processing PDFs Action

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)}")
Installs
21
GitHub Stars
5
First Seen
Mar 9, 2026
processing-pdfs — wizeline/sdlc-agents