Readable speakerdeck
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}.From its SKILL.md
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.
2 things 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.
- runs commandsInstructs the agent to run 3 commands, including `curl -L -o /tmp/slide.pdf "{PDF_URL}"` and 2 more.
SKILL.md
1.1 KB, 199 tokens by cl100k_base, 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.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.