arxiv

arxiv is a skill for Claude Code from HezaoHezao/poirot. It costs 18 tokens per session (883 once invoked), scanned C, original, MIT.

A research tool for finding and retrieving academic papers from arXiv, a free online archive of scientific studies. It can search by keyword, author, subject category, or paper ID.

In plain words
What is it for?
Finding papers on a technical topic, checking an author’s work, looking up a known paper, and reading its abstract or PDF.
Why use it?
It removes the need to search arXiv manually or work out its API format. It also helps retrieve abstracts and full papers for closer reading.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: built for hermes-agent.

Good fit Finding papers on a technical topic, checking an author’s work, looking up a known paper, and reading its abstract or PDF.

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

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/hezaohezao/poirot/arxiv/github.svg)](https://agentmods.dev/skills/hezaohezao/poirot/arxiv)
Your own site
<a href="https://agentmods.dev/skills/hezaohezao/poirot/arxiv"><img src="https://agentmods.dev/badge/skills/hezaohezao/poirot/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/hezaohezao/poirot/arxiv"><img src="https://agentmods.dev/badge/skills/hezaohezao/poirot/arxiv.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 883 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.00018 $0.00883
Opus 5 $0.00009 $0.00441
Sonnet 5 $0.00004 $0.00177
Haiku 4.5 $0.00002 $0.00088

Measured 11d ago against content hash 31c67f283fa4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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.

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://export.arxiv.org/api/query?search_query=all:GRPO+reinforcement+learning&max_results=5&sortBy=submittedDate&sortOrder=descending" | python3 -c "

Makes network callslowCapability

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

key, no dependencies — just `bash` with `curl`.
poirot/backend/agents/skill/builtin_skills/research/arxiv/SKILL.md · 94 lines

How it starts

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

arXiv Research

Search and retrieve academic papers from arXiv via their free REST API. No API key, no dependencies — just bash with curl.

Quick Reference

Action Command
Search papers bash("curl -s 'https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=5'")
Get specific paper bash("curl -s 'https://export.arxiv.org/api/query?id_list=2402.03300'")
Read abstract browse_page(url="https://arxiv.org/abs/2402.03300")
Read full paper (PDF) browse_page(url="https://arxiv.org/pdf/2402.03300")

Searching Papers

The API returns Atom XML. Parse with python3 for clean output.

Basic search

curl -s "https://export.arxiv.org/api/query?search_query=all:GRPO+reinforcement+learning&max_results=5"

Clean output (parse XML to readable format)

curl -s "https://export.arxiv.org/api/query?search_query=all:GRPO+reinforcement+learning&max_results=5&sortBy=submittedDate&sortOrder=descending" | python3 -c "
import sys, xml.etree.ElementTree as ET
ns = {'a': 'http://www.w3.org/2005/Atom'}
root = ET.fromstring(sys.stdin.read())
for entry in root.findall('a:entry', ns):
    title = entry.find('a:title', ns).text.strip().replace('\n', ' ')
    published = entry.find('a:published', ns).text[:10]
    summary = entry.find('a:summary', ns).text.strip()[:200]
    link = entry.find('a:id', ns).text
    print(f'{published} | {title}')
    print(f'  {link}')
    print(f'  {summary}...')
    print()
"

Search Query Syntax

Field Example
All fields all:transformer
Title ti:attention
Author au:vaswani
Abstract abs:reinforcement
Category cat:cs.CL
Combine (AND) all:transformer+AND+ti:attention
Combine (OR) all:LLM+OR+all:large+language+model

Common Categories

  • cs.CL — Computation and Language (NLP)
  • cs.CV — Computer Vision
  • cs.LG — Machine Learning
  • cs.AI — Artificial Intelligence
  • stat.ML — Machine Learning (Stats)
  • physics — Physics

Read the full file on GitHub · 94 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. 11d ago First seen · 94 lines · 18 tokens per session scan C 31c67f283fa4

Subscribe to this mod's changes

arxiv is a skill published in the GitHub repository HezaoHezao/poirot (217 stars, last pushed 1mo ago), licensed MIT. It adds 18 tokens to every session and 883 once invoked, about $0.0001 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

papyrus-writing

Base skill for the Papyrus writing assistant — the conduct, paper-quality principles, and LaTeX house style that every Papyrus editing task builds on. Load this first when working on a .tex paper in Papyrus. For the mechanics of a specific task, also load papyrus-latex-comments, papyrus-latex-suggestions…

kirodotdev/KiroCrew · 88 tokens

commit

Atomic git commit with conventional message. Use when the user says "commit", "save my changes", "commit this", or wants to create a git commit. Stages specific files, writes a conventional commit message with body explaining non-obvious decisions. Never uses git add -A.

congchuanling-dot/Cohort · 59 tokens

python-run

Run and debug Python scripts in the project. Use when the user says "run python", "execute this script", "debug this py file", or wants to run/modify a .py file. Handles dependency checks, linting, execution, and error analysis.

congchuanling-dot/Cohort · 56 tokens

hqe

Comprehensive codebase health auditing, remediation, and verification skill based on the canonical HQE Protocol v5.0.0.

spearchucker667/Skill-HQE · 29 tokens

cost-efficiency-analyzer

Analyzes cost structure, cost efficiency, and expense management from P&L data. Use when the user asks about costs, expenses, COGS, operating expenses, cost ratios, cost control, spending efficiency, margin compression from cost side, or wants to understand where money is going. Also use for "are we spending too…

awslabs/agentcore-samples · 98 tokens

computer-use

Read and drive native desktop applications through the accessibility layer — list on-screen apps, snapshot one window as a numbered element tree, then click / type / set a value / scroll / drag / run a named action, by element index or by screen coordinates. Use for work in a desktop app rather than a web page. Full…

kirodotdev/KiroCrew · 105 tokens