arxiv-search

arxiv-search is a skill for Claude Code from augchan42/inkstone. It costs 34 tokens per session (1,159 once invoked), scanned A, original, MIT.

A search tool for arXiv, an online repository of research papers, using topics, authors, paper IDs, fields, and categories. It retrieves paper information through arXiv’s public API.

In plain words
What is it for?
Use it to find papers by topic or author, look up a known arXiv paper, survey recent work, or find related research. Queries can target titles, abstracts, authors, or subject categories.
Why use it?
It avoids manually searching arXiv and helps narrow results with structured queries. It is useful when a developer needs research papers rather than general web results.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the inkstone plugin — 21 skills, 1 hook shipped together

Good fit Use it to find papers by topic or author, look up a known arXiv paper, survey recent work, or find related research. Queries can target titles, abstracts, authors, or subject categories.

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

Made for: Claude Code.

Or install inkstone, the plugin that ships this one along with the rest of its 21 skills, 1 hook.

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-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/augchan42/inkstone/arxiv-search/github.svg)](https://agentmods.dev/skills/augchan42/inkstone/arxiv-search)
Your own site
<a href="https://agentmods.dev/skills/augchan42/inkstone/arxiv-search"><img src="https://agentmods.dev/badge/skills/augchan42/inkstone/arxiv-search/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-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/augchan42/inkstone/arxiv-search"><img src="https://agentmods.dev/badge/skills/augchan42/inkstone/arxiv-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,159 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.
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.00034 $0.01159
Opus 5 $0.00017 $0.00580
Sonnet 5 $0.00007 $0.00232
Haiku 4.5 $0.00003 $0.00116

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

Security

Grade A, and why

arxiv-search 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 10d 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 -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=10&sortBy=submittedDate&sortOrder=descending"
skills/arxiv-search/SKILL.md · 136 lines

How it starts

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

Search the arXiv API for academic papers. No authentication required.

When to Use

  • User wants to find papers on a topic
  • User asks about recent research in a field
  • User provides an arXiv ID and wants details
  • User wants to compare papers or find related work

API Details

  • Base URL: https://export.arxiv.org/api/query
  • Auth: None required
  • Rate limit: 1 request per 3 seconds (be polite)
  • Response format: Atom XML

By topic/keywords

curl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=10&sortBy=submittedDate&sortOrder=descending"

Replace spaces in QUERY with +. For multi-word phrases, use %22phrase%22 for exact match.

By specific field

  • ti: — title
  • au: — author
  • abs: — abstract
  • cat: — category (e.g. cs.AI, cs.CL, stat.ML)
  • all: — all fields

Combine with AND, OR, ANDNOT:

# Papers about transformers in NLP
curl -sL "https://export.arxiv.org/api/query?search_query=ti:transformer+AND+cat:cs.CL&max_results=10&sortBy=submittedDate&sortOrder=descending"

# Papers by a specific author
curl -sL "https://export.arxiv.org/api/query?search_query=au:hinton&max_results=10&sortBy=submittedDate&sortOrder=descending"

By arXiv ID

curl -sL "https://export.arxiv.org/api/query?id_list=2301.07041"

Multiple IDs: id_list=2301.07041,2305.18290

Pagination

Use start parameter:

# Results 11-20
curl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&start=10&max_results=10&sortBy=submittedDate&sortOrder=descending"

Parsing the Response

The response is Atom XML. Extract these fields from each <entry>:

Field XML Path Notes
Title <title> May contain line breaks — normalize
Authors <author><name> Multiple entries
Abstract <summary> May contain LaTeX
Published <published> ISO 8601 date
Updated <updated> Latest version date
arXiv ID <id> URL form, extract ID from path
PDF link <link rel="related" title="pdf"> Direct PDF URL
Categories <category term="..."> Primary + secondary
Comment <arxiv:comment> Page count, conference info

Read the full file on GitHub · 136 lines

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. 10d ago First seen · 136 lines · 34 tokens per session scan A f1e1202051b6

Subscribe to this mod's changes

arxiv-search is a skill published in the GitHub repository augchan42/inkstone (4 stars, last pushed today), licensed MIT. It adds 34 tokens to every session and 1,159 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories

audit-reproducibility

Enforce the replication-protocol.md rule by cross-checking numeric claims in a manuscript against the actual R / Stata / Python outputs. Report PASS/FAIL per claim against tolerance thresholds. Use before submission and before releasing a replication package.

pedrohcgs/claude-code-my-workflow · 54 tokens

review-paper

Comprehensive manuscript review with three modes: single-pass (default), --adversarial critic-fixer loop, and --peer [journal] simulated peer-review pipeline (editor + 2 dispositioned referees + editorial decision, calibrated to a target journal). R&R continuation via --peer --r2/--r3; hostile-editor stress test via…

pedrohcgs/claude-code-my-workflow · 114 tokens

capture-environment

Snapshot the computational environment for a replication package — detects the analysis stack (R / Stata / Python) and emits the right lockfiles (renv.lock + sessionInfo.txt, requirements.txt / environment.yml / uv.lock, Stata version + ado package list), records seeds and RNG kind, optionally writes a pinning…

pedrohcgs/claude-code-my-workflow · 139 tokens

data-management-plan

Draft a funder-compliant Data Management Plan (NSF DMP, NIH DMS Policy 2023, ERC, Horizon Europe) by composing the confidential-data and environment-capture primitives. Sections cover data description, formats/metadata, storage/backup, access/sharing, preservation/archiving, and roles. Use when user says "data…

pedrohcgs/claude-code-my-workflow · 143 tokens

grant-proposal

Scaffold a research grant proposal (NSF, NIH, ERC, or foundation) by composing existing primitives — pulls identification strategy from an /interview-me spec, delegates the data-management plan to /data-management-plan and the facilities statement to /capture-environment, and emits a funder-requirements checklist. Use…

pedrohcgs/claude-code-my-workflow · 131 tokens

power-analysis

Compute statistical power, required sample size, and minimum detectable effect (MDE) for a study design, then write a registry-ready power section. Handles two-arm RCTs (with clustering / ICC and unequal allocation), multiple-arm corrections, and a simulation-based power option for non-standard designs…

pedrohcgs/claude-code-my-workflow · 150 tokens