Install
$ agentstack add skill-davila7-claude-with-skills-pdf-toolkit ✓ 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.
About
Process PDF files using the bundled scripts.
Capabilities
- Text extraction: read text content from any PDF page or page range → see [extraction guide](references/extraction.md) for multi-column layouts, page ranges, table extraction, and OCR limitations
- Form filling: fill PDF form fields programmatically and flatten the result → see [forms guide](references/forms.md) for listing fields, setting values, checkboxes, radio buttons, and flattening
- Merging and splitting: combine multiple PDFs, reorder pages, add bookmarks, or split into individual pages → see [merging guide](references/merging.md) for all merge and split operations
Quick reference
| Task | Command | |------|---------| | Extract all text | python3 ${CLAUDE_SKILL_DIR}/scripts/extract.py | | Extract page range | python3 ${CLAUDE_SKILL_DIR}/scripts/extract.py --pages 2-5 | | Fill form | python3 ${CLAUDE_SKILL_DIR}/scripts/fill_form.py field=value ... | | Merge PDFs | python3 ${CLAUDE_SKILL_DIR}/scripts/merge.py ... |
Instructions
- Identify which operation the user needs: extraction, form filling, or merging/splitting.
- Read the relevant reference file for detailed instructions and edge case handling.
- Run the appropriate script from
${CLAUDE_SKILL_DIR}/scripts/. - If a required library (
pypdf,pdfplumber) is not installed, offer to install it withpip installbefore retrying. - Report the output file path or print the extracted text to the user.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: davila7
- Source: davila7/claude-with-skills
- License: MIT
- Homepage: https://claude-with-skills.vercel.app
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.