From claude-resources
Combines multiple PDF files into a single PDF: directories sorted alphabetically by filename, explicit paths preserve provided order. Uses PyMuPDF.
npx claudepluginhub takazudo/claude-resourcesThis skill uses the workspace's default tool permissions.
Combine multiple PDF files into a single PDF document.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Combine multiple PDF files into a single PDF document.
The user can specify:
$HOME/.claude/skills/pdf-combine/scripts/combine_pdfs.pypip install PyMuPDFRun the combine script:
python3 $HOME/.claude/skills/pdf-combine/scripts/combine_pdfs.py <input1.pdf> <input2.pdf> ... -o <output.pdf>
Or for a directory:
python3 $HOME/.claude/skills/pdf-combine/scripts/combine_pdfs.py <directory> -o <output.pdf>
Report the results to the user (number of files combined, total pages, output location)
python3 $HOME/.claude/skills/pdf-combine/scripts/combine_pdfs.py \
chapter1.pdf chapter2.pdf chapter3.pdf \
-o book.pdf
python3 $HOME/.claude/skills/pdf-combine/scripts/combine_pdfs.py \
./documents/ \
-o combined.pdf