Readable arxiv
Agent Skills for reading hard-to-access content
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.
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 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}.
SKILL.md
0.8 KB, 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.