Claude-skill-registry 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.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/arxiv" ~/.claude/skills/majiayu000-claude-skill-registry-arxiv && rm -rf "$T"
manifest:
skills/data/arxiv/SKILL.mdsource content
arXiv
Fetch, search, and summarize academic papers from arXiv.
Usage
- Search for recent papers on a topic/arxiv <query>
- Fetch a specific paper by ID/arxiv 2401.12345
- Fetch a paper by URL/arxiv https://arxiv.org/abs/2401.12345
Workflow
Search by Topic
- 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 - Parse the Atom XML response to extract: title, authors, abstract, published date, arxiv ID, categories
- Present results in a scannable format
Fetch Specific Paper
When given an arXiv ID (e.g.,
2401.12345) or URL:
- Extract the ID from the input
- URL formats:
,arxiv.org/abs/XXXX.XXXXXarxiv.org/pdf/XXXX.XXXXX - Raw ID:
orXXXX.XXXXXXXXX.XXXXXvN
- URL formats:
- Fetch the abstract page:
https://export.arxiv.org/api/query?id_list={id} - 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 is accessible and summarize from that.
Output Formats
Search Results
ARXIV SEARCH: {query} ═══════════════════════════════════════════════════════════════════ 1. {Title} {Authors (first 3, et al. if more)} {Date} · {Primary category} {2-3 sentence plain-language summary of the abstract} https://arxiv.org/abs/{id} 2. {Title} ... ═══════════════════════════════════════════════════════════════════
Single Paper
{Title} ═══════════════════════════════════════════════════════════════════ Authors: {Full author list} Published: {Date} Categories: {categories} URL: https://arxiv.org/abs/{id} ABSTRACT ─────────────────────────────────────────────────────────────────── {Original abstract} PLAIN-LANGUAGE SUMMARY ─────────────────────────────────────────────────────────────────── {3-5 sentence summary accessible to a technical but non-specialist reader. Explain what problem the paper addresses, the approach, and the key results. Avoid jargon where possible; define it when unavoidable.} ═══════════════════════════════════════════════════════════════════
API Notes
- The arXiv API returns Atom XML. Parse
elements for results.<entry> - Rate limit: be respectful, no rapid-fire queries. One search per invocation is fine.
- The API supports boolean queries:
(category + keyword)cat:cs.RO AND all:autonomous - Common categories:
- Roboticscs.RO
- Artificial Intelligencecs.AI
- Machine Learningcs.LG
- Computer Visioncs.CV
- Computation and Language (NLP)cs.CL
- Software Engineeringcs.SE
- Statistics / Machine Learningstat.ML
- Systems and Controleess.SY
- Optimization and Controlmath.OC
- For category-specific searches:
search_query=cat:cs.RO+AND+all:{query}
Examples
User: /arxiv behavioral cloning robotics Claude: [Fetches arXiv API with query "behavioral cloning robotics"] ARXIV SEARCH: behavioral cloning robotics ═══════════════════════════════════════════════════════════════════ 1. Learning to Navigate Sidewalks from Demonstration J. Smith, A. Lee, et al. 2026-01-15 · cs.RO Proposes a behavioral cloning approach for sidewalk navigation using teleoperation demonstrations. Achieves 94% success rate on unseen environments using a lightweight MLP policy. https://arxiv.org/abs/2601.09876 ...
User: /arxiv 2401.12345 Claude: [Fetches specific paper] Some Paper Title ═══════════════════════════════════════════════════════════════════ Authors: Jane Doe, John Smith Published: 2024-01-23 Categories: cs.RO, cs.AI URL: https://arxiv.org/abs/2401.12345 ABSTRACT ─────────────────────────────────────────────────────────────────── {abstract text} PLAIN-LANGUAGE SUMMARY ─────────────────────────────────────────────────────────────────── {accessible summary} ═══════════════════════════════════════════════════════════════════