arxiv

arxiv is a skill for Claude Code from diillson/chatcli. It costs 65 tokens per session (533 once invoked), scanned A, original, Apache-2.0.

A way to search and retrieve academic papers from arXiv, a free online repository for scientific and technical research papers.

In plain words
What is it for?
It helps search by topic, author, category, or paper ID, then retrieve papers for reading or summarising.
Why use it?
It makes it easier to find relevant papers and inspect their abstracts or full text without a paid database.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit It helps search by topic, author, category, or paper ID, then retrieve papers for reading or summarising.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/diillson/chatcli/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 diillson/chatcli --skill arxiv
Clone the repo
git clone --depth 1 https://github.com/diillson/chatcli

Made for: Claude Code.

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/diillson/chatcli/arxiv.svg)](https://agentmods.dev/skills/diillson/chatcli/arxiv)
Your own site
<a href="https://agentmods.dev/skills/diillson/chatcli/arxiv"><img src="https://agentmods.dev/badge/skills/diillson/chatcli/arxiv.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 533 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00065 $0.00533
Opus 5 $0.00032 $0.00267
Sonnet 5 $0.00013 $0.00107
Haiku 4.5 $0.00006 $0.00053

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

Security

Grade A, and why

arxiv scanned grade A with 1 finding 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 4d ago.

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.

Makes network callslowCapability

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

`curl`, or `@webfetch`). The API returns Atom XML.
pkg/persona/builtin/skills/arxiv/SKILL.md · 54 lines

What it actually says

arXiv Research

Search arXiv via its free REST API — no key, no dependency, just HTTP (via @coder exec/Bash curl, or @webfetch). The API returns Atom XML.

curl -s "https://export.arxiv.org/api/query?search_query=all:diffusion+models&start=0&max_results=5"

Field prefixes: ti: title, au: author, abs: abstract, cat: category (e.g. cs.LG). Combine with +AND+/+OR+. Sort: &sortBy=submittedDate&sortOrder=descending.

Fetch a specific paper

curl -s "https://export.arxiv.org/api/query?id_list=2402.03300"

Parse <title>, <author><name>, <summary>, and the <link> to the PDF with grep/sed or pipe through python3 for clean output.

Read the paper

  • Abstract page → @webfetch https://arxiv.org/abs/<id>
  • Full text → @webfetch https://arxiv.org/pdf/<id> (then summarize sections the user wants)

Workflow for "find + summarize"

  1. Search → pick the top N by relevance/recency.
  2. For each, fetch the abstract; present title, authors, year, one-line summary, link.
  3. If the user picks one, @webfetch the PDF and give a structured summary (problem → method → results → limitations).

Rules

  • Respect arXiv's rate limit: ~1 request / 3s; batch with max_results instead of looping fast.
  • Always include the arXiv ID and link so the user can verify.
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. 4d ago First seen · 54 lines · 65 tokens per session scan A f94c903fadad

Subscribe to this mod's changes

arxiv is a skill published in the GitHub repository diillson/chatcli (90 stars, last pushed today), licensed Apache-2.0. It adds 65 tokens to every session and 533 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

sn-search-academic

An academic research tool for finding papers and encyclopedia entries, reading papers in full or by section, and tracing references and citations. It supports structured literature research.

OpenSenseNova/SenseNova-Skills · 31 tokens

imaging-data-commons

Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Use for accessing large-scale radiology (CT, MR, PET) and pathology datasets for AI training or research. No authentication required. Query by metadata, visualize in browser, check licenses.

synthetic-sciences/openscience · 62 tokens

flow-cytometry-analysis

Complete flow cytometry analysis pipeline. FCS file handling, compensation, manual/automated gating, immunophenotyping, CFSE proliferation analysis, cell cycle analysis (Dean-Jett-Fox), and apoptosis assays. Extends flowio with analytical workflows. For raw FCS parsing only use flowio.

synthetic-sciences/openscience · 67 tokens

glycobiology

Glycosylation site prediction and glycobiology analysis. N-glycosylation motif finding, O-glycosylation hotspot prediction, glycan structure resources. Lightweight, pure Python. For protein function queries use uniprot-database; for structure analysis use alphafold-database.

synthetic-sciences/openscience · 67 tokens

datamol

Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…

synthetic-sciences/openscience · 67 tokens

peer-review

Structured manuscript/grant review with checklist-based evaluation. Use when writing formal peer reviews with specific criteria methodology assessment, statistical validity, reporting standards compliance (CONSORT/STROBE), and constructive feedback. Best for actual review writing, manuscript revision. For evaluating…

xintaofei/codeg · 71 tokens