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 diillson/chatcli --skill arxivgit clone --depth 1 https://github.com/diillson/chatcliWrote 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/diillson/chatcli/arxiv)<a href="https://agentmods.dev/skills/diillson/chatcli/arxiv"><img src="https://agentmods.dev/badge/skills/diillson/chatcli/arxiv.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00065 | $0.00533 |
| Opus 5 | $0.00032 | $0.00267 |
| Sonnet 5 | $0.00013 | $0.00107 |
| Haiku 4.5 | $0.00006 | $0.00053 |
Grade A, and why
arxiv 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 4d 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`, or `@webfetch`). The API returns Atom XML. What it actually says
arXiv Research
Search arXiv via its free REST API — no key, no dependency, just HTTP (via @coder exec/Bash
curl, or @webfetch). The API returns Atom XML.
Search
curl -s "https://export.arxiv.org/api/query?search_query=all:diffusion+models&start=0&max_results=5"
Field prefixes: ti: title, au: author, abs: abstract, cat: category (e.g. cs.LG).
Combine with +AND+/+OR+. Sort: &sortBy=submittedDate&sortOrder=descending.
Fetch a specific paper
curl -s "https://export.arxiv.org/api/query?id_list=2402.03300"
Parse <title>, <author><name>, <summary>, and the <link> to the PDF with grep/sed
or pipe through python3 for clean output.
Read the paper
- Abstract page →
@webfetchhttps://arxiv.org/abs/<id> - Full text →
@webfetchhttps://arxiv.org/pdf/<id>(then summarize sections the user wants)
Workflow for "find + summarize"
- Search → pick the top N by relevance/recency.
- For each, fetch the abstract; present title, authors, year, one-line summary, link.
- If the user picks one,
@webfetchthe PDF and give a structured summary (problem → method → results → limitations).
Rules
- Respect arXiv's rate limit: ~1 request / 3s; batch with
max_resultsinstead of looping fast. - Always include the arXiv ID and link so the user can verify.
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.
- 4d ago First seen · 54 lines · 65 tokens per session scan A f94c903fadad
arxiv is a skill published in the GitHub repository diillson/chatcli (90 stars, last pushed today), licensed Apache-2.0. It adds 65 tokens to every session and 533 once invoked, about $0.0003 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-09-03.
Other skills, from other repositories
sn-search-academic
An academic research tool for finding papers and encyclopedia entries, reading papers in full or by section, and tracing references and citations. It supports structured literature research.
imaging-data-commons
Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Use for accessing large-scale radiology (CT, MR, PET) and pathology datasets for AI training or research. No authentication required. Query by metadata, visualize in browser, check licenses.
flow-cytometry-analysis
Complete flow cytometry analysis pipeline. FCS file handling, compensation, manual/automated gating, immunophenotyping, CFSE proliferation analysis, cell cycle analysis (Dean-Jett-Fox), and apoptosis assays. Extends flowio with analytical workflows. For raw FCS parsing only use flowio.
glycobiology
Glycosylation site prediction and glycobiology analysis. N-glycosylation motif finding, O-glycosylation hotspot prediction, glycan structure resources. Lightweight, pure Python. For protein function queries use uniprot-database; for structure analysis use alphafold-database.
datamol
Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…
peer-review
Structured manuscript/grant review with checklist-based evaluation. Use when writing formal peer reviews with specific criteria methodology assessment, statistical validity, reporting standards compliance (CONSORT/STROBE), and constructive feedback. Best for actual review writing, manuscript revision. For evaluating…