PDFファイルを操作する際はこのスキルを使用してください。PDFからのテキストや表の抽出、複数のPDFの統合、PDFの分割、ページの回転、透かしの追加、新規PDFの作成、PDF フォームへの入力、PDFの暗号化・復号化、画像の抽出、スキャンPDFのOCR処理などが可能です。ユーザーが.pdfファイルについて言及したり、PDF出力をリクエストしたりした場合は、このスキルを活用してください。
description の原文を見る
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.
SKILL.md 本文
PDF処理ガイド
概要
本ガイドでは、Pythonライブラリとコマンドラインツールを使用した基本的なPDF処理操作について説明します。高度な機能、JavaScriptライブラリ、詳細な例については、REFERENCE.md を参照してください。PDFフォームに入力する必要がある場合は、FORMS.md を読み、その指示に従ってください。
クイックスタート
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ライブラリ
pypdf - 基本操作
PDFのマージ
from pypdf import PdfWriter, PdfReader
writer = PdfWriter()
for pdf_file in ["doc1.pdf", "doc2.pdf", "doc3.pdf"]:
reader =
...
詳細情報
- 作者
- anthropics
- リポジトリ
- anthropics/skills
- ライセンス
- 不明
- 最終更新
- 2026/5/9
Source: https://github.com/anthropics/skills / ライセンス: 未指定