arxiv
Fetch and summarize arXiv papers. Search by topic, read specific papers by ID or URL, and get plain-language summaries. Use when the user mentions arXiv, asks about research papers, wants to find recent academic work on a topic, or is discussing algorithmic or architectural choices that could benefit from literature review.
npx skills add majiayu000/claude-skill-registry --skill arxiv-ecto-dotfiles-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# arXiv Fetch, search, and summarize academic papers from arXiv. ## Usage - `/arxiv <query>` - Search for recent papers on a topic - `/arxiv 2401.12345` - Fetch a specific paper by ID - `/arxiv https://arxiv.org/abs/2401.12345` - Fetch a paper by URL ## Workflow ### Search by Topic 1. Use the arXiv API to search for papers: ``` https://export.arxiv.org/api/query?search_query=all:{query}&start=0&max_results=10&sortBy=submittedDate&sortOrder=descending ``` 2. Parse the Atom XML response to extract: title, authors, abstract, published date, arxiv ID, categories 3. Present results in a scannable format ### Fetch Specific Paper When given an arXiv ID (e.g., `2401.12345`) or URL: 1. Extract the ID from the input - URL formats: `arxiv.org/abs/XXXX.XXXXX`, `arxiv.org/pdf/XXXX.XXXXX` - Raw ID: `XXXX.XXXXX` or `XXXX.XXXXXvN` 2. Fetch the abstract page: ``` https://export.arxiv.org/api/query?id_list={id} ``` 3. Parse and present the paper details ### Read Full Paper (HTML) Many recent papers have HTML versions available: ``` https://arxiv.org/html/{id} ``` If the user asks to "read" or "summarize the full paper", try fetching the HTML version first. If unavailable, note that only the abstract
- Usage
- Workflow
- Search by Topic
- Fetch Specific Paper
- Read Full Paper (HTML)
- Output Formats
- Search Results
- Single Paper
- API Notes
- Examples
What does the arxiv skill do?
Fetch and summarize arXiv papers. Search by topic, read specific papers by ID or URL, and get plain-language summaries. Use when the user mentions arXiv, asks about research papers, wants to find recent academic work on a topic, or is discussing algorithmic or architectural choices that could benefit from literature review.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill arxiv-ecto-dotfiles-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
