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/stellarshenson/claude-code-plugins/benchmark-writernpx skills add stellarshenson/claude-code-plugins --skill benchmark-writergit clone --depth 1 https://github.com/stellarshenson/claude-code-pluginsWrote 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/stellarshenson/claude-code-plugins/benchmark-writer)<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>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 | $0.00040 | $0.02106 |
| Opus 5 | $0.00020 | $0.01053 |
| Sonnet 5 | $0.00008 | $0.00421 |
| Haiku 4.5 | $0.00004 | $0.00211 |
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 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:
-
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
- Line counts (
-
Target per metric? Current → target.
-
What can't be measured programmatically? Becomes fuzzy scale (0-10) with rubric. Last resort. Every fuzzy scale justifies why.
-
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")
- Playwright:
- Baselines: store baseline for before/after comparisons
- Shell:
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.
- 4d ago First seen · 213 lines · 40 tokens per session scan A dcecb3854702
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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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.
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.
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.
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.
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…