Readable arxiv
Fetches an arXiv paper — metadata (title, authors, abstract) via WebFetch on the abs page, plus the full PDF via curl on arxiv.org/pdf and structured extraction by pdfvision. Use when the URL is in the form arxiv.org/abs/{paper_id}.From its SKILL.md
npx -y skills add yamadashy/agent-readable --skill readable-arxivAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 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/paper.pdf "https://arxiv.org/pdf/{paper_id}.pdf"` and 2 more.
- fetches URLsInstructs the agent to fetch 1 URL, including https://arxiv.org/pdf/{paper_id}.pdf.
SKILL.md
0.8 KB, 165 tokens by cl100k_base, as published. Nobody here has run it
arXiv Paper Reader
Steps
1. Fetch metadata with WebFetch
Use WebFetch to load the arXiv page and extract paper information.
- Title
- Authors
- Abstract
2. Download the PDF
curl -L -o /tmp/paper.pdf "https://arxiv.org/pdf/{paper_id}.pdf"
3. Extract the PDF contents
Prefer pdfvision — it reports per-page density and works in any agent runtime that can spawn a CLI:
npx pdfvision /tmp/paper.pdf
If only a Claude Code-style multimodal Read tool is available, Read /tmp/paper.pdf also works.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.