Agent skill

alphaxiv-paper-lookup

Look up any arxiv paper on alphaxiv.org to get a structured AI-generated overview. This is faster and more reliable than trying to read a raw PDF.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill alphaxiv-paper-lookup --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/alphaxiv-paper-lookup/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

# AlphaXiv Paper Lookup Look up any arxiv paper on alphaxiv.org to get a structured AI-generated overview. This is faster and more reliable than trying to read a raw PDF. ## When to Use - User shares an arxiv URL (e.g. `arxiv.org/abs/2401.12345`) - User mentions a paper ID (e.g. `2401.12345`) - User asks you to explain, summarize, or analyze a research paper - User shares an alphaxiv URL (e.g. `alphaxiv.org/overview/2401.12345`) ## Workflow ### Step 1: Extract the paper ID Parse the paper ID from whatever the user provides: | Input | Paper ID | | ------------------------------------------ | -------------- | | `https://arxiv.org/abs/2401.12345` | `2401.12345` | | `https://arxiv.org/pdf/2401.12345` | `2401.12345` | | `https://alphaxiv.org/overview/2401.12345` | `2401.12345` | | `2401.12345v2` | `2401.12345v2` | | `2401.12345` | `2401.12345` | ### Step 2: Fetch the machine-readable report ```bash curl -s "https://alphaxiv.org/overview/{PAPER_ID}.md" ``` This returns the intermediate machine-readable report — a structured, detailed analysis of the paper optimized for LLM consumption. One call, plain markdown, no JSON parsing. If this returns 404, the report hasn't been generated for th

What's inside
Steps it walks through
  1. When to Use
  2. Workflow
  3. Step 1: Extract the paper ID
  4. Step 2: Fetch the machine-readable report
  5. Step 3: If you need more detail, fetch the full paper text
  6. Error Handling
  7. Notes
Ships with 1 file
  • metadata.json
Commands it runs
curl -s "https://alphaxiv.org/overview/{PAPER_ID}.md"
curl -s "https://alphaxiv.org/abs/{PAPER_ID}.md"
More from claude-skill-registry
All skills →
About this skill
What does the alphaxiv-paper-lookup skill do?

Look up any arxiv paper on alphaxiv.org to get a structured AI-generated overview. This is faster and more reliable than trying to read a raw PDF.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill alphaxiv-paper-lookup --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