
- 1 installs
- 48 repo stars
- Updated July 31, 2026
- lwmxiaobei/xbcode
Helps with ai & agent building tasks.
About
pdf is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- AI & Agent Building
- AI-coding skill
Pdf by the numbers
- 1 all-time installs (skills.sh)
- Ranked #14,102 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/lwmxiaobei/xbcode --skill pdfAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 48 |
| Last updated | July 31, 2026 |
| Repository | lwmxiaobei/xbcode ↗ |
What it does
Helps with ai & agent building tasks.
Files
PDF Processing
To work with PDF files:
1. Use bash to check if pdftotext is available: which pdftotext 2. If not installed, suggest: brew install poppler (macOS) or apt install poppler-utils (Linux) 3. Extract text: pdftotext input.pdf - (outputs to stdout) 4. For structured extraction: pdftotext -layout input.pdf - 5. For page-specific extraction: pdftotext -f 1 -l 5 input.pdf - (pages 1-5)
For PDF metadata: pdfinfo input.pdf For PDF to images: pdftoppm -png input.pdf output_prefix