scholaraio: Skill for Claude Code

.claude/skills/arxiv/SKILL.md

arxiv is a skill for Claude Code from ZimoLiao/scholaraio. It costs 46 tokens per session (843 once invoked), scanned A, original, MIT.

A guide for finding, browsing, downloading, and optionally importing arXiv preprints. arXiv is an online repository where researchers share papers before formal journal publication.

In plain words
What is it for?
Use it to search recent or topic-specific preprints, open or download a paper, and send it into a ScholarAIO paper-ingestion workflow.
Why use it?
It keeps arXiv searches separate from searches of a local paper library or other sources. It also provides a clear route for handling either general discovery or a specific paper identified by its arXiv link or ID.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is ZimoLiao/scholaraio's own configuration. It tells Claude Code how to work on scholaraio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything scholaraio configures →

Part of the scholaraio plugin — 47 skills, 1 hook, 1 MCP server shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to ZimoLiao/scholaraio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ZimoLiao/scholaraio/main/.claude/skills/arxiv/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ZimoLiao/scholaraio

Made for: Claude Code.

Or install scholaraio, the plugin that ships this one along with the rest of its 47 skills, 1 hook, 1 MCP server.

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/zimoliao/scholaraio/arxiv/github.svg)](https://agentmods.dev/skills/zimoliao/scholaraio/arxiv)
Your own site
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/arxiv"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/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/zimoliao/scholaraio/arxiv"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/arxiv.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 843 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00046 $0.00843
Opus 5 $0.00023 $0.00421
Sonnet 5 $0.00009 $0.00169
Haiku 4.5 $0.00005 $0.00084

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

Security

Grade A, and why

arxiv scanned grade A with 0 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 12d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/arxiv/SKILL.md · 90 lines

How it starts

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

arXiv Preprints

Use this skill when the task is specifically about arXiv as a source of preprints.

This is a thin source-workflow skill:

  • search skill handles overall paper-search routing
  • arxiv skill handles preprint discovery, browsing, fetching, and optional ingest

When to Use

Use this skill when the user wants to:

  • browse recent or category-scoped preprints
  • "随便看看" arXiv 上某个方向最近有什么
  • search arXiv directly instead of only searching the local library
  • fetch a paper from an arXiv ID, abs URL, or pdf URL
  • download a preprint into the configured paper inbox (fresh default: data/spool/inbox/)
  • send an arXiv preprint directly into the ingest pipeline

Do not use this skill when:

  • the task is mainly about searching the local knowledge base
  • the user wants a full multi-source literature survey; use search or explore

Core Workflow

1. Decide whether this is browse/search or fetch/ingest

  • If the user wants to look around, discover preprints, or check what is new, start with arxiv search
  • If the user wants cross-source retrieval with the local library, use fsearch --scope main,arxiv
  • If the user already has a specific arXiv paper in mind, use arxiv fetch
  • If the goal is "put this preprint into my library now", use arxiv fetch <id> --ingest

2. Use the right command

Direct arXiv search:

scholaraio arxiv search "<query>"
scholaraio arxiv search "<query>" --category physics.flu-dyn
scholaraio arxiv search --category cs.LG --sort recent

Federated search when arXiv should complement the local library:

scholaraio fsearch "<query>" --scope main,arxiv
scholaraio fsearch "<query>" --scope arxiv

Fetch PDF only:

scholaraio arxiv fetch 2603.25200
scholaraio arxiv fetch arXiv:2603.25200v1
scholaraio arxiv fetch https://arxiv.org/abs/2603.25200v1

Fetch and ingest immediately:

scholaraio arxiv fetch 2603.25200 --ingest

3. Keep the source semantics clear

  • arXiv is a preprint source, not the main curated knowledge base
  • Use it to discover fresh work quickly or pull in a specific preprint
  • If the paper becomes relevant to the user's ongoing work, ingest it instead of repeatedly treating it as an external result

Read the full file on GitHub · 90 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. 12d ago First seen · 90 lines · 46 tokens per session scan A 5a49b2d87850

Subscribe to this mod's changes

arxiv is a skill published in the GitHub repository ZimoLiao/scholaraio (571 stars, last pushed 12d ago), licensed MIT. It adds 46 tokens to every session and 843 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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