arXiv Search

Wraps the arXiv Python client to pull paper titles, abstracts and URLs

Tested · Didn't pass

Test report

Verdict
Tested · Didn't pass
Tested
Jul 17, 2026
Environment
Claude Code 2.x (agent harness)
Upstream re-checked
Aug 10, 2026 · ab60d63

Asked for the top 3 arXiv papers on FlashAttention twice — once with a 20-line stdlib script and once with the bundled skill — and both returned the identical three papers in the identical order (2512.07011v1, 2205.14135v2, 2202.09741v5). The skill needed an undeclared `pip install arxiv` to run at all, emitted 4,792 characters against the baseline's 613, and its formatter only exposes title/abstract/URL, dropping the authors, dates and categories the raw arXiv Atom feed hands you for free. It works and it is safe, but on this task it was a more expensive route to the same answer.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 5/5
  • Triggers reliably 5/5
  • Output vs. baseline 4/10
  • Docs & honesty 3/5

What arXiv Search does

A thin wrapper script over the `arxiv` PyPI client that searches the arXiv preprint archive and prints title, abstract and URL for the top matches. Triggers when you ask for preprints or recent papers in physics, math, CS or quantitative biology.

How to install arXiv Search

git clone https://github.com/DougTrajano/pydantic-ai-skills.git
mkdir -p ~/.claude/skills
cd pydantic-ai-skills && cp -r examples/skills/arxiv-search ~/.claude/skills/arxiv-search
pip install arxiv

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger arXiv Search

  • /arxiv-search Wraps the arXiv Python client to pull paper titles, abstracts and URLs

It also activates on plain-language prompts like these:

  • Find me the top papers on arXiv about FlashAttention and IO-aware attention
  • Search arXiv for recent quantitative biology preprints on protein folding
  • Pull titles and abstracts for the latest math papers on this topic

Frequently asked questions

Is the arXiv Search skill free?
Yes. The skill itself is free from DougTrajano/pydantic-ai-skills. SkillProof publishes the install command and an independent test verdict at no cost.
Does arXiv Search work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Jul 17, 2026. Verdict: Tested · Didn't pass. Asked for the top 3 arXiv papers on FlashAttention twice — once with a 20-line stdlib script and once with the bundled skill — and both returned the identical three papers in the identical order (2512.07011v1, 2205.14135v2, 2202.09741v5). The skill needed an undeclared `pip install arxiv` to run at all, emitted 4,792 characters against the baseline's 613, and its formatter only exposes title/abstract/URL, dropping the authors, dates and categories the raw arXiv Atom feed hands you for free. It works and it is safe, but on this task it was a more expensive route to the same answer.
How do I install arXiv Search?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use arXiv Search with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.