一键导入
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 页面并帮你完成安装。
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
基于 SOC 职业分类
| 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