feat: add benchmark reporting command (task 0031)
All checks were successful
CI / test (pull_request) Successful in 52s
CI / test (push) Successful in 52s

Add the maintainer-facing `bench:report` command, the offline counterpart
to `bench:run`: it opens the sample store, drains it, aggregates against the
scored suite and bonus definitions, and prints the aggregator's comparison to
stdout. It renders whatever has accumulated, annotating incomplete coverage
rather than blocking on a complete matrix.

`parseReportArgs` is the pure argument seam (`--store`, `--help`, plus a
`--self-review` / `--no-self-review` variant selector). Unlike `bench:run` the
boundary is offline — it reads only the local store, no host or Agent SDK — so
the whole `runReportCommand` is deterministic and unit-tested, not smoke-run.

Move `DEFAULT_STORE_ROOT` to `store.ts` as the single source of truth,
re-exported from `run.ts` for its existing importers.
This commit was merged in pull request #32.
This commit is contained in:
2026-07-16 16:30:20 -04:00
parent 7216d3cc31
commit 53342f67e3
7 changed files with 407 additions and 7 deletions

View File

@@ -50,8 +50,7 @@ The raw component breakdown is retained on every sample so the data can be re-we
- `run-loop.ts``runCells`, the run loop: it runs one chosen `(arm, task)` cell for a batch of trials (defaulting to five, with a reporting floor of three) by driving `runCell` and the sample store, deciding only how many trials to run and at what trial numbers. Deepening a cell continues numbering past the highest trial it already holds and appends, so a cell's sample size grows across sittings rather than being overwritten. It reimplements no orchestration — provision, run, score, and append stay in `runCell`.
- `run.ts` — the maintainer-facing run-loop command. `parseRunArgs` is the pure, unit-tested argument seam; `runBenchCommand` is the live boundary that resolves host access, resolves the scored suite against the host's self-review support, selects the task, and drives `runCells`. Invoked via `npm run bench:run` (see below).
- `aggregate.ts` — the aggregator: the pure seam that renders the accumulated sample store into a readable comparison. `readAllSamples` drains a store into a flat record list; `aggregate` rolls the records up against the task definitions into a `Report` (headline, per-tier and per-token-component breakdowns, and the bonus table); `renderReport` renders that report as stable text. The headline metric, `costEquivalentTokens`, is computed here at render time by weighting the four retained token components by ADR 0014's pricing ratios (fresh input 1×, cache-write 1.25×, cache-read 0.1×, output 5×), so the stored records can be re-weighted without re-running. It reads whatever samples exist and annotates incomplete coverage — cells below the reporting floor (partial) and unsampled cells (missing) — rather than blocking on a complete matrix. A pure function of the records plus the definitions, unit-tested against synthetic append-only sample stores.
The aggregator has no command wrapper yet; a `bench:report` CLI over it is a natural follow-up, in the same shape as `run.ts` is over `run-loop.ts`.
- `report.ts` — the maintainer-facing reporting command, the counterpart to `run.ts`. `parseReportArgs` is the pure argument seam; `runReportCommand` opens the store, drains it, aggregates against the scored suite and bonus, and prints `renderReport`. Unlike `run.ts` it has no live boundary — it reads only the local store on disk (no credentials, host, or Agent SDK) — so the whole command is deterministic and unit-tested, not smoke-run. Invoked via `npm run bench:report` (see below).
## Running a cell
@@ -67,6 +66,20 @@ Re-running the same cell deepens it — the new trials append rather than overwr
The command is executed with [`tsx`](https://tsx.is) (a devDependency) so the harness's TypeScript runs directly.
Like the runner smoke tier it drives the live host and the Claude Agent SDK, so a real run needs a configured login, the `gitea-axi` CLI on `PATH`, the Agent SDK installed (`npm install @anthropic-ai/claude-agent-sdk` — an optional peer, declared but not installed by default), and a Claude subscription.
## Reading the results
The reporting command renders whatever has accumulated in the store into the readable comparison — the cost-equivalent-token headline, coverage annotated against the reporting floor, the per-tier and per-token-component breakdowns, and the bonus table:
```
npm run bench:report
```
It reads `bench/results/` by default; pass `--store <dir>` to read a different store, and `--help` for the full flag list.
Incomplete coverage is annotated rather than hidden, so a half-run matrix still renders (unrun arms show an em dash, not a misleading zero).
Unlike `bench:run` this command is offline — it reads only the local store, never the host — so it needs no login, host, or Agent SDK, and is safe to run at any time.
The `--self-review` / `--no-self-review` flag only selects the bonus capability catalog (whether the approve/request-changes review pair appears there or in the scored suite); the scored coverage is identical either way, so set it to match the host the samples were run on.
## Tests
The harness's deterministic seams are unit-tested in this directory, colocated with their source, and run via:

177
bench/report.test.ts Normal file
View File

@@ -0,0 +1,177 @@
import { mkdtempSync, rmSync } from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { afterEach, beforeEach, describe, expect, it } from "vitest";
import type { CliDeps } from "../src/deps.js";
import type { ResultRecord } from "./result.js";
import { createSampleStore, DEFAULT_STORE_ROOT } from "./store.js";
import { parseReportArgs, runReportCommand } from "./report.js";
/** A minimal passing gitea-axi ResultRecord, overridable per sample. */
function record(overrides: Partial<ResultRecord> = {}): ResultRecord {
return {
arm: "gitea-axi",
taskId: "t1",
tier: "read",
trial: 1,
timestamp: "2026-07-16T00:00:00Z",
tokens: { freshInput: 0, cacheCreation: 0, cacheRead: 0, output: 0 },
turns: 0,
durationMs: 0,
imputedCostUsd: 0,
outcome: { pass: true },
...overrides,
};
}
describe("parseReportArgs", () => {
// Behavior: with no arguments the parser resolves the documented defaults —
// the store root falls back to the module's DEFAULT_STORE_ROOT constant (the
// single source of truth for that default, so we assert against the imported
// constant rather than the hardcoded "bench/results" string, checking the
// parser wires the module default through on omission), and self-review
// defaults to permitted, the richer scored variant (independent literal true).
it("resolves the documented defaults when no arguments are given", () => {
const result = parseReportArgs([]);
expect(result.help).toBe(false);
if (result.help) return;
expect(result.storeRoot).toBe(DEFAULT_STORE_ROOT);
expect(result.selfReview).toBe(true);
});
// Behavior: the spaced value form of --store overrides the store root the report
// reads, and --no-self-review flips the self-review variant off. Expected values
// are independent literals: the store root the maintainer supplied and false.
it("overrides the store root via spaced --store and disables self-review via --no-self-review", () => {
const result = parseReportArgs(["--store", "/tmp/bench-out", "--no-self-review"]);
expect(result.help).toBe(false);
if (result.help) return;
expect(result.storeRoot).toBe("/tmp/bench-out");
expect(result.selfReview).toBe(false);
});
// Behavior: --store also accepts the inline --store=<dir> form, and --self-review
// states the default explicitly (permitted). Expected values are independent
// literals: the inline store root and true.
it("accepts the inline --store=<dir> form and honors an explicit --self-review", () => {
const result = parseReportArgs(["--store=/tmp/x", "--self-review"]);
expect(result.help).toBe(false);
if (result.help) return;
expect(result.storeRoot).toBe("/tmp/x");
expect(result.selfReview).toBe(true);
});
// Behavior: malformed input is rejected with a usage error — an unknown flag, a
// bare positional argument (not a --flag), a value flag (--store) missing its
// value, and a value handed to the boolean --self-review (which takes none).
it("rejects malformed input with a usage error", () => {
// Unknown flag.
expect(() => parseReportArgs(["--frobnicate", "x"])).toThrow();
// Bare positional argument, not a --flag.
expect(() => parseReportArgs(["positional"])).toThrow();
// Value flag missing its value.
expect(() => parseReportArgs(["--store"])).toThrow();
// The boolean --self-review takes no value.
expect(() => parseReportArgs(["--self-review=yes"])).toThrow();
});
// Behavior: --help and its -h alias short-circuit parsing to a help request,
// winning even alongside other arguments.
it("short-circuits to a help request for --help and -h, even alongside other args", () => {
expect(parseReportArgs(["--help"]).help).toBe(true);
expect(parseReportArgs(["-h"]).help).toBe(true);
expect(parseReportArgs(["--store", "/tmp/x", "--help"]).help).toBe(true);
});
});
describe("runReportCommand", () => {
let root: string;
beforeEach(() => {
root = mkdtempSync(join(tmpdir(), "bench-report-"));
});
afterEach(() => {
rmSync(root, { recursive: true, force: true });
});
// Behavior: the offline reporting boundary opens the sample store at --store,
// drains it, aggregates against the scored suite and bonus, and prints the
// rendered comparison line-by-line through `out`, returning exit code 0. Given
// three passing gitea-axi samples on one read task — reaching the reporting
// floor of three — the rendered output labels the headline metric
// ("cost-equivalent", per the spec / ADR 0014), gives every arm a row (the
// four arms are gitea-axi, tea, gitea-mcp, raw-api), and annotates coverage
// against the "reporting floor of 3". Assertions are on the exit code and the
// presence of content, never on column layout, so they survive a rendering
// refactor. The command reads no credentials, host, or SDK, so deps are empty.
it("opens the store, aggregates, and prints the rendered comparison with exit code 0", async () => {
const store = createSampleStore(root);
store.append(record({ arm: "gitea-axi", taskId: "t1", tier: "read", trial: 1 }));
store.append(record({ arm: "gitea-axi", taskId: "t1", tier: "read", trial: 2 }));
store.append(record({ arm: "gitea-axi", taskId: "t1", tier: "read", trial: 3 }));
const deps: CliDeps = { env: {}, cwd: "/", globals: {} };
const lines: string[] = [];
const code = await runReportCommand(["--store", root], deps, (l) => lines.push(l));
const output = lines.join("\n");
// Success exit code.
expect(code).toBe(0);
// The headline metric is labelled.
expect(output.toLowerCase()).toContain("cost-equivalent");
// Every arm gets a row.
expect(output).toContain("gitea-axi");
expect(output).toContain("tea");
// Coverage is annotated against the reporting floor of three, which the
// three samples reach.
expect(output).toContain("reporting floor of 3");
});
// Behavior: an empty (never-written) store renders without error, inheriting
// the aggregator's placeholder behavior rather than special-casing it. The
// headline still labels the metric and every arm, and marks the unrun arms
// with the em-dash placeholder ("—", U+2014) rather than a misleading zero —
// the established renderReport behavior pinned by bench/aggregate.test.ts.
// Returns exit code 0. The `root` from beforeEach is created empty; nothing is
// appended.
it("renders an empty store without error, marking unrun arms with the em-dash placeholder", async () => {
const deps: CliDeps = { env: {}, cwd: "/", globals: {} };
const lines: string[] = [];
const code = await runReportCommand(["--store", root], deps, (l) => lines.push(l));
const output = lines.join("\n");
// Success exit code.
expect(code).toBe(0);
// The headline metric is labelled and every arm still appears.
expect(output.toLowerCase()).toContain("cost-equivalent");
expect(output).toContain("gitea-axi");
// An unrun arm shows the em-dash placeholder, never a zero.
expect(output).toContain("—");
});
// Behavior: --help prints the command's help and returns 0 without reading any
// store, so it works before a store exists. No store path is created or
// referenced. The help text names the command ("bench:report") — an
// independent literal.
it("prints help naming the command and returns 0 without reading a store", async () => {
const deps: CliDeps = { env: {}, cwd: "/", globals: {} };
const lines: string[] = [];
const code = await runReportCommand(["--help"], deps, (l) => lines.push(l));
const output = lines.join("\n");
expect(code).toBe(0);
expect(output).toContain("bench:report");
});
});

171
bench/report.ts Normal file
View File

@@ -0,0 +1,171 @@
// The maintainer-facing reporting command: render the accumulated sample store
// into the readable comparison.
//
// This is the reporting counterpart to run.ts. Where the run command spends the
// token budget on one cell, this command reads whatever samples have accumulated
// so far and prints the aggregator's comparison — headline, coverage, per-tier
// and per-token-component breakdowns, and the bonus table.
//
// Unlike run.ts, this command has no live boundary: it touches only the local
// sample store on disk (no credentials, host, or Agent SDK), so the whole command
// is deterministic and unit-tested. `parseReportArgs` is the pure argument seam.
import { pathToFileURL } from "node:url";
import type { CliDeps } from "../src/deps.js";
import { aggregate, readAllSamples, renderReport } from "./aggregate.js";
import { createSampleStore, DEFAULT_STORE_ROOT } from "./store.js";
import { buildBonusTasks, buildScoredSuite } from "./task-suite.js";
/** A fully-resolved report configuration. */
export interface ReportArgs {
/** The sample-store root to read; defaults to {@link DEFAULT_STORE_ROOT}. */
storeRoot: string;
/** Whether to render the suite/bonus variant for a self-review-permitting host. */
selfReview: boolean;
}
/** The parse outcome: a request for help, or a resolved configuration to render. */
export type ParsedReportArgs = { help: true } | ({ help: false } & ReportArgs);
/** The value-taking flags the command understands. */
const VALUE_FLAGS = new Set(["store"]);
/** The boolean flags the command understands, each with a `--no-` negation. */
const BOOLEAN_FLAGS = new Set(["self-review"]);
/** A usage error, surfaced to the maintainer with the offending detail. */
function usage(detail: string): Error {
return new Error(`${detail}\n\nUsage: bench:report [--store <dir>] [--self-review | --no-self-review]`);
}
/**
* Parse the report command's argv into a resolved configuration, applying
* defaults ({@link DEFAULT_STORE_ROOT} store, self-review permitted). A report
* needs no required selection, so no arguments is a valid invocation. Throws a
* usage error on an unknown flag, a bare argument, a value-flag missing its
* value, or a value handed to a boolean flag.
*/
export function parseReportArgs(argv: string[]): ParsedReportArgs {
let storeRoot = DEFAULT_STORE_ROOT;
let selfReview = true;
for (let index = 0; index < argv.length; index += 1) {
const token = argv[index] as string;
if (token === "--help" || token === "-h") {
return { help: true };
}
if (!token.startsWith("--")) {
throw usage(`unexpected argument "${token}"`);
}
const equals = token.indexOf("=");
const rawName = equals === -1 ? token.slice(2) : token.slice(2, equals);
const inlineValue = equals === -1 ? undefined : token.slice(equals + 1);
// A `--no-<flag>` prefix negates a boolean flag.
const negated = rawName.startsWith("no-");
const name = negated ? rawName.slice(3) : rawName;
if (BOOLEAN_FLAGS.has(name)) {
if (inlineValue !== undefined) {
throw usage(`flag --${rawName} takes no value`);
}
selfReview = !negated;
continue;
}
if (negated || !VALUE_FLAGS.has(name)) {
throw usage(`unknown flag "--${rawName}"`);
}
let value = inlineValue;
if (value === undefined) {
value = argv[index + 1];
if (value === undefined || value.startsWith("--")) {
throw usage(`flag --${name} needs a value`);
}
index += 1;
}
if (name === "store") {
storeRoot = value;
}
}
return { help: false, storeRoot, selfReview };
}
/** The help text printed for `--help` / `-h`. */
const HELP_TEXT = `bench:report — render the accumulated benchmark samples into a comparison.
Reads whatever samples have accumulated in the store and prints the aggregator's
comparison: the cost-equivalent-token headline, coverage annotated against the
reporting floor, per-tier and per-token-component breakdowns, and the bonus table.
Incomplete coverage is annotated rather than hidden, so a half-run matrix still
renders. This command is offline — it reads only the local store, never the host.
Usage:
npm run bench:report -- [options]
Options:
--store <dir> Sample store root to read (default: ${DEFAULT_STORE_ROOT})
--self-review Render the variant for a self-review-permitting host (default)
--no-self-review Render the variant for a host that forbids self-review
-h, --help Show this help
--self-review only affects the bonus capability catalog (whether the approve /
request-changes review pair appears there or in the scored suite); the scored
coverage is identical either way. Set it to match the host the samples were run on.`;
/**
* Render the accumulated sample store into the readable comparison. This is the
* command's boundary, but — unlike the run command — it is offline: it opens the
* local store at `--store`, drains it, aggregates against the scored suite and
* bonus definitions (resolved against the `--self-review` variant), and prints the
* rendered report through `out`. No orchestration, weighting, or rendering is
* reimplemented here; it drives the `readAllSamples` / `aggregate` / `renderReport`
* seam. Returns a process exit code.
*/
export async function runReportCommand(
argv: string[],
// Unused: an offline report needs no credentials, cwd, or env. Kept for signature
// parity with the command family (runBenchCommand takes the same (argv, deps, out)).
_deps: CliDeps,
out: (line: string) => void,
): Promise<number> {
const parsed = parseReportArgs(argv);
if (parsed.help) {
out(HELP_TEXT);
return 0;
}
const suiteOptions = { selfReviewPermitted: parsed.selfReview };
const store = createSampleStore(parsed.storeRoot);
const report = aggregate({
records: readAllSamples(store),
suite: buildScoredSuite(suiteOptions),
bonus: buildBonusTasks(suiteOptions),
});
out(renderReport(report));
return 0;
}
/** Entry point: render the report and set the process exit code. */
export async function main(): Promise<void> {
const deps: CliDeps = { env: process.env, cwd: process.cwd(), globals: {} };
try {
process.exitCode = await runReportCommand(
process.argv.slice(2),
deps,
(line) => process.stdout.write(`${line}\n`),
);
} catch (error) {
process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`);
process.exitCode = 1;
}
}
// Run only when executed directly (e.g. `tsx bench/report.ts`), not when imported
// by a test. Under a TypeScript runner argv[1] is this file's own path.
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
await main();
}

View File

@@ -27,18 +27,19 @@ import { DEFAULT_TRIALS, REPORTING_FLOOR, runCells, type RunCellsResult } from "
import { resolveBenchAccess } from "./seed.js";
import { detectSelfReviewSupport } from "./self-review.js";
import { sdkAgentDriver } from "./sdk-driver.js";
import { createSampleStore } from "./store.js";
import { createSampleStore, DEFAULT_STORE_ROOT } from "./store.js";
import { buildScoredSuite } from "./task-suite.js";
// Re-exported so this command's existing importers keep resolving it from here;
// its single source of truth is now the store, which owns the default root.
export { DEFAULT_STORE_ROOT };
/** The default turn cap a run is bounded by when not overridden. */
export const DEFAULT_TURN_CAP = 40;
/** The default wall-clock backstop (ms) a run is bounded by when not overridden. */
export const DEFAULT_WALL_CLOCK_MS = 300_000;
/** Where accumulated samples are stored when `--store` is not given. */
export const DEFAULT_STORE_ROOT = "bench/results";
/** Environment variable naming the tea login the benchmark authenticates through. */
export const LOGIN_ENV = "GITEA_AXI_BENCH_LOGIN";

View File

@@ -2,6 +2,9 @@ import { appendFileSync, mkdirSync, readdirSync, readFileSync } from "node:fs";
import { dirname, join } from "node:path";
import type { CellKey, ResultRecord } from "./result.js";
/** Where accumulated samples are stored when no store root is given. */
export const DEFAULT_STORE_ROOT = "bench/results";
/** Run `read`, returning `fallback` when the target does not exist yet. */
function ignoreEnoent<T>(read: () => T, fallback: T): T {
try {