ワンクリックで
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