# Read Arxiv Paper

> Fetch and summarize academic papers from arxiv.org. Use for arxiv.org paper URLs (e.g. arxiv.org/abs/...). Triggers include 'read/summarize this arxiv paper', 'read paper', 'summarize paper'. Note — arxiv URLs must use this skill, NOT summarizenews.

- Skill: `qualcomm/read-arxiv-paper` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add qualcomm/read-arxiv-paper`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qualcomm/read-arxiv-paper/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: qualcomm (https://skillmd.com/u/qualcomm)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/qualcomm/read-arxiv-paper

---


# arXiv Paper Reader

## Instructions

Given an arXiv URL, you MUST call the `exec` tool immediately. Do NOT describe the steps — just call the tool.

**Step 1**: Extract the arxiv ID from the URL (e.g. from `https://arxiv.org/abs/1706.03762` → ID is `1706.03762`).

**Step 2**: Call `exec` with this exact command (replace `{arxiv_id}` with the actual ID):

```
python ${SKILL_DIR}/scripts/fetch_arxiv.py {arxiv_id}
```

**Step 3**: Use the script output as the paper content and produce a summary covering: title/authors, problem, contributions, method, results, takeaways.

## Example

User: Please read this paper https://arxiv.org/abs/1706.03762

You MUST call exec immediately:
<tool_call>
{"name": "exec", "arguments": {"command": "python ${SKILL_DIR}/scripts/fetch_arxiv.py 1706.03762"}}
</tool_call>

