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.