arxiv

arxiv is a skill for Claude Code, Codex from hdu-ailab/EasyResearch. It costs 154 tokens per session (1,505 once invoked), scanned C, original, MIT.

A research helper for checking known arXiv papers, an online archive of research papers, and their bibliographic details. It can create BibTeX entries, inspect abstracts and PDF pages, and query citation and reference information from Semantic Scholar.

In plain words
What is it for?
Use it to verify an arXiv ID, generate a BibTeX citation, inspect a paper's abstract or PDF, or find its citations, references, citing papers, and author information.
Why use it?
It helps prevent mistakes in paper titles, authors, versions, links, and citations after papers have already been found. It also keeps verification separate from broad topic searching.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit Use it to verify an arXiv ID, generate a BibTeX citation, inspect a paper's abstract or PDF, or find its citations, references, citing papers, and author information.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hdu-ailab/easyresearch/arxiv
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hdu-ailab/EasyResearch --skill arxiv
Clone the repo
git clone --depth 1 https://github.com/hdu-ailab/EasyResearch

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for arxiv

README.md
[![agentmods](https://agentmods.dev/badge/skills/hdu-ailab/easyresearch/arxiv/github.svg)](https://agentmods.dev/skills/hdu-ailab/easyresearch/arxiv)
Your own site
<a href="https://agentmods.dev/skills/hdu-ailab/easyresearch/arxiv"><img src="https://agentmods.dev/badge/skills/hdu-ailab/easyresearch/arxiv/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for arxiv

Your own site · 80×15
<a href="https://agentmods.dev/skills/hdu-ailab/easyresearch/arxiv"><img src="https://agentmods.dev/badge/skills/hdu-ailab/easyresearch/arxiv.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,505 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00154 $0.01505
Opus 5 $0.00077 $0.00753
Sonnet 5 $0.00031 $0.00301
Haiku 4.5 $0.00015 $0.00151

Measured 9d ago against content hash 5fec9254d988, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

arxiv scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/search_arxiv.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -s "https://api.semanticscholar.org/graph/v1/paper/arXiv:2402.03300?fields=title,authors,citationCount,referenceCount,influentialCitationCount,year,abstract,externalIds" | python3 -m json.tool

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://api.semanticscholar.org/graph/v1/paper/arXiv:2402.03300?fields=title,authors,citationCount,referenceCount,influentialCitationCount,year,abstract,externalIds" | python3 -m json.tool
src/skills/arxiv/SKILL.md · 147 lines

How it starts

The opening of the file, as written. The whole thing — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.

arXiv Metadata

When To Use

  • An arXiv ID is already known and the title, authors, abstract, version, category, or links need verification
  • BibTeX is needed for an arXiv paper
  • The content of an arXiv abstract/PDF page needs inspection
  • Semantic Scholar is needed for citation counts, references, citing papers, or author information

Use paper-search for topic-level paper search; this skill only handles known papers or a small number of precise queries.

Workflow Integration

  • In a full paper project, the Search agent maintains ref_papers/source.json under the exact cwd; if the dispatch explicitly supplies an existing user layout, follow that layout.
  • This skill verifies arXiv ID, version, title, authors, BibTeX, citation counts, and reference information for already-selected papers.
  • If source.json exists, fill in verification results as fields; do not re-run broad topic searches with this skill.
  • PDF acquisition and PDF-to-Markdown conversion are the Search agent's responsibility, preferring the pdf-to-markdown skill; the orchestration layer never performs conversion directly.

Helper Script

Run from the skill directory (prefer the EasyResearch skill venv Python; fall back to system python3 when unset):

$EASYRESEARCH_VENV/bin/python scripts/search_arxiv.py --id 1706.03762
$EASYRESEARCH_VENV/bin/python scripts/search_arxiv.py --id 1706.03762 --bibtex
$EASYRESEARCH_VENV/bin/python scripts/search_arxiv.py --id 1706.03762,2402.03300

Windows layout:

& (Join-Path $env:EASYRESEARCH_VENV 'Scripts\python.exe') scripts\search_arxiv.py --id 1706.03762

The script depends only on the Python standard library. When EASYRESEARCH_VENV is unset, native Windows can use py -3 and Linux/macOS can use python3.

If the arXiv Atom API returns 429, the script automatically falls back to parsing the arxiv.org/abs/{id} page for basic metadata and BibTeX.

A small number of precise queries also work, but do not replace paper-search topic search:

python scripts/search_arxiv.py --author "Yann LeCun" --max 5
python scripts/search_arxiv.py --category cs.LG --sort date --max 5

Read the full file on GitHub · 147 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 147 lines · 154 tokens per session scan C 5fec9254d988

Subscribe to this mod's changes

arxiv is a skill published in the GitHub repository hdu-ailab/EasyResearch (13 stars, last pushed yesterday), licensed MIT. It adds 154 tokens to every session and 1,505 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ai-research-reproduction

Rigor Reproduce compatible skill slug for README-first deep learning repository reproduction. Use when the user wants an end-to-end, minimal-trustworthy flow that reads the repository first, selects the smallest documented inference or evaluation target, coordinates intake, setup, trusted execution, optional trusted…

lllllllama/RigorPilot-Skills · 136 tokens

overleaf

Sync and manage Overleaf LaTeX projects from the command line. Pull projects locally, push changes back, compile PDFs, and download compile outputs like .bbl files for arXiv submissions. Use when working with LaTeX, Overleaf, academic papers, or arXiv.

aloth/olcli · 62 tokens

ai-research-explore

Rigor Explore compatible skill slug for meaningful and potentially novel deep learning research candidates. Use when the researcher has chosen the task family, dataset, benchmark, evaluation method, provided SOTA references, and wants candidate-only exploration on top of currentresearch with auditable repo…

lllllllama/RigorPilot-Skills · 114 tokens

explore-run

Rigor Improve / Rigor Explore run leaf skill for bounded exploratory evidence in deep learning research repositories. Use when the researcher explicitly authorizes exploratory runs such as small-subset validation, short-cycle guess-and-check, batch sweeps, idle-GPU search, or quick transfer-learning trials, with…

lllllllama/RigorPilot-Skills · 117 tokens

explore-code

Rigor Improve implementation leaf skill for auditable candidate implementation in deep learning research repositories. Use when the researcher explicitly authorizes exploratory work on an isolated branch or worktree to transplant modules, adapt a backbone, add LoRA or adapter layers, replace a head, or stitch together…

lllllllama/RigorPilot-Skills · 112 tokens

run-train

Rigor Train skill for deep learning research repositories. Use when a documented or selected training command should be run conservatively for startup verification, short-run verification, full kickoff, or resume, with command, config, seed, log, checkpoint, status, and metric evidence written to standardized…

lllllllama/RigorPilot-Skills · 87 tokens