Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Search arXiv papers by keyword, author, category, or ID.
.claude/skills/hezaohezao-arxiv/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -13% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 89% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 64% | 0% |
| case-05 | ✓→✓ | = Same ✓ | -7% | 0% |
Search and retrieve academic papers from arXiv via their free REST API. No API key, no dependencies — just bash with curl.
| Action | Command | |--------|---------| | Search papers | bash("curl -s 'https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=5'") | | Get specific paper | bash("curl -s 'https://export.arxiv.org/api/query?id_list=2402.03300'") | | Read abstract | browse_page(url="https://arxiv.org/abs/2402.03300") | | Read full paper (PDF) | browse_page(url="https://arxiv.org/pdf/2402.03300") |
The API returns Atom XML. Parse with python3 for clean output.
bashcurl -s "https://export.arxiv.org/api/query?search_query=all:GRPO+reinforcement+learning&max_results=5"
bashcurl -s "https://export.arxiv.org/api/query?search_query=all:GRPO+reinforcement+learning&max_results=5&sortBy=submittedDate&sortOrder=descending" | python3 -c " import sys, xml.etree.ElementTree as ET ns = {'a': 'http://www.w3.org/2005/Atom'} root = ET.fromstring(sys.stdin.read()) for entry in root.findall('a:entry', ns): title = entry.find('a:title', ns).text.strip().replace('\n', ' ') published = entry.find('a:published', ns).text[:10] summary = entry.find('a:summary', ns).text.strip()[:200] link = entry.find('a:id', ns).text print(f'{published} | {title}') print(f' {link}') print(f' {summary}...') print() "
| Field | Example | |-------|---------| | All fields | all:transformer | | Title | ti:attention | | Author | au:vaswani | | Abstract | abs:reinforcement | | Category | cat:cs.CL | | Combine (AND) | all:transformer+AND+ti:attention | | Combine (OR) | all:LLM+OR+all:large+language+model |
cs.CL — Computation and Language (NLP)cs.CV — Computer Visioncs.LG — Machine Learningcs.AI — Artificial Intelligencestat.ML — Machine Learning (Stats)physics — Physicsbrowse_page for promising papersbrowse_page for full content (if needed)hammer it.
imaging" returns 0 results. Use 2-3 core keywords + category filter.
submittedDate for topicalsearches; use submittedDate only when user wants chronological order.
browse_page on PDF URLs may return raw text or fail onsome papers. Prefer abstract pages for reliable content.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 19,845 | 11,191 | -44% | 1 | 1 | 0% | 2,908 | 1,455 | -50% | 0 | 0 | — |
case-02 | fail→pass | 14,283 | 10,195 | -29% | 1 | 1 | 0% | 2,022 | 1,765 | -13% | 0 | 0 | — |
case-03 | fail→pass | 10,279 | 4,065 | -60% | 1 | 1 | 0% | 722 | 1,362 | +89% | 0 | 0 | — |
case-04 | pass→pass | 6,016 | 4,631 | -23% | 1 | 1 | 0% | 895 | 1,465 | +64% | 0 | 0 | — |
case-05 | pass→pass | 11,813 | 6,607 | -44% | 1 | 1 | 0% | 1,988 | 1,854 | -7% | 0 | 0 | — |
case-06 | fail→pass | 9,844 | 7,519 | -24% | 1 | 1 | 0% | 1,540 | 2,142 | +39% | 0 | 0 | — |
case-07 | pass→pass | 5,061 | 2,819 | -44% | 1 | 1 | 0% | 841 | 1,281 | +52% | 0 | 0 | — |
case-08 | pass→pass | 2,648 | 3,280 | +24% | 1 | 1 | 0% | 260 | 1,081 | +316% | 0 | 0 | — |
case-09 | pass→pass | 3,092 | 2,562 | -17% | 1 | 1 | 0% | 218 | 1,124 | +416% | 0 | 0 | — |
case-10 | pass→pass | 3,252 | 3,049 | -6% | 1 | 1 | 0% | 303 | 1,195 | +294% | 0 | 0 | — |
case-11 | pass→pass | 3,046 | 2,979 | -2% | 1 | 1 | 0% | 366 | 1,160 | +217% | 0 | 0 | — |
case-12 | pass→pass | 3,087 | 2,533 | -18% | 1 | 1 | 0% | 361 | 1,158 | +221% | 0 | 0 | — |
case-13 | pass→pass | 3,177 | 2,500 | -21% | 1 | 1 | 0% | 352 | 1,154 | +228% | 0 | 0 | — |
case-14 | pass→pass | 7,209 | 2,982 | -59% | 1 | 1 | 0% | 1,221 | 1,337 | +10% | 0 | 0 | — |
case-15 | pass→pass | 6,874 | 3,825 | -44% | 1 | 1 | 0% | 955 | 1,381 | +45% | 0 | 0 | — |
case-16 | pass→pass | 8,258 | 5,426 | -34% | 1 | 1 | 0% | 1,356 | 1,713 | +26% | 0 | 0 | — |
case-17 | pass→pass | 2,976 | 2,469 | -17% | 1 | 1 | 0% | 361 | 1,210 | +235% | 0 | 0 | — |
case-18 | pass→pass | 8,492 | 4,351 | -49% | 1 | 1 | 0% | 703 | 1,512 | +115% | 0 | 0 | — |
case-19 | pass→pass | 4,928 | 11,684 | +137% | 1 | 1 | 0% | 639 | 1,379 | +116% | 0 | 0 | — |
case-20 | pass→pass | 3,182 | 2,111 | -34% | 1 | 1 | 0% | 217 | 1,081 | +398% | 0 | 0 | — |
case-21 | pass→pass | 4,368 | 2,209 | -49% | 1 | 1 | 0% | 675 | 1,099 | +63% | 0 | 0 | — |
case-22 | pass→pass | 10,078 | 9,188 | -9% | 1 | 1 | 0% | 1,495 | 2,360 | +58% | 0 | 0 | — |
case-23 | pass→pass | 9,208 | 7,186 | -22% | 1 | 1 | 0% | 1,352 | 1,916 | +42% | 0 | 0 | — |
case-24 | pass→pass | 17,478 | 11,920 | -32% | 1 | 1 | 0% | 1,504 | 1,789 | +19% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 24 cases were attempted, and 22 counted toward the lift figure. The other 2 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +13 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.