pdf

Installation
SKILL.md

PDF Processing Skill

Overview

This skill enables comprehensive PDF operations through Python libraries and command-line tools. Use it for reading, creating, modifying, and analyzing PDF documents.

Quick Start

from pypdf import PdfReader

reader = PdfReader("document.pdf")
for page in reader.pages:
    text = page.extract_text()
    print(text)

When to Use

Installs
17
GitHub Stars
11
First Seen
Jan 24, 2026
pdf — vamseeachanta/workspace-hub