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}.

yamadashy a7fca84 865 B Updated

File contents

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.

yamadashy/agent-readable/tree/main/skills/readable-arxiv commit a7fca8477c

Frequently asked questions

npx skillmds@latest add yamadashy/readable-arxiv