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.
npx skills add augchan42/inkstone --skill arxiv-searchgit clone --depth 1 https://github.com/augchan42/inkstoneWrote 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.
[](https://agentmods.dev/skills/augchan42/inkstone/arxiv-search)<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.
<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>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.
| Model | Per session | Once 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 |
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" 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.
arXiv Paper Search
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
How to Search
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:— titleau:— authorabs:— abstractcat:— 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 |
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.
- 10d ago First seen · 136 lines · 34 tokens per session scan A f1e1202051b6
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.
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.
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…
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…
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…
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…
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…