Agent skill · Code Review & Quality

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.

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: WebFetchWebSearch
Path: skills/analysis/arxiv-ecto-dotfiles-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Usage
  2. Workflow
  3. Search by Topic
  4. Fetch Specific Paper
  5. Read Full Paper (HTML)
  6. Output Formats
  7. Search Results
  8. Single Paper
  9. API Notes
  10. Examples
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going