Readable speakerdeck
Agent Skills for reading hard-to-access content
npx -y skills add yamadashy/agent-readable --skill readable-speakerdeckAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Fetches a SpeakerDeck slide deck by extracting the public PDF URL from the slide page (WebFetch), downloading it via curl, and running pdfvision — typically with --render on image-heavy pages so the slides can be read visually. Use when the URL is in the form speakerdeck.com/{user}/{slug}.
SKILL.md
1.1 KB, as published. Nobody here has run it
SpeakerDeck Slide Reader
Steps
1. Fetch page info with WebFetch
Use WebFetch to load the slide page and extract the PDF download URL.
- Form:
https://files.speakerdeck.com/presentations/{id}/{filename}.pdf
2. Download the PDF
curl -L -o /tmp/slide.pdf "{PDF_URL}"
3. Extract the PDF contents
Prefer pdfvision — slide decks are often image-heavy, and pdfvision's density Overview surfaces the pages where --render is needed for multimodal review:
npx pdfvision /tmp/slide.pdf
npx pdfvision /tmp/slide.pdf --render -p {pages-with-low-coverage}
If only a Claude Code-style multimodal Read tool is available, Read /tmp/slide.pdf also works.