用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/taracodlabs/aiden --skill nano-pdf命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | nano-pdf |
| description | Edit PDFs with natural-language instructions using the nano-pdf CLI tool |
| category | productivity |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | pdf, edit, merge, split, compress, redact, nano-pdf, cli, document, watermark |
Use the nano-pdf CLI to perform common PDF operations — merge, split, compress, add watermarks, redact text, and more — via simple natural-language or flag-based commands.
pip install nano-pdf
# Verify installation
nano-pdf --version
nano-pdf merge report1.pdf report2.pdf appendix.pdf --output merged.pdf
# Split every page into a separate file
nano-pdf split document.pdf --output ./pages/
# Split a specific range into a new file
nano-pdf split document.pdf --pages 1-5 --output extract.pdf
# Default compression
nano-pdf compress large_file.pdf --output compressed.pdf
# Aggressive compression (lower image quality)
nano-pdf compress large_file.pdf --level high --output compressed.pdf
nano-pdf watermark input.pdf --text "CONFIDENTIAL" --output watermarked.pdf
# Custom font size and opacity
nano-pdf watermark input.pdf --text "DRAFT" --size 60 --opacity 0.3 --output draft.pdf
nano-pdf number input.pdf --position bottom-right --output numbered.pdf
# Remove pages 3 and 7 from a 10-page PDF
nano-pdf remove input.pdf --pages 3,7 --output trimmed.pdf
# Rotate all pages 90 degrees clockwise
nano-pdf rotate input.pdf --degrees 90 --output rotated.pdf
# Rotate only page 2
nano-pdf rotate input.pdf --degrees 180 --pages 2 --output rotated.pdf
nano-pdf extract-images input.pdf --output ./images/
"Merge contract.pdf and appendix.pdf into one file"
→ Use step 2: nano-pdf merge contract.pdf appendix.pdf --output final_contract.pdf
"Compress this 50MB report so I can email it"
→ Use step 4 with --level high to aggressively reduce size.
"Split the quarterly report — I only need pages 10 to 15"
→ Use step 3 with --pages 10-15.
--level high) reduces image resolution — not suitable for print-quality outputpip show nano-pdf)