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 agentmods add skills/agentcomputerai/torch/arxivnpx skills add AgentComputerAI/torch --skill arxivgit clone --depth 1 https://github.com/AgentComputerAI/torchWhat 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 | $0.00078 | $0.01765 |
| Opus 5 | $0.00039 | $0.00882 |
| Sonnet 5 | $0.00016 | $0.00353 |
| Haiku 4.5 | $0.00008 | $0.00177 |
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 2d 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://arxiv.org/list/cs.AI/recent` returns the full DOM with every paper already in place. HTTP/2 200, no challenge page. How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
arXiv (arxiv.org)
arXiv is the friendliest scraping target on the internet. The listing pages are static server-rendered HTML with zero anti-bot, zero CAPTCHAs, zero rate-limit headers in practice, and a dead-simple ?skip=&show= pagination query string that accepts arbitrarily large page sizes (tested up to 2000). Skip the browser; skip cheerio-heavy recon; just fetch and parse.
Detection
| Signal | Value |
|---|---|
| Server | Google Frontend + Varnish cache |
| CDN / anti-bot | None visible (x-cache: HIT is normal) |
| Framework | Plain server-rendered HTML (no React, no Next, no hydration) |
| Auth | None |
| robots.txt | Allows /list/, /abs/, /pdf/ |
curl -sL https://arxiv.org/list/cs.AI/recent returns the full DOM with every paper already in place. HTTP/2 200, no challenge page.
Architecture
Listing pages live at https://arxiv.org/list/<category>/recent (or /<YYMM> for a specific month). Each entry is rendered as a <dt> + <dd> pair inside <dl id="articles">:
<dt>holds the arXiv ID, abstract link, and pdf/html/other format links.<dd>holds.list-title,.list-authors,.list-subjects, and optional.list-comments/.list-journal-ref.
Pagination is a query string: ?skip=<n>&show=<page_size>. The page honors show=2000 and will emit the entire category on a single response, so for "recent" you almost never need to paginate.
Strategy used
- Phase 0 (curl): 200 OK, full HTML,
Total of N entriesvisible. Gate A passed. - Phase 1 (framework): Not needed — raw HTML already contains all target data.
- Phase 2 (browser): Skipped entirely.
Final approach: single fetch() + cheerio selectors.
Stealth config that works
None required. A polite UA is courteous but not necessary:
fetch(url, {
headers: { 'user-agent': 'Mozilla/5.0 (torch scraper; +https://github.com/agentcomputer/torch)' }
});
No cookies, no referer, no proxy, no stealth plugin.
Extraction
Use ?show=2000 to grab the entire listing in one shot:
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.
- 2d ago First seen · 142 lines · 78 tokens per session scan A 8f77fcd59edc
arxiv is a skill published in the GitHub repository AgentComputerAI/torch (5 stars, last pushed 4mo ago), licensed MIT. It adds 78 tokens to every session and 1,765 once invoked, about $0.0004 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
agent-matrix-optimizer
Agent skill for matrix-optimizer - invoke with $agent-matrix-optimizer.
weather-fetcher
Instructions for fetching current weather temperature data for Dubai, UAE from Open-Meteo API.
cuopt-numerical-optimization-formulation
LP, MILP, QP — concepts, problem-text parsing, and formulation patterns (parameters, constraints, decisions, objective). Concepts only; no API.
digital-health-clinical-asr-finetune
Stage 4 of the Clinical ASR Flywheel. Use when priority KER is above 0.3 to run stock NeMo SFT on Parakeet TDT v2 and offline cycle N+1 re-eval. NOT for generic word boosting (use /finetune-asr).
cupynumeric-migration-readiness
Pre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment…
cupynumeric-parallel-data-load
Load a sharded, on-disk dataset (sharded .npy, Parquet/Arrow, raw binary, sharded HDF5, custom layouts) into a distributed cuPyNumeric ndarray via a manual partition + leaf @task launch with CPU/OMP/GPU variants. Use when no single-call loader fits, including when per-shard row counts differ across files. Prefer…