PDF操作

Merge, split, convert, and extract text from PDFs using Python libraries.

Updated Mar 29, 2026
One-click install
npx skills add https://github.com/yut0takagi/claude-skills --skill pdf-yut0takagi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: PDF操作
Source: https://github.com/yut0takagi/claude-skills/tree/main/skills/PDF%E6%93%8D%E4%BD%9C
Command: npx skills add https://github.com/yut0takagi/claude-skills --skill pdf-yut0takagi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

PDFファイルの結合・分割・変換・テキスト抽出・圧縮など、PDFの操作を手作業で行う煩雑さを解消します。

Core Features & Use Cases

  • 自動的なPDFの結合・分割・形式変換・テキスト抽出・圧縮
  • ドキュメントワークフローでのPDF準備やデータ抽出、アーカイブ作業の効率化
  • Use Case: 複数の請求書を1つのPDFに統合し、本文テキストを抽出して検索可能にする

Quick Start

Use /PDF操作 draft/sample.pdf のテキストを抽出して to extract text from a sample PDF.

Frequently Asked Questions about PDF操作

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extract text from scanned PDF files?

PDF text extraction handles both native and scanned documents by combining pdfplumber and pytesseract OCR, yielding searchable text output ready for indexing, archiving, or downstream data processing workflows.

Can I merge multiple PDF documents into a single file?

Yes, you can merge multiple PDF documents into a single file using the pypdf library, which combines separate PDFs like individual invoices into one consolidated document for streamlined archiving.

What is the best way to split a large PDF into separate pages?

The best way to split a large PDF is using automated Python tools like pypdf, which divides multi-page documents into individual files or smaller segments without manual intervention or quality loss.

Does this PDF conversion approach work with Python libraries?

Yes, PDF conversion relies entirely on Python libraries including pypdf, pdfplumber, pdf2image, and reportlab, ensuring robust format transformation and document generation within automated Python workflows.

Why does PDF text extraction fail on image-based documents?

PDF text extraction fails on image-based documents when standard parsers cannot read scanned pages, but this Skill overcomes the limitation by applying pytesseract OCR to recognize and extract text from images.