benchmark-writer

benchmark-writer is a skill for Claude Code, Codex from stellarshenson/claude-code-plugins. It costs 40 tokens per session (2,106 once invoked), scanned A, original, MIT.

A guide for writing BENCHMARK.md, a file that turns project progress into a measurable score. It uses repeated checks and metrics so results can be compared over time.

In plain words
What is it for?
It helps define scores from tests, lint results, counts, data-science measures, checklists, and other programmatic signals.
Why use it?
It prevents progress from being judged only by opinions or vague checklists. It also keeps measurement separate from plans and rules for stopping work.

Skill for Claude CodeCodex

Part of the autobuild plugin — 4 skills, 1 command, 1 agent 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 skills/stellarshenson/claude-code-plugins/benchmark-writer
Any agent
npx skills add stellarshenson/claude-code-plugins --skill benchmark-writer
Clone the repo
git clone --depth 1 https://github.com/stellarshenson/claude-code-plugins

Made for: Claude Code, Codex.

Or install autobuild, the plugin that ships this one along with the rest of its 4 skills, 1 command, 1 agent.

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 benchmark-writer

README.md
[![agentmods](https://agentmods.dev/badge/skills/stellarshenson/claude-code-plugins/benchmark-writer.svg)](https://agentmods.dev/skills/stellarshenson/claude-code-plugins/benchmark-writer)
Your own site
<a href="https://agentmods.dev/skills/stellarshenson/claude-code-plugins/benchmark-writer"><img src="https://agentmods.dev/badge/skills/stellarshenson/claude-code-plugins/benchmark-writer.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,106 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 $0.00040 $0.02106
Opus 5 $0.00020 $0.01053
Sonnet 5 $0.00008 $0.00421
Haiku 4.5 $0.00004 $0.00211

Measured 4d ago against content hash dcecb3854702, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

benchmark-writer 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.

- API: `curl -s endpoint | jq '.status'` or pytest fixture
plugins/autobuild/skills/benchmark-writer/SKILL.md · 213 lines

How it starts

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

Benchmark Writer

What is the benchmark?

Benchmark = scalar evaluation function. Takes codebase state, outputs ONE number. Tells orchestrator how far from done.

NOT a plan. NOT exit conditions. NOT a to-do list. MEASUREMENT INSTRUMENT. Same benchmark runs every iteration, produces comparable score. Trajectory (down for MINIMIZE, up for MAXIMIZE) reveals progress.

Belongs in benchmark: score formula, programmatic checks, data science metrics (MSE, F1, correlation), binary checklist items, fuzzy scales (0-10 with rubrics), iteration log.

Does NOT belong (MOST COMMON MISTAKE): exit conditions, completion conditions, convergence criteria. ALWAYS PROGRAM.md, NEVER BENCHMARK.md. Writing "stop", "exit", "completion", "converge" in benchmark - STOP, move to program.

Prerequisites

PROGRAM.md exists, user-approved.

Process

Round 1: Identify measurable signals

Read PROGRAM.md. ASK user - all in ONE message:

  1. What can we measure programmatically? Propose concrete metrics per work item:

    • Line counts (wc -l), function counts (grep -c "def ")
    • Test counts (pytest --co -q | tail -1), test pass rate
    • Lint violations (ruff check --statistics)
    • Complexity scores (radon cc -s -a)
    • File existence (test -f path)
    • grep pattern counts
    • Custom script output (one-liner computing a metric)
    • Data science metrics (for models, simulations, statistical behavior):
      • Error: MSE, RMSE, MAE, MAPE
      • Distribution: KL divergence, Wasserstein, Kolmogorov-Smirnov
      • Classification: F1, precision, recall, accuracy, ROC-AUC
      • Correlation: Pearson r, Spearman rho, R-squared
      • Statistical: p-values, chi-squared, t-test
      • Custom: any domain metric from simulation/model output
  2. Target per metric? Current → target.

  3. What can't be measured programmatically? Becomes fuzzy scale (0-10) with rubric. Last resort. Every fuzzy scale justifies why.

  4. Execution recipe per check? Exact command, script, procedure. Repeatable:

    • Shell: make test, pytest --co -q | tail -1, ruff check --statistics | tail -1
    • Python: one-liners or dedicated scripts outputting a number
    • Scenario tests:
      • Playwright: npx playwright test --reporter=json | jq '.stats.unexpected'
      • API: curl -s endpoint | jq '.status' or pytest fixture
      • Simulation: python run_simulation.py --config test.yaml | grep 'metric:'
      • Generative: prompt template + expected output pattern (e.g. "run claude -p 'prompt', check output contains X")
    • Baselines: store baseline for before/after comparisons

Read the full file on GitHub · 213 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. 4d ago First seen · 213 lines · 40 tokens per session scan A dcecb3854702

Subscribe to this mod's changes

benchmark-writer is a skill published in the GitHub repository stellarshenson/claude-code-plugins (3 stars, last pushed 5d ago), licensed MIT. It adds 40 tokens to every session and 2,106 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens