arxiv-fetch

arxiv-fetch is a skill for Claude Code from yang3kc/daily_arxiv_digest. It costs 66 tokens per session (1,303 once invoked), scanned A, original, MIT.

A tool for fetching recent papers from arXiv, a public repository where researchers share scientific papers, and producing a digest of the relevant results. It uses RSS feeds and needs no API key.

In plain words
What is it for?
Use it to check the latest papers in specified arXiv categories, find new research on a topic, or create an on-demand paper summary.
Why use it?
It removes the need to manually check multiple arXiv subject feeds and decide which new papers match a topic.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the arxiv-fetch plugin — 1 skill shipped together

Good fit Use it to check the latest papers in specified arXiv categories, find new research on a topic, or create an on-demand paper summary.

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

Made for: Claude Code.

Or install arxiv-fetch, the plugin that ships this one along with the rest of its 1 skill.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/yang3kc/daily_arxiv_digest/arxiv-fetch"><img src="https://agentmods.dev/badge/skills/yang3kc/daily_arxiv_digest/arxiv-fetch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,303 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.00066 $0.01303
Opus 5 $0.00033 $0.00651
Sonnet 5 $0.00013 $0.00261
Haiku 4.5 $0.00007 $0.00130

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

Security

Grade A, and why

arxiv-fetch 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/fetch_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.

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.

skills/arxiv-fetch/SKILL.md · 110 lines

How it starts

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

arXiv Fetch & Digest

Fetch the latest papers from arXiv RSS feeds, judge their relevance to the user's topics yourself (you are the LLM — no external API calls), and present a digest. Fully standalone: the fetch script is Python-stdlib-only, needs no API keys, and no other files beyond this skill directory.

Step 1 — Resolve subjects and topics

Two inputs, resolved independently, same precedence:

  1. From the request. Explicit subjects ("check cs.SI") or topics ("papers about LLM persuasion") in the user's message always win. Free-form topic phrasing is fine — you are the judge; no schema. If the user names a topic but no subject, infer likely subjects from references/arxiv-categories.md.
  2. From config. A JSON file with arxiv_subjects (feed codes) and topics (natural-language interests). Searched in order — project (.arxiv-fetch/config.json in the working directory), install (config.json in this skill directory), then user-global (~/.config/arxiv-fetch/config.json). Full details: references/config/schema.md. The fetch script walks the same chain automatically for subjects; read the same file for topics.
  3. Neither available? Run the first-time setup flow: references/config/first-time-setup.md. It is blocking when the request doesn't say what to fetch; otherwise proceed and offer to save afterwards.

Step 2 — Fetch

python3 scripts/fetch_arxiv.py --subjects cs.SI,cs.CY --output <scratchpad>/arxiv.json

(Any Python 3; run from this skill directory, or call the script by its absolute path.) Flags:

  • --subjects a,b,c — override config subjects
  • --config <path> — explicit config file, skipping the search chain
  • --new-only — drop cross-lists (cross) and revisions (replace); use this by default unless the user wants everything
  • --output <path> — write to a file instead of stdout (prefer this; write to the scratchpad, then read/process in slices)

Read the full file on GitHub · 110 lines

Files

What ships with it

5 files 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. 12d ago First seen · 110 lines · 66 tokens per session scan A 19abe5863b56

Subscribe to this mod's changes

arxiv-fetch is a skill published in the GitHub repository yang3kc/daily_arxiv_digest (21 stars, last pushed 17d ago), licensed MIT. It adds 66 tokens to every session and 1,303 once invoked, about $0.0003 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.