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 topprismdata/cultivating-ml-agent --skill arxiv-paper-searchgit clone --depth 1 https://github.com/topprismdata/cultivating-ml-agentWrote 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/topprismdata/cultivating-ml-agent/arxiv-paper-search)<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/arxiv-paper-search"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/arxiv-paper-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/topprismdata/cultivating-ml-agent/arxiv-paper-search"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/arxiv-paper-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.00078 | $0.01164 |
| Opus 5 | $0.00039 | $0.00582 |
| Sonnet 5 | $0.00016 | $0.00233 |
| Haiku 4.5 | $0.00008 | $0.00116 |
Grade A, and why
arxiv-paper-search 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.
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.
How it starts
The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Arxiv Paper Search (Real-Time Knowledge)
Context
Static skills freeze at knowledge-cutoff date. ML papers come out daily. This skill enables the agent to fetch fresh academic knowledge directly from arxiv and Semantic Scholar at decision time. Essential for staying current with rapidly evolving fields (LLM agents, time series, multi-modal learning).
The core insight: skills + live search = always-current knowledge. Don't memorize; learn how to fetch.
Guidance
Basic Usage
from framework.src.knowledge import ArxivSearch
search = ArxivSearch() # respects arxiv's 3s rate limit
papers = search.search("time series forecasting transformer", max_results=10)
for p in papers:
print(f"[{p.year}] {p.title}")
print(f" Authors: {', '.join(p.authors[:3])}")
print(f" PDF: {p.pdf_url}")
Recent Papers by Category
# "What came out in cs.LG this week?"
recent = search.search_recent(category="cs.LG", days=7, max_results=20)
Use Semantic Scholar for Citations & TLDR
from framework.src.knowledge import SemanticScholar
ss = SemanticScholar() # add api_key= for higher rate limits
papers = ss.search("tabular foundation models", max_results=10)
for p in papers:
if p.tldr:
print(f"TLDR: {p.tldr}") # auto-generated 1-sentence summary
print(f"Cited by: {p.citation_count} (influential: {p.influential_citation_count})")
Aggregate Everything
from framework.src.knowledge import KnowledgeAggregator
agg = KnowledgeAggregator()
report = agg.search_all("cross-competition feature transfer", max_per_source=10)
print(report.to_markdown()) # papers + kaggle discussions combined
# Optionally persist to vault for future recall
path = agg.write_report_to_vault(report) # writes to docs/ml-agent-memory/auto-search/
Decision Workflow
1. Start a new technique exploration?
→ search_arxiv_recent(category="cs.LG", days=14)
2. Need to compare approaches?
→ search_papers(query) — Semantic Scholar returns TLDR + citations
3. Found an interesting one? Check follow-ups:
→ get_paper_citations(arxiv_id) — who built on it?
4. Combine with Kaggle discussions:
→ knowledge_search(query) — one-stop papers + forum
5. Persist findings:
→ write_report_to_vault(report)
→ mem.remember(MemoryItem(importance=0.8, type="experiment"))
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.
- 12d ago First seen · 120 lines · 78 tokens per session scan A a85fe71e8739
arxiv-paper-search is a skill published in the GitHub repository topprismdata/cultivating-ml-agent (5 stars, last pushed 15d ago), licensed MIT. It adds 78 tokens to every session and 1,164 once invoked, about $0.0004 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-31.
Other skills, from other repositories
emem-field-tokens
Get a native-resolution raster field over an area from emem, or a field over time, as a signed, verifiable artifact rather than a set of per-cell scalars. Use when the user needs the actual grid of values over an area of interest (a world model input, an NDVI/band drape, change analysis over a scene window, exportable…
emem-recall-polygon
Recall signed Earth-observation facts at every cell inside a user-supplied polygon. Use when the user asks about an extent rather than a point — "what's the average NDVI inside this watershed", "show me precipitation across the Western Ghats", "what's the elevation profile of this region". Accepts a polygon as [lng…
emem-locate-and-recall
Resolve a free-form place name to an emem cell64 and recall signed Earth-observation facts at that location. Use when the user asks about current weather, vegetation index, elevation, soil properties, or any other geospatial measurement at a named place ("what's the temperature in Bengaluru", "how high is Denali"…
calculator
Math calculations, unit conversions, date/time arithmetic, and currency rates. Python-powered, no API needed for math.
tensorboard
Visualize training metrics, debug models with histograms, compare experiments, visualize model graphs, and profile performance with TensorBoard - Google's ML visualization toolkit.
literature-survey
Use when the user wants a comprehensive literature survey on a specific research topic. Outputs a complete PDF survey (6–20 pages, 60+ real citations, 100+ recommended) with LaTeX source, taxonomy figures, and a classified literature table. Single-stage, no Python runtime.