— No reviews yet
0 installs
12 views
0.0% view→install
Install
$ agentstack add skill-ericwang915-pythonclaw-pdf-merge ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Pdf Merge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
PDF Merge Skill
Merge multiple PDF files into one combined document using PyPDF2.
When to Use
✅ USE this skill when:
- "Merge these PDFs together"
- "Combine report1.pdf and report2.pdf"
- "Join all PDFs in this folder"
- "Append this PDF to the end of another"
- User wants to create a single PDF from multiple source PDFs
When NOT to Use
❌ DON'T use this skill when:
- Splitting a single PDF → use
pdf_split - Creating a PDF from text → use
pdf_writer - Extracting text from PDF → use
pdf_reader - Converting PDF to images → use
pdf_convert
Usage/Commands
python {skill_path}/merge_pdf.py OUTPUT_PATH INPUT1 INPUT2 [INPUT3 ...] [options]
Options:
--pages "1:1-3,2:5-10"— select specific pages per input file (1-indexed, fileindex:pagerange)--dir PATH— merge all PDFs in a directory (alphabetical order)--reverse— reverse the input order--format json— output result as JSON
Examples
- "Merge a.pdf and b.pdf" →
python {skill_path}/merge_pdf.py combined.pdf a.pdf b.pdf - "Merge all PDFs in reports/" →
python {skill_path}/merge_pdf.py combined.pdf --dir reports/ - "Combine only pages 1-3 of first and 5-10 of second" →
python {skill_path}/merge_pdf.py out.pdf a.pdf b.pdf --pages "1:1-3,2:5-10"
Notes
- Install dependency:
pip install PyPDF2 - Input files must be valid PDFs
- Preserves bookmarks and links when possible
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ericwang915
- Source: ericwang915/PythonClaw
- License: MIT
- Homepage: https://github.com/ericwang915/PythonClaw
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.