一键导入
Extract and analyze text from PDF files, read PDF content, process PDF documents. Use when user wants to read, analyze, or extract information from PDF files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Extract and analyze text from PDF files, read PDF content, process PDF documents. Use when user wants to read, analyze, or extract information from PDF files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | |
| description | Extract and analyze text from PDF files, read PDF content, process PDF documents. Use when user wants to read, analyze, or extract information from PDF files. |
This skill helps you work with PDF files by extracting and analyzing their content, with built-in support for handling large files.
Use this skill when:
This skill uses Python with the PyPDF2 library to:
These limits prevent "PDF too large" errors while still providing useful content.
# Read PDF (first 20 pages, max 50k chars)
python pdf_reader.py document.pdf
# Show only PDF structure and page overview (for large PDFs)
python pdf_reader.py document.pdf --summary
# Read specific page range
python pdf_reader.py document.pdf --start 5 --end 10
# Read with higher character limit
python pdf_reader.py document.pdf --max-chars 100000
For large PDFs, use this workflow:
--summary to see the PDF structure--start and --endMake sure you have Python and PyPDF2 installed:
pip install PyPDF2