원클릭으로
nano-pdf
Lightweight PDF text extraction and page manipulation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Lightweight PDF text extraction and page manipulation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create new Kirie skills interactively. Use when learning something new that should become a reusable skill.
Retrieve secrets from 1Password vaults via the CLI
Create and search Apple Notes via AppleScript
Create and manage Apple Reminders via AppleScript
Create and search notes in Bear on macOS
Monitor RSS feeds and blogs for new posts
| name | nano-pdf |
| description | Lightweight PDF text extraction and page manipulation |
| emoji | 📑 |
| version | 1.0.0 |
| requires | {"bins":["pdftotext"],"anyBins":["pdftk","qpdf"]} |
| invocation | {"userInvocable":true} |
Lightweight PDF processing focused on fast text extraction and basic page manipulation. Unlike the pdf-editor skill which handles full PDF editing, this skill is optimized for quick read-only operations: pulling text out of PDFs, inspecting metadata, and simple split/merge tasks.
Uses pdftotext (from poppler-utils) for text extraction and pdftk or qpdf for page manipulation.
pdftotext input.pdf - (outputs to stdout)pdftotext -f 5 -l 10 input.pdf - (pages 5-10)pdftotext -layout input.pdf -pdftotext -raw input.pdf -pdfinfo input.pdf (page count, title, author, creation date)pdftk input.pdf burst output page_%02d.pdfpdftk input.pdf cat 1-5 output first5.pdfpdftk a.pdf b.pdf c.pdf cat output merged.pdfqpdf input.pdf --pages . 1-5 -- output.pdfqpdf --empty --pages a.pdf b.pdf c.pdf -- merged.pdfpdftoppm -png -f 3 -l 3 input.pdf page3 (produces page3-3.png)Install poppler-utils (provides pdftotext, pdfinfo, pdftoppm) and one of pdftk or qpdf:
brew install poppler
brew install pdftk-java # or: brew install qpdf
sudo apt install poppler-utils
sudo apt install pdftk # or: sudo apt install qpdf