$npx -y skills add adityahimaone/hermes-agent-rtk-caveman --skill nano-pdfEdit PDFs with natural-language instructions using the nano-pdf CLI. Modify text, fix typos, update titles, and make content changes to specific pages without manual editing.
| 1 | # nano-pdf |
| 2 | |
| 3 | Edit PDFs using natural-language instructions. Point it at a page and describe what to change. |
| 4 | |
| 5 | ## Prerequisites |
| 6 | |
| 7 | ```bash |
| 8 | # Install with uv (recommended — already available in Hermes) |
| 9 | uv pip install nano-pdf |
| 10 | |
| 11 | # Or with pip |
| 12 | pip install nano-pdf |
| 13 | ``` |
| 14 | |
| 15 | ## Usage |
| 16 | |
| 17 | ```bash |
| 18 | nano-pdf edit <file.pdf> <page_number> "<instruction>" |
| 19 | ``` |
| 20 | |
| 21 | ## Examples |
| 22 | |
| 23 | ```bash |
| 24 | # Change a title on page 1 |
| 25 | nano-pdf edit deck.pdf 1 "Change the title to 'Q3 Results' and fix the typo in the subtitle" |
| 26 | |
| 27 | # Update a date on a specific page |
| 28 | nano-pdf edit report.pdf 3 "Update the date from January to February 2026" |
| 29 | |
| 30 | # Fix content |
| 31 | nano-pdf edit contract.pdf 2 "Change the client name from 'Acme Corp' to 'Acme Industries'" |
| 32 | ``` |
| 33 | |
| 34 | ## Notes |
| 35 | |
| 36 | - Page numbers may be 0-based or 1-based depending on version — if the edit hits the wrong page, retry with ±1 |
| 37 | - Always verify the output PDF after editing (use `read_file` to check file size, or open it) |
| 38 | - The tool uses an LLM under the hood — requires an API key (check `nano-pdf --help` for config) |
| 39 | - Works well for text changes; complex layout modifications may need a different approach |