Benchmark Claude Code configuration packages
Project description
token-miser
A/B test coding-agent configurations.
token-miser runs identical tasks under different agent/package combinations and measures token usage, cost, and task-completion quality. It supports Claude Code and Codex from the same CLI, so you can compare a vanilla setup against a tuned package — across one agent or both.
Benchmark Results
rubin-johnson.github.io/token_miser — live dashboard with pass rates, token usage, and cost across packages and suites.
All experiment data is collected by the repo owner on a consistent setup. See Submitting a package if you want your package included.
Concepts
- Task — A YAML file describing work for an agent: a prompt, a target repo, success criteria, and a quality rubric.
- Package — A configuration directory with a
manifest.yamlthat bundlesCLAUDE.md/AGENTS.md, optionalsettings.json(hooks, permissions), and optional services. - Suite — A named collection of tasks (e.g.
quick,standard,axis,domain-python-api). - Run — A single execution of a task under one package.
- Experiment — One or more runs across baseline/package and agent combinations.
Requirements
- Python 3.11+
- Claude Code CLI installed and authenticated (
claude auth status) - Codex CLI installed and authenticated for Codex runs (
codex)
Install
uv tool install .
Or run directly:
uv run token-miser --help
Quick start
The tune command is the primary workflow — it runs a suite of tasks against a baseline and one or more packages, then reports results:
# Run the quick suite (8 tasks) against the caveman package
token-miser tune --suite quick --package caveman --yes
# Test with both Claude and Codex
token-miser tune --suite quick --package caveman --agent both --yes
# Compare multiple packages across the axis suite
token-miser tune --suite axis --package c-structured --agent both --yes
For single-task experiments:
# Run one task against a package
token-miser run \
--task benchmarks/tasks/bm-axis-explore.yaml \
--baseline vanilla \
--package caveman
# Compare results
token-miser compare --task bm-axis-explore
# Inspect a specific run
token-miser history
token-miser show 1
Commands
| Command | Purpose |
|---|---|
tune |
Run a benchmark suite against baseline + package (primary workflow) |
run |
Execute a single task under baseline and/or package |
compare |
Side-by-side comparison of runs for a task |
analyze |
Statistical summary (mean, stdev, median per package) |
matrix |
Cross-package comparison grid (text + JSON export) |
history |
List all recorded runs |
show <id> |
Inspect a specific run in detail |
digest |
Export run data for git tracking |
suite |
List, validate, or pre-clone suite repos |
packages / list |
List available packages |
publish |
Publish a package to a git repo for kanon distribution |
tasks |
List available task YAML files |
migrate |
Initialize or migrate the database |
tune
token-miser tune \
--suite axis \
--package caveman \
--agent both \
--model sonnet \
--timeout 600 \
--yes
| Flag | Default | Purpose |
|---|---|---|
--suite |
standard |
Benchmark suite name |
--package |
(optional) | Package to test: name or path |
--agent |
claude |
claude, codex, openai (alias), or both |
--model |
agent-specific | Claude defaults to sonnet; Codex to gpt-5.4 |
--timeout |
600 |
Per-task timeout in seconds |
--skip-baseline |
off | Reuse the last baseline run |
--bare |
off | Skip hooks/plugins (cheaper, less realistic) |
--yes |
off | Skip confirmation prompts |
run
token-miser run \
--task benchmarks/tasks/bm-axis-explore.yaml \
--baseline vanilla \
--package caveman \
--agent codex \
--timeout 600
| Flag | Default | Purpose |
|---|---|---|
--task |
(required) | Path to task YAML |
--baseline |
(required) | Baseline: vanilla, package name, or path |
--package |
(optional) | Package to test: name or path |
--agent |
claude |
claude, codex, openai (alias), or both |
--model |
agent-specific | Claude defaults to sonnet; Codex to gpt-5.4 |
--timeout |
600 |
Per-invocation timeout in seconds |
Global flags
| Flag | Default | Purpose |
|---|---|---|
--packages-dir |
$TOKEN_MISER_PACKAGES_DIR or ./packages |
Directory containing packages |
Package names (no /) resolve to {packages-dir}/{name}/. Paths with / are used as-is.
Suites
Six benchmark suites ship in benchmarks/suites/:
| Suite | Tasks | Focus |
|---|---|---|
quick |
8 | Fast screening |
standard |
15 | General-purpose benchmark |
axis |
8 | Interaction patterns (explore, multiturn, diff, testrun, bashheavy, smallio, reasoning, bigoutput) |
domain-python-api |
8 | Python API development |
domain-iac |
8 | Infrastructure as code |
domain-frontend |
8 | Frontend development |
token-miser suite list # show available suites
token-miser suite validate # check all task YAMLs are valid
token-miser suite prep # pre-clone repos to speed up runs
Task format
id: my-task
name: "Human-readable name"
repo: "${EXPERIMENT_REPO}" # resolved from environment
starting_commit: "abc1234"
prompt: |
What you want the agent to do...
success_criteria:
- type: file_exists
paths: ["some/file.py"]
- type: command_exits_zero
command: "uv run pytest"
quality_rubric:
- dimension: "correctness"
prompt: "Score 0-1 based on..."
Task repo fields support ${VAR} expansion from environment variables, so tasks are portable across machines.
How it works
For each run in an experiment:
- Create an isolated temp directory as
HOME - Clone the task's target repo and checkout the starting commit
- Copy the selected agent's auth/config into the isolated HOME
- Apply the selected package (copy targets, deep-merge
settings.json) - Invoke the selected backend:
- Claude:
claude --print --dangerously-skip-permissions --output-format json - Codex:
codex exec --json --sandbox workspace-write --full-auto
- Claude:
- Check success criteria against the workspace
- Optionally score quality via Claude-as-judge (requires
ANTHROPIC_API_KEY) - Store results in SQLite (
~/.token_miser/results.db)
Packages
24 packages ship in packages/, spanning different optimization strategies:
| Package | Strategy |
|---|---|
caveman |
Minimal tool use, think before acting |
c-structured |
Structured output, systematic approach |
tdd-strict |
Strict TDD — failing test first, always |
thorough |
Maximize correctness — read everything, explain reasoning |
token-miser |
Minimize tokens — terse output, lazy reads, no extras |
lean |
Minimal overhead, skip unnecessary steps |
personal |
Rubin's full personal config — everything, everywhere, all at once |
rtk |
Rust CLI hook that compresses verbose command outputs |
| ... | See token-miser list for all 24 |
Each package is a directory with a manifest.yaml:
name: my-package
version: 0.1.0
author: your-name
description: What this package does
targets:
- path: AGENTS.md
dest: AGENTS.md
- path: settings.json # optional — deep-merged into experiment config
dest: settings.json
Packages can include CLAUDE.md/AGENTS.md instructions, settings.json for hooks and permissions, and hook scripts. The settings.json is deep-merged with any existing experiment configuration rather than overwriting it.
To use packages from another directory:
export TOKEN_MISER_PACKAGES_DIR=~/.claude/packages
token-miser list
token-miser tune --package lean
Shared instructions
Codex uses AGENTS.md. Claude Code uses CLAUDE.md. To share one instruction file across agents, use the @AGENTS.md import pattern in CLAUDE.md:
# CLAUDE.md
@AGENTS.md
Matrix runs
For package screening across a benchmark suite:
SUITE=quick REPEATS=1 AGENTS=claude,codex \
./scripts/run-suite-shared-baseline.sh
Runs one shared vanilla baseline per agent x repeat x suite, then reuses it across packages.
For stricter order-balanced comparisons:
SUITE=quick REPEATS=2 AGENTS=claude,codex \
./scripts/run-suite-crossover.sh
Alternates baseline/package order by repeat to control for run-to-run drift.
Data
All results are stored locally in ~/.token_miser/results.db (SQLite). Runs record the agent backend, so Claude and Codex experiments coexist in the same history and reports.
token-miser history # compact list of all runs
token-miser show 12 # full token breakdown for one run
token-miser matrix --suite axis --json results.json # export comparison grid
CI grading
Add automated benchmarking and a quality badge to any package repo.
Prerequisites: AWS Bedrock access (Claude claude-haiku-4-5-20251001 in us-east-2). Add AWS_ROLE_TO_ASSUME as a repository variable in GitHub → Settings → Variables → Actions pointing to an IAM role with bedrock:InvokeModel permissions.
Setup:
- Copy
docs/grade-template.ymlto.github/workflows/grade.ymlin your package repo - Configure your AWS OIDC role (AWS OIDC guide)
- Push — the workflow runs on every PR and posts a quality score comment
Workflow status badge (green = all tasks passed):
[](https://github.com/<owner>/<repo>/actions/workflows/grade.yml)
Score JSON badge (shows quality rate %, updates each run):
[](https://github.com/<owner>/<repo>/actions/workflows/grade.yml)
Host score.json somewhere public (GitHub Pages, a gist) and replace <raw-score-json-url> with its raw URL.
Development
git clone https://github.com/caylent/token_miser.git
cd token_miser
uv sync
uv run pytest -q
uv run token-miser --help
Submitting a package for benchmarking
All benchmark data is collected by me (Rubin Johnson) on a consistent hardware and model setup. I don't accept self-reported numbers — I run all experiments myself so results are comparable.
To submit a package:
- Open a GitHub issue titled
benchmark request: <package-name> - Include your package files (
CLAUDE.md/AGENTS.md, optionalsettings.json, optional hooks) - Describe the strategy in 2-3 sentences: what behavior it changes and why
- Include reproduction details: model, suite, any env requirements
- If you have your own numbers, include them — I'll run independently and compare
Packages that test a genuinely new strategy dimension are most likely to get picked up.
If your package is already in a kanon registry, link to it in the issue.
Ecosystem
kanon distributes versioned configuration packages. token-miser benchmarks them by running identical tasks under baseline and package configurations, then comparing token usage, cost, and quality. Results can be published back to kanon so teams converge on the best-performing package.
kanon distributes -> token-miser measures -> publish to kanon
(versioned packages) (A/B comparison) (best package wins)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file token_miser-0.3.0.tar.gz.
File metadata
- Download URL: token_miser-0.3.0.tar.gz
- Upload date:
- Size: 234.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65c66b2593d7c34498c9d61c919cf765171e0dbb4b4a01e1e06fca796c5fa821
|
|
| MD5 |
b6fe84696b7d16851cdbaef0fa5fda29
|
|
| BLAKE2b-256 |
4ca50d19d4cfd5ed277d462a89e4ef6fe50ce9869620024517f2a02dd395b683
|
Provenance
The following attestation bundles were made for token_miser-0.3.0.tar.gz:
Publisher:
publish.yml on caylent/token_miser
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
token_miser-0.3.0.tar.gz -
Subject digest:
65c66b2593d7c34498c9d61c919cf765171e0dbb4b4a01e1e06fca796c5fa821 - Sigstore transparency entry: 1464710388
- Sigstore integration time:
-
Permalink:
caylent/token_miser@2249f6b5a3ba3a8c1c3af1969154523187b19237 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/caylent
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2249f6b5a3ba3a8c1c3af1969154523187b19237 -
Trigger Event:
push
-
Statement type:
File details
Details for the file token_miser-0.3.0-py3-none-any.whl.
File metadata
- Download URL: token_miser-0.3.0-py3-none-any.whl
- Upload date:
- Size: 59.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77f98de95300ae699cdc5bf2b364189059a9d737fb1bb6acf6047ac29bf5955d
|
|
| MD5 |
1ea3c183337289acf7bbc2c4ef222e9e
|
|
| BLAKE2b-256 |
c61b14f6a27b94213d9034b5f4197600e5a3a5bb59ec386a02851fc4fd361947
|
Provenance
The following attestation bundles were made for token_miser-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on caylent/token_miser
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
token_miser-0.3.0-py3-none-any.whl -
Subject digest:
77f98de95300ae699cdc5bf2b364189059a9d737fb1bb6acf6047ac29bf5955d - Sigstore transparency entry: 1464710512
- Sigstore integration time:
-
Permalink:
caylent/token_miser@2249f6b5a3ba3a8c1c3af1969154523187b19237 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/caylent
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2249f6b5a3ba3a8c1c3af1969154523187b19237 -
Trigger Event:
push
-
Statement type: