experiment-runner

experiment-runner is an agent for Claude Code from cdeust/zetetic-team-subagents. It costs 22 tokens per session (8,832 once invoked), scanned A, original, MIT.

An agent for planning and evaluating machine-learning experiments. It supports pre-registration, Fisher-style experimental design, and records that make results reproducible across frameworks and tracking tools.

In plain words
What is it for?
Use it for ablation studies, benchmark comparisons, parameter sweeps, A/B decisions, and reports based on measured numbers. It can work with tools such as PyTorch, TensorFlow, JAX, scikit-learn, W&B, MLflow, TensorBoard, or CSV logs.
Why use it?
It helps separate reliable findings from results caused by one random run, a lucky setting, or an unclear procedure. It focuses on measured claims and requires attention to variation across runs.

Agent for Claude Code

Written for Claude Code: when-to-use in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; mentions subagents.

Part of the zetetic-team-subagents plugin — 15 skills, 1 command, 23 agents, 6 hooks, 1 MCP server shipped together

Install

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.

agentmods
npx agentmods add agents/cdeust/zetetic-team-subagents/experiment-runner
Clone the repo
git clone --depth 1 https://github.com/cdeust/zetetic-team-subagents

Made for: Claude Code.

Or install zetetic-team-subagents, the plugin that ships this one along with the rest of its 15 skills, 1 command, 23 agents, 6 hooks, 1 MCP server.

Wrote 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.

agentmods badge for experiment-runner

README.md
[![agentmods](https://agentmods.dev/badge/agents/cdeust/zetetic-team-subagents/experiment-runner.svg)](https://agentmods.dev/agents/cdeust/zetetic-team-subagents/experiment-runner)
Your own site
<a href="https://agentmods.dev/agents/cdeust/zetetic-team-subagents/experiment-runner"><img src="https://agentmods.dev/badge/agents/cdeust/zetetic-team-subagents/experiment-runner.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 8,832 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00022 $0.08832
Opus 5 $0.00011 $0.04416
Sonnet 5 $0.00004 $0.01766
Haiku 4.5 $0.00002 $0.00883

Measured yesterday against content hash a98cc4746f07, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

experiment-runner 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 yesterday.

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.

agents/experiment-runner.md · 403 lines

How it starts

The opening of the file, as written. The whole thing — 403 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are not a personality. You are the procedure. When the procedure conflicts with "the deadline is tomorrow" or "the single run looks great," the procedure wins.

You adapt to the project's framework (PyTorch, TensorFlow, JAX, scikit-learn, custom) and tracking stack (W&B, MLflow, TensorBoard, CSV logs). The principles below are framework-agnostic; you apply them using the idioms of the stack you are working in.

When an experiment is about to be designed, run, or reported. Use for ablation studies, benchmark comparisons, hyperparameter sweeps, A/B decision artifacts, or any claim that rests on measured numbers. Pair with Fisher for design-of-experiments, research-scientist for question framing, Pearl for causal identification from observational data, Feynman for integrity audit, Popper for falsifiability, Cochrane for cross-run synthesis, Curie for instrument calibration.

Henderson et al. (2018), "Deep Reinforcement Learning That Matters": on canonical RL benchmarks, the same algorithm on the same task can swing by large margins across seeds and hyperparameter searches. A single-seed number is an anecdote; a claim requires multi-seed reporting with variance.

Dodge et al. (2019), "Show Your Work": performance is a function of compute budget. Reporting only the best number at a given budget without declaring the budget — or comparing methods at different budgets — makes comparison meaningless. Report compute used, and expected best validation performance as a function of budget.

Reproducibility checklists (NeurIPS, OECD, ML Reproducibility Challenge): minimum manifest per run is code hash, data hash, seed, hyperparameters, hardware, wall-clock, package versions. Missing any one of these downgrades the result to "unverified."

p-hacking literature (Simmons, Nelson, Simonsohn 2011; Gelman & Loken 2014): researcher degrees of freedom — optional stopping, optional outcome selection, optional subgroup analysis — inflate false-positive rates far above nominal α. Pre-registration is the only mechanical remedy.

Idiom mapping per framework:

  • Seed control: PyTorch torch.manual_seed + torch.use_deterministic_algorithms(True) + CUBLAS_WORKSPACE_CONFIG; TF set_random_seed; JAX explicit PRNGKey; numpy default_rng(seed).
  • Code hash: git rev-parse HEAD + dirty-check; refuse to run from a dirty tree for recorded experiments.
  • Data hash: SHA-256 of the split manifest (sorted filenames + sizes), not of raw data on disk.
  • Config files: YAML / JSON / Hydra / OmegaConf; one config = one row. No CLI-only runs for recorded experiments.
  • Tracking: log hyperparameters, metrics, training curves, GPU utilization, peak memory, wall-clock. Use the project's tracker.

Read the full file on GitHub · 403 lines

Changes

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.

  1. yesterday Changed a98cc4746f07
  2. 6d ago First seen · 403 lines · 22 tokens per session scan A b8620eb9f07d

Subscribe to this mod's changes

experiment-runner is an agent published in the GitHub repository cdeust/zetetic-team-subagents (7 stars, last pushed yesterday), licensed MIT. It adds 22 tokens to every session and 8,832 once invoked, about $0.0001 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.

Related

Other agents, from other repositories

experiment-runner

ML experiment design specialist — ablation studies, hyperparameter search, reproducibility, statistical rigor, and result analysis.

cdeust/ai-architect-mcp-codebase · 26 tokens

team-data-ml-reviewer

Stage 2 cross-functional reviewer focused on data quality, training correctness, reproducibility, and evaluation soundness.

hazarsozer/crucible-cc · 29 tokens

staff-data-sci

Personas are Opus-only. The Data Science Reviewer — data science, ML, and statistical-modeling expertise complementing the Staff Engineer's review.

dbc-oduffy/coordinator-claude · 35 tokens

ylc

Deep learning pioneer. VP and Chief AI Scientist at Meta (since 2013). Silver Professor at NYU. Co-developer with Geoffrey Hinton and Yoshua Bengio of the modern deep-learning paradigm — recognized with the 2018 ACM Turing Award. Inventor of convolutional neural networks (LeNet, late 1980s), the practical use of…

punt-labs/beadle · 107 tokens

geo-routing-engineer

Geospatial and routing specialist for Product-Builder products with maps, scheduling-by-location, or vehicle routing (route-optimization in logistics, dispatch in home services, field-booking). Owns the routing contract — geocoding, the VRP/routing model (constraints, objective), maps/distance-matrix provider…

avelikiy/great_cto · 112 tokens

metadata-extractor

Extracts paper metadata (authors, date, venue, fields, DOI/arxiv ID) and a paper-quality assessment (credibility, experimental rigor, reproducibility) from a paper's plain text. Invoked alongside lite-drafter and finding-extractor during /paperloom:ingest.

trapoom555/claude-paperloom · 63 tokens