con un clic
nano-pdf
Edit PDFs with natural-language instructions using the nano-pdf CLI tool
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Edit PDFs with natural-language instructions using the nano-pdf CLI tool
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Docker containers, images, volumes, networks (CLI + Dockerode)
Search and download arXiv papers (no API key needed)
Delegate coding and file edits to Anthropic Claude Code CLI
Read/write Windows clipboard text, HTML, images, history (PowerShell)
Running scripts and code on Windows
Delegate coding tasks to OpenAI Codex CLI
| 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 |
| metadata | {"aiden":{"required_binaries":[{"name":"nano-pdf","help":"Install the nano-pdf CLI — npm i -g nano-pdf"}]}} |
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)