— No reviews yet
0 installs
12 views
0.0% view→install
Install
$ agentstack add skill-ericwang915-pythonclaw-pdf-reader ✓ 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 Reader? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
PDF Reader Skill
Extract text and metadata from PDF files using PyPDF2.
When to Use
✅ USE this skill when:
- "Read this PDF"
- "Extract pages 2-4 from report.pdf"
- "What's in this PDF?"
- "Get PDF metadata"
- User wants to read or summarize content from a PDF
When NOT to Use
❌ DON'T use this skill when:
- Scanned/image PDFs (no embedded text) → use OCR tools
- PDF editing or creating → use PDF manipulation libraries
- Extracting images or embedded media → use specialized PDF tools
Usage/Commands
python {skill_path}/read_pdf.py PATH_TO_PDF [options]
Options:
--pages 1-5— extract only specific pages (1-indexed, supports ranges)--metadata— include PDF metadata (author, title, creation date)--format json— output as JSON--summary— show page count and character count overview only
Examples
- "Read this PDF" →
python {skill_path}/read_pdf.py document.pdf - "Extract pages 2-4 from report.pdf" →
python {skill_path}/read_pdf.py report.pdf --pages 2-4 - "What's in this PDF?" →
python {skill_path}/read_pdf.py file.pdf --summary - "Get PDF metadata" →
python {skill_path}/read_pdf.py file.pdf --metadata
Notes
- Install dependency:
pip install PyPDF2 - Works best with PDFs that have embedded text (not scanned images)
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.