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 DanielTomaro13/sportsdata-agents --skill build_a_totals_modelgit clone --depth 1 https://github.com/DanielTomaro13/sportsdata-agentsWrote 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/danieltomaro13/sportsdata-agents/build_a_totals_model)<a href="https://agentmods.dev/skills/danieltomaro13/sportsdata-agents/build_a_totals_model"><img src="https://agentmods.dev/badge/skills/danieltomaro13/sportsdata-agents/build_a_totals_model/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/danieltomaro13/sportsdata-agents/build_a_totals_model"><img src="https://agentmods.dev/badge/skills/danieltomaro13/sportsdata-agents/build_a_totals_model.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.00032 | $0.00488 |
| Opus 5 | $0.00016 | $0.00244 |
| Sonnet 5 | $0.00006 | $0.00098 |
| Haiku 4.5 | $0.00003 | $0.00049 |
Grade A, and why
build_a_totals_model 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 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.
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.
What it actually says
Build a totals model — worked example
Follow model_development for the method; this is the totals instantiation.
Recipe (run_python, one script)
- Data: per-game totals for both teams across as many seasons as the regime allows — count EVENTS against the parameter budget (model_development §2: 10–20 outcomes per parameter; a recent-window-only model must say how little it knows). Weight recency (exponential decay, half-life tuned on train) rather than truncating to a tiny window.
- Model the scoring process: totals are sums of scoring events — Normal(μ, σ) for high-scoring sports (basketball), Poisson for low-scoring (soccer/NHL goals). μ from pace-adjusted team offense/defense; σ estimated, not assumed (floor it sensibly; print it).
- Probability:
p_over = 1 - CDF(line)— hand-rolled normal CDF (0.5 * (1 + math.erf((x - mu) / (sigma * 2**0.5)))) keeps the sandbox dependency-free. - Features beyond pace (ask the user which they value — model_development §3): rest days, altitude/venue, weather for outdoor sports. Each one is a parameter; justify it.
- Holdout: train on the earlier slice, collect {prob, outcome} on the later
slice ONLY,
calibration_metrics→save_model(params: μ/σ method, weights, seasons, line convention) →record_predictionswith honestpredicted_at.
Honesty rules
- A Brier ≥ 0.25 on a balanced set is coin-flip territory — say so plainly.
- The bar is the closing total (
query_line_movement), not the base rate (quant_concepts: CLV) — report model vs market side by side.
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.
- 11d ago First seen · 36 lines · 32 tokens per session scan A 7709bb6c1c30
build_a_totals_model is a skill published in the GitHub repository DanielTomaro13/sportsdata-agents (5 stars, last pushed 8d ago), licensed MIT. It adds 32 tokens to every session and 488 once invoked, about $0.0002 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
committee-prep
Utiliser pour préparer un comité d'arbitrage ou un comité de pilotage. Produit une synthèse de fond, des contre-arguments classés, les objections anticipées par participant, une formulation médiane et les critères de décision attendus.
subagent-driven-development
Execute plans via delegatetask subagents (2-stage review).
mcporter
List, auth, and call MCP servers/tools from the terminal.
article-writing
Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice derived from supplied examples or brand guidance. Use when the user wants polished written content longer than a paragraph, especially when voice consistency, structure, and credibility matter.
research-engineer
An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…