The tool is clever, and the author deserves kudos for open-sourcing it. Here's a suggestion: In .claude/skills/split-pdf/SKILL.md, the splitting script uses PyPDF2.
from PyPDF2 import PdfReader, PdfWriter
And the fallback install is:
PyPDF2 has been officially deprecated and superseded by (the confusingly named) pypdf (same maintainer, drop-in replacement). The fix is two find-and-replace changes — the API is identical:
from pypdf import PdfReader, PdfWriter
No other changes needed.
The tool is clever, and the author deserves kudos for open-sourcing it. Here's a suggestion: In
.claude/skills/split-pdf/SKILL.md, the splitting script usesPyPDF2.And the fallback install is:
PyPDF2has been officially deprecated and superseded by (the confusingly named)pypdf(same maintainer, drop-in replacement). The fix is two find-and-replace changes — the API is identical:No other changes needed.