원클릭으로
Read and extract text from .pdf files, page by page. Use when the user uploads or references a PDF to read or summarize.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read and extract text from .pdf files, page by page. Use when the user uploads or references a PDF to read or summarize.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create and edit presentation decks as single self-contained HTML files with a live, editable preview and print-to-PDF export. Use when the user wants slides, a deck, or a presentation.
Render any text file (HTML, markdown, config, SQL, email) from a mustache template plus JSON data. Use when an output's shape is fixed ahead of time and only the values change.
Read and extract text, tables, and structure from .docx Word documents. Use when the user uploads or references a Word file to read or summarize.
Read and inspect existing .pptx PowerPoint files (text, speaker notes, slide images). Use only for reading uploaded PowerPoint files — to AUTHOR a deck use the slides skill instead.
Read and extract cell data from .xlsx Excel spreadsheets as TSV. Use when the user uploads or references an Excel file to read or summarize.
Route a file to the right reader by extension (pptx, docx, xlsx, pdf, and plain text). Use as the entry point when asked to read or summarize an uploaded file of unknown type.
| name | |
| description | Read and extract text from .pdf files, page by page. Use when the user uploads or references a PDF to read or summarize. |
Use this skill to read text from .pdf files.
Print text content from a .pdf, page by page.
python org/public/core/pdf/extract.py <path-to-file.pdf>
Output is plain text with --- page N --- separators. PDFs that are pure
scans (image-only, no embedded text layer) will produce empty pages — OCR is
not performed.
For metadata, structure, splitting, merging, or filling forms, import pypdf
directly. The library is preinstalled.
from pypdf import PdfReader
reader = PdfReader("/path/to/file.pdf")
for page in reader.pages:
text = page.extract_text()