Install
openclaw skills install nested-pdf-mergerUse this skill when the task is to merge PDFs from a nested directory tree into a single PDF with hierarchical bookmarks by invoking the external `nestedpdfm...
openclaw skills install nested-pdf-mergerThis repository wraps the external nestedpdfmerger CLI.
Do not implement PDF merging logic in this repository.
Do not modify anything under reference/.
This skill requires the nestedpdfmerger command to be installed and available on PATH.
Expected installation command:
pip install nestedpdfmerger
Expected CLI entrypoint:
nestedpdfmerger INPUT_DIR -o OUTPUT.pdf [options]
Alternative module invocation:
python -m nestedpdfmerger INPUT_DIR -o OUTPUT.pdf [options]
Use this skill when the user wants to:
--dry-run.--dry-run first when the user wants to validate merge order.pip install nestedpdfmerger.-o, --output PATH--sort {natural,alpha,mtime}--reverse--exclude NAME [NAME ...]--exclude-hidden--no-bookmarks--dry-run--strict--verbose--quiet--versionPreview merge order:
nestedpdfmerger ./reports --dry-run
Merge with explicit output:
nestedpdfmerger ./reports --output merged.pdf
Merge while excluding folders:
nestedpdfmerger ./reports --output merged.pdf --exclude Backup Data