Adversarial review — weak-agent harness for docx-cli
This harness answers one question: can weak agents actually use docx-cli to get
real work done, and what should we fix first? It runs the weak-agent-test
workflow (.claude/workflows/weak-agent-test.js), which fans out one weak exercise
agent per scenario (Haiku by default — swappable to Sonnet via args.model), renders
every output with Microsoft Word, grades each against ground-truth criteria with an
opus judge, and has opus synthesize a prioritized improvement report.
Exercise agents do NOT self-report tool counts — every tool-economy and token number
is measured after the run (agents under-count their own calls ~2×, so self-reports
were dropped): from the agent transcripts for the Claude arms, from each scenario's
exercise.json ledger for the local arm. Both roll up into the same Run-metrics table
(tokens, wall-clock, tool split, correctness) via exercise-metrics.ts.
The test corpus is bundled with this skill under scenarios/, one folder per
scenario, named after its key (scenarios/mnda/, scenarios/invoice/, …). Each
scenario folder is self-describing and holds everything that scenario needs:
task.md — the AGENT-FACING request, written as a human delegating the work:
the goal, the data, the intent — and no tool vocabulary (no docx commands,
locators, or OOXML terms), because discovering which features deliver the outcome
is part of what's measured,
criteria.md — the JUDGE-ONLY grading rubric (the precise, tool-specific checks).
The stage step withholds it from the agent's run workspace, and the judge reads
it from the pristine source — the agent never sees the answer key,
- the fixture
.docx to work on (edit scenarios only; authoring scenarios create
their output fresh),
assets/ — any additional inputs (data files, images; empty for most edit
scenarios).
The workflow's SCENARIOS manifest holds only the per-scenario routing metadata
(key, bucket label, edit/author kind, the doc filename); whether a baseline gets
rendered is DERIVED from the kind (every edit scenario has a pristine source, so it
gets one — see hasBaseline()), not a stored field. The actual
request/criteria/fixture/assets all live in the folder. The skill is
therefore self-contained and travels with its test corpus. To change what a scenario
tests, edit the files in its folder. (Heavy, ephemeral run outputs — edited docx,
renders, reviews, the report — are dumped to ./tmp/docx-weak-agent-test/<ts>/,
never into the repo.)
Staging is ONE code path for every backend: scripts/stage-scenario.ts copies a
scenario folder, strips the judge-only criteria.md, and verifies the inputs landed.
The workflow's Stage agent runs it per scenario; the local corpus runner imports it.
Each run produces, under the timestamped run dir, one result folder per scenario
(named after its key) plus the run-level report and metrics:
<RUN_DIR>/
REPORT.md ← synthesized report; the Metrics phase appends the measured
run-metrics section (local: in-run; Claude: your post-run pass)
exercise-metrics.md ← measured per-exercise-agent tokens/time/tool split
exercise-metrics.json
<key>/ ← one per scenario; the worked-on copy lives here
task.md assets/ ← (criteria.md is withheld from this copy — judge-only)
<doc>.docx ← the edited/authored document
renders/output/ ← the OUTPUT: Word-rendered page PNGs + read.md (markdown read view)
renders/baseline/ ← the pristine "before": page PNGs + read.md (every EDIT scenario;
absent only for the authored eliot-journal — no source to diff)
review.md ← the judge's saved review for this task (written in-run)
verdict.json ← the judge's structured verdict incl. taskSuccess (written in-run
by the judge — the correctness source the Metrics phase reads)
metrics.json ← this task's measured tokens/time/tool split + correctness
(local: in-run Metrics phase; Claude: your post-run pass)
The render step fires the moment each task finishes (for both arms) and produces,
for the OUTPUT and — whenever a pristine source exists (every edit scenario) — its
BASELINE "before", BOTH deliverables in each render dir: the page PNGs AND a read.md
(the markdown read view of that doc). The judge reads all four (output PNGs + read.md,
baseline PNGs + read.md) to compare before/after both visually and textually. The
workflow's render step is idempotent: for the local backend the corpus runner
already produced the SAME artifacts at the SAME paths as it went, so the render step
just reuses them (re-rendering only anything missing) — no double-render; for the
Claude backend nothing is pre-rendered, so it does the full Word render. Either
way the judge grades Word-rendered PNGs (the local harness runs on the mac, where the
corpus's default render engine IS Word).
Steps
Run these in order from the repo root. Do NOT skip the build — the global docx on
PATH is a stale binary; the harness must test the CURRENT working tree.
1. Preflight — ALWAYS rebuild (mandatory gate)
The whole harness is meaningless if it tests a stale binary, so the build is a hard
gate, not an optional step. Always run bun run build:binary, even if dist/docx
already exists — never reuse a prior build. Abort the whole run if any check below
fails.
REPO="$(git rev-parse --show-toplevel)"
cd "$REPO"
SCENARIOS_DIR="$REPO/.claude/skills/weak-agent-test/scenarios" # this skill's bundled corpus (one folder per scenario)
# Word must be installed (this harness renders with Word, not LibreOffice).
test -d "/Applications/Microsoft Word.app" || echo "WARNING: Microsoft Word not found — render phase will fail."
# (1) Build the CURRENT working tree into a fresh standalone binary. Abort on failure.
bun run build:binary || { echo "BUILD FAILED — abort"; exit 1; }
BINARY="$REPO/dist/docx"
# (2) Hard gate: the fresh binary must match package.json's version AND have `render`.
# `--version` prints "docx X.Y.Z"; take the 2nd space-delimited field. NOTE: use `cut`,
# NOT an awk field reference — a literal dollar-N positional token gets clobbered by
# slash-command positional-arg substitution when this skill runs with arguments, mangling
# the gate. Keep this whole block free of dollar-N tokens for the same reason.
EXPECTED="$(bun -e 'console.log(require("./package.json").version)')"
GOT="$("$BINARY" --version | cut -d' ' -f2)"
echo "built docx $GOT (package.json: $EXPECTED)"
[ "$GOT" = "$EXPECTED" ] || { echo "VERSION MISMATCH ($GOT != $EXPECTED) — build is stale, abort"; exit 1; }
"$BINARY" render --help >/dev/null 2>&1 || { echo "render MISSING — build stale/broken, abort"; exit 1; }
echo "preflight OK: fresh $GOT binary with render"
If the version mismatches or render is missing, the build did not reflect the
working tree — stop and fix it before running. Do not proceed on a stale binary.
First-run note: Word-for-Mac rendering triggers a one-time macOS Automation
permission prompt for the controlling terminal. If the render phase fails on a
fresh machine, grant it under System Settings → Privacy & Security → Automation and
re-run.
2. Make an isolated run workspace (under ./tmp/)
Create an empty timestamped ./tmp/ run dir per workflow run. Do NOT copy the
scenarios here — the workflow's Stage phase runs scripts/stage-scenario.ts for
only the active scenarios, seeding one subfolder per scenario ($RUN_DIR/<key>/), so
originals stay untouched, the repo stays clean, and a single-scenario run doesn't drag
the whole corpus along:
TS="$(date +%Y.%m.%d-%H%M%S)"
RUN_DIR="./tmp/docx-weak-agent-test/$TS"
mkdir -p "$RUN_DIR" # empty; the workflow's Stage phase seeds one subfolder per active scenario from $SCENARIOS_DIR
echo "RUN_DIR=$RUN_DIR"
3. Launch the workflow (up to 3 concurrently)
Invoke the Workflow tool with scriptPath pointing at the workflow file and pass
the absolute paths as args:
Workflow({
scriptPath: "<REPO>/.claude/workflows/weak-agent-test.js",
args: {
runDir: "<RUN_DIR from step 2>",
binary: "<BINARY from step 1>",
scenariosDir: "<SCENARIOS_DIR from step 1>",
model: "haiku", // the exercise model: "haiku" (default) or "sonnet"
only: <optional scenario filter — see below>
}
})
Exercise agent type. The exercise agents run as the repo's weak-exercise
agent type (.claude/agents/weak-exercise.md): minimal tools and no Skill
tool, so the session's skills catalog stays OUT of their context (it's a
per-turn token tax and leaks docx-cli/harness names into the
"capable-but-fresh agent" premise). The agent registry loads at SESSION
start — in a session older than that file, the workflow aborts with
"agent type 'weak-exercise' not found"; pass
exerciseAgentType: "general-purpose" to override for that session (and note
the run's base context is then ~4k tokens/turn heavier, so its token numbers
aren't comparable to weak-exercise runs).
Never resume a benchmark run whose exercise phase failed. If an exercise
agent dies (API error → that scenario reports no exercise/verdict), re-run
the WHOLE run in a FRESH run dir. resumeFromRunId replays the cached stage
step without re-copying fixtures, so re-run exercise agents would edit
already-edited documents — double redlines, double fills, unusable verdicts
(this voided run r2 on 2026-07-15, twice). The failure is worse than it
looks because the resume cache is PREFIX-based, not keyed: everything
issued AFTER the first missing/changed result re-runs live, not just the
dead agent. So a dead exercise for a MANIFEST-EARLY scenario (mnda is
first) re-runs EVERY exercise against edited docs even if you restore that
one scenario's staging state — while a dead LAST scenario (eliot-journal)
happens to resume cleanly. Don't gamble on manifest position: exercise-phase
failure → fresh run dir, no exceptions. Resume is only safe for failures at
or after the render phase (dead judge/synth), where nothing mutates
documents no matter how much of the suffix re-runs.
Running 3 at a time (the fast path to averaged numbers). The benchmark
methodology is 3 runs per arm/model, and runs can go concurrently: launch up to
three Workflow invocations in one message, each with its OWN RUN_DIR from step 2
(suffix the timestamp, e.g. $TS-r1, $TS-r2, $TS-r3). This is safe because the
only shared mutable resource is Microsoft Word, and the CLI itself serializes Word
access across processes with an advisory lock (src/core/render/engines/word-mac.ts)
— concurrent runs' renders queue instead of corrupting each other. Don't go beyond ~3:
renders start spending more time queueing than rendering. A haiku-vs-sonnet
comparison is just two batches: three runs with model: "haiku", three with
model: "sonnet" (never mix models within one run dir).
only restricts the run to a subset of scenarios (omit it to run all 6). To run a
single task, pass its key as a plain string — only: "mnda". It also accepts an
array (only: ["mnda", "invoice"]) or a comma/space-separated string; all forms are
normalized to the same list. The keys are the folder names under $SCENARIOS_DIR
(run ls "$SCENARIOS_DIR" if you need to confirm them); unknown keys abort the run
with a "No scenarios matched" error listing the valid ones.
Use scriptPath, NOT name: "weak-agent-test". Launching by name resolves to a
copy cached at session start, so any edit to the workflow made during the session is
ignored; scriptPath always reads the current file from disk. (The workflow also
tolerates args arriving as a JSON string — the runtime stringifies it — so passing
a plain object is fine.)
When the tool returns, note each run's Transcript dir: path it prints — call it
TRANSCRIPT_DIR (it looks like …/subagents/workflows/wf_<id>). You need it in
step 4 to measure per-agent tokens and time. With concurrent runs, keep each
run's (RUN_DIR, TRANSCRIPT_DIR) pair matched.
Scenario keys (omit only to run all 6):
mnda, invoice, resume, contract-markup, contract-finalize, eliot-journal.
If the user passed scenario keys as arguments to this skill (e.g.
/weak-agent-test mnda invoice), parse them into the only array. Otherwise run
everything.
Each run is heavy (6 exercise agents, serialized Word rendering, 6 opus judges + an
opus synthesis pass); it can take many minutes. Watch live progress with /workflows.
4. Save the report + measure the exercise metrics
When a workflow completes, its return value is
{ arm, report, runDir, binary, exercises, verdicts }. The report contains the
scoreboard, per-task merits/demerits, and prioritized fixes — deliberately without
tool-call or token numbers (nothing self-reports them).
Most of this is now written in-run — don't re-do it. The workflow's synth agent
writes REPORT.md to disk itself, the judge writes each <key>/verdict.json, and —
for the local backend — the workflow's final Metrics phase already ran
exercise-metrics.ts --append-report, so REPORT.md already ends with the measured
Run metrics section and exercise-metrics.{md,json} + per-<key>/metrics.json
already exist. So:
- Do NOT overwrite
$RUN_DIR/REPORT.md. It's authoritative on disk (synth wrote
it; the Metrics phase appended to it). Only write it from the returned report as
a fallback if the file is somehow missing — never over an existing one, or you'll
clobber the appended metrics.
- Metrics — the measured per-exercise tokens (input AND output) + wall-clock +
docx/non-docx tool split + correctness. The workflow can't measure tokens/time
itself (the runtime gives its JS no token API and bans clocks), so this is a script
pass — but only the Claude backend still needs you to run it:
- Present in chat: the Executive summary, the per-task merits/demerits, and
the measured metrics — correctness (N/6 success), total docx vs other calls +
docx share, fresh/cache input + output tokens, total wall-clock, and the
per-scenario outliers. For a multi-run batch, also give the across-runs averages
(tasks solved of 6, effective input, output, wall-clock). Tell the user where the
artifacts live:
<RUN_DIR>/REPORT.md — findings + scoreboard + per-task merits/demerits + measured metrics table
<RUN_DIR>/exercise-metrics.json — the raw numbers
<RUN_DIR>/<key>/ — one folder per scenario, each holding that task's worked-on
.docx, its read.md (markdown read view) and renders/ (the Word PNGs the
judge looked at), review.md + verdict.json (the judge's saved review + verdict),
and metrics.json (that task's measured tokens/time/tool split + correctness)
Backends & arms
The exercise slot is swappable; everything downstream (render → opus judge →
opus synthesis, all against the same rubrics) is identical for every backend and
arm — that's what makes the numbers comparable.
- Exercise model (
args.model): "haiku" (default) or "sonnet" — same
workflow, same prompts, only the exercise agents' model changes.
- Local harness (
args.exerciseBackend: "local"): the exercises run OUT OF BAND
on the local-first agent harness (model built in), then the workflow
renders/judges/synthesizes the results identically. Two steps:
bun "$REPO/.claude/skills/weak-agent-test/scripts/run-local-corpus.ts" "$SCENARIOS_DIR" "$RUN_DIR" "$BINARY" <HARNESS_DIR> [--context N] [--timeout SEC] [key...]
— serial (single GPU); stages via the same stage-scenario.ts, runs the
harness per scenario, and parses each session ledger into
$RUN_DIR/<key>/exercise.json (it also writes a run-level $RUN_DIR/corpus.log
orchestration log itself — no stdout redirect needed). Every number is
ledger-MEASURED (the local model
is never asked to self-report), including a code-computed status
(completed = the harness process ran to its own stop, failed = the watchdog
killed it or it crashed on a signal — lifecycle only; the judge owns quality).
LOCAL_MODEL_PATH/LOCAL_MMPROJ_PATH env vars override the harness's built-in
model for control runs.
- Collect the results DETERMINISTICALLY and pass them to the workflow inline, so it
skips its LLM LOAD agent and the code-computed
status/account reach the judge
straight from disk:EXERCISES="$(bun "$REPO/.claude/skills/weak-agent-test/scripts/collect-exercises.ts" "$RUN_DIR")"
then launch with { runDir, binary, scenariosDir, exerciseBackend: "local", modelLabel: "<harness/model name>", exercises: <the collected array> }. The
workflow runs the normal Render/Judge/Synthesize pipeline on them. (If you omit
exercises, the workflow falls back to an LLM LOAD agent that reads the
exercise.json files itself — the status is still code-computed on disk, but
prefer the deterministic collect so nothing re-reads it through a model.)
The point of this arm is marketing the local harness by its competitiveness with
Haiku: same tasks, same judge, same rubrics — only the exercise brain differs.
Its cost/effort is ledger-measured into each exercise.json under _local, and the
workflow's final Metrics phase rolls it up (via exercise-metrics.ts --local)
into the SAME Run-metrics table the Claude arms get — tokens, wall-clock, tool split,
correctness — appended to REPORT.md automatically, in-run (no post-run step for
this backend), so the local-vs-Haiku numbers are directly comparable.
- Competitor arm (
args.arm: "anthropic-docx-skill"): the A/B bake-off against
Anthropic's bundled docx skill. First provision it with
bun "$REPO/.claude/skills/weak-agent-test/scripts/stage-competitor.ts" <SKILL_DEST> [RUN_DIR] (fetches the real skill and
installs/verifies its full toolset — fairness gate), then pass
arm: "anthropic-docx-skill", competitorDir: "<SKILL_DEST>". Only the exercise
agents' tool instructions differ; grading is identical.
Notes
- This harness is re-runnable: each invocation rebuilds the binary (mandatory),
stages a fresh
./tmp/ run dir, and never mutates the bundled scenarios/.
- The headline benchmark metrics are correctness (tasks solved of 6), the tool
economy (docx-cli calls vs other calls), and token cost as effective input +
output — all measured by
exercise-metrics.ts (transcripts for Claude, the
_local ledger for local), never self-reported.
- The weak agents invoke the binary at an allowlisted absolute path
(
dist/docx), so they should not hit permission prompts for the CLI itself. The
benign shell commands they and the render step use (mkdir, cp, ls, cat,
bun) are NOT yet allowlisted — if you get prompted, add them via the
update-config skill or run with edits allowed. See .claude/settings.local.json.
- To add a scenario, create a folder under this skill's
scenarios/<key>/ holding
task.md (the agent-facing request, in human voice — NO tool vocabulary, so the
agent must discover the features), criteria.md (the judge-only grading rubric —
withheld from the agent's run workspace, read by the judge from the pristine source),
the fixture .docx (edit scenarios only), and an assets/ folder, then add a
routing entry to SCENARIOS in the workflow (.claude/workflows/weak-agent-test.js,
shape { key, bucket, kind, doc }) AND to the MANIFEST in
scripts/run-local-corpus.ts (shape { key, doc, kind }). To change what an existing
scenario tests, edit the files in its folder — the request/criteria/fixture/assets all
live there, not in the workflow.
Scripts
All Bun/TypeScript (this is a Bun-first repo — no shell scripts):
scripts/stage-scenario.ts — stage ONE scenario (copy + strip criteria.md +
verify). The single staging path: the workflow's Stage agent runs it; the local
corpus runner imports it.
scripts/exercise-metrics.ts — post-run run-metrics rollup (both backends):
measured tokens (fresh/cache input + output), wall-clock, docx/other tool split, and
correctness (from the judge verdicts), per scenario + totals + run-over-run
comparison. Claude reads the transcripts; --local <runDir> <label> reads each
exercise.json _local block.
scripts/run-local-corpus.ts — run the exercise phase on the local agent harness
(serial, watchdogged), producing exercise.json per scenario (with a code-computed
status) for exerciseBackend: "local".
scripts/collect-exercises.ts — deterministically read the run's exercise.json
files into the args.exercises array, so the workflow's local backend skips its
LLM LOAD agent (the status reaches the judge from disk, not via a model).
scripts/parse-local-ledger.ts — parse one local-harness session ledger into the
exercise shape (ledger-measured tool calls, tokens, timings, and the process
status).
scripts/local-exercise-prompt.md — the prompt template the local runner renders
per scenario (task inlined for the small model).
scripts/stage-competitor.ts — provision the Anthropic docx skill + its full
toolset for the competitor arm (fairness gate).
1---2name: weak-agent-test3description: Run the weak-agent adversarial test harness against docx-cli. Spawns weak exercise agents (Haiku by default, Sonnet to probe, or a local agent harness's pre-produced runs) to perform real document tasks over six scenarios — five editing (MNDA form-fill + font fidelity, invoice table-edit/restructure + logo replace, résumé styling, contract redlining + commenting, contract finalize via accept/reject + comment reply/resolve) and one authoring (T. S. Eliot poetry journal: multi-column, verse, footnotes, links, figure) — renders every result with Word, has opus judge them against ground-truth rubrics, measures each exercise's tool economy, token cost, wall-clock, and correctness (from transcripts for Claude, the exercise.json ledger for the local harness), and synthesizes a prioritized ergonomics report. Use when the user says 'adversarial review', 'test docx-cli with weak agents', 'run the haiku harness', 'weak agent test', or wants to re-run yesterday's adversarial process.4---56# Adversarial review — weak-agent harness for docx-cli78This harness answers one question: **can weak agents actually use docx-cli to get9real work done, and what should we fix first?** It runs the `weak-agent-test`10workflow (`.claude/workflows/weak-agent-test.js`), which fans out one weak exercise11agent per scenario (Haiku by default — swappable to Sonnet via `args.model`), renders12every output with Microsoft Word, grades each against ground-truth criteria with an13**opus** judge, and has **opus** synthesize a prioritized improvement report.14Exercise agents do NOT self-report tool counts — every tool-economy and token number15is **measured** after the run (agents under-count their own calls ~2×, so self-reports16were dropped): from the agent transcripts for the Claude arms, from each scenario's17`exercise.json` ledger for the local arm. Both roll up into the same Run-metrics table18(tokens, wall-clock, tool split, correctness) via `exercise-metrics.ts`.1920The test corpus is **bundled with this skill** under `scenarios/`, one folder per21scenario, named after its key (`scenarios/mnda/`, `scenarios/invoice/`, …). Each22scenario folder is self-describing and holds everything that scenario needs:2324- `task.md` — the AGENT-FACING request, written as a human delegating the work:25 the goal, the data, the intent — and **no tool vocabulary** (no `docx` commands,26 locators, or OOXML terms), because discovering which features deliver the outcome27 is part of what's measured,28- `criteria.md` — the JUDGE-ONLY grading rubric (the precise, tool-specific checks).29 The stage step **withholds it from the agent's run workspace**, and the judge reads30 it from the pristine source — the agent never sees the answer key,31- the fixture `.docx` to work on (edit scenarios only; authoring scenarios create32 their output fresh),33- `assets/` — any additional inputs (data files, images; empty for most edit34 scenarios).3536The workflow's `SCENARIOS` manifest holds only the per-scenario **routing** metadata37(key, bucket label, `edit`/`author` kind, the doc filename); whether a baseline gets38rendered is DERIVED from the kind (every `edit` scenario has a pristine source, so it39gets one — see `hasBaseline()`), not a stored field. The actual40request/criteria/fixture/assets all live in the folder. The skill is41therefore self-contained and travels with its test corpus. To change what a scenario42tests, edit the files in its folder. (Heavy, ephemeral run outputs — edited docx,43renders, reviews, the report — are dumped to `./tmp/docx-weak-agent-test/<ts>/`,44never into the repo.)4546Staging is ONE code path for every backend: `scripts/stage-scenario.ts` copies a47scenario folder, strips the judge-only `criteria.md`, and verifies the inputs landed.48The workflow's Stage agent runs it per scenario; the local corpus runner imports it.4950Each run produces, under the timestamped run dir, **one result folder per scenario**51(named after its key) plus the run-level report and metrics:5253```54<RUN_DIR>/55 REPORT.md ← synthesized report; the Metrics phase appends the measured56 run-metrics section (local: in-run; Claude: your post-run pass)57 exercise-metrics.md ← measured per-exercise-agent tokens/time/tool split58 exercise-metrics.json59 <key>/ ← one per scenario; the worked-on copy lives here60 task.md assets/ ← (criteria.md is withheld from this copy — judge-only)61 <doc>.docx ← the edited/authored document62 renders/output/ ← the OUTPUT: Word-rendered page PNGs + read.md (markdown read view)63 renders/baseline/ ← the pristine "before": page PNGs + read.md (every EDIT scenario;64 absent only for the authored eliot-journal — no source to diff)65 review.md ← the judge's saved review for this task (written in-run)66 verdict.json ← the judge's structured verdict incl. taskSuccess (written in-run67 by the judge — the correctness source the Metrics phase reads)68 metrics.json ← this task's measured tokens/time/tool split + correctness69 (local: in-run Metrics phase; Claude: your post-run pass)70```7172The **render step fires the moment each task finishes** (for both arms) and produces,73for the OUTPUT and — whenever a pristine source exists (every edit scenario) — its74BASELINE "before", BOTH deliverables in each render dir: the page PNGs AND a `read.md`75(the markdown read view of that doc). The judge reads all four (output PNGs + read.md,76baseline PNGs + read.md) to compare before/after both visually and textually. The77workflow's render step is **idempotent**: for the **local backend** the corpus runner78already produced the SAME artifacts at the SAME paths as it went, so the render step79just reuses them (re-rendering only anything missing) — no double-render; for the80**Claude backend** nothing is pre-rendered, so it does the full Word render. Either81way the judge grades Word-rendered PNGs (the local harness runs on the mac, where the82corpus's default render engine IS Word).8384## Steps8586Run these in order from the repo root. Do NOT skip the build — the global `docx` on87PATH is a stale binary; the harness must test the CURRENT working tree.8889### 1. Preflight — ALWAYS rebuild (mandatory gate)9091The whole harness is meaningless if it tests a stale binary, so the build is a hard92gate, not an optional step. **Always run `bun run build:binary`, even if `dist/docx`93already exists** — never reuse a prior build. Abort the whole run if any check below94fails.9596```bash97REPO="$(git rev-parse --show-toplevel)"98cd "$REPO"99SCENARIOS_DIR="$REPO/.claude/skills/weak-agent-test/scenarios" # this skill's bundled corpus (one folder per scenario)100101# Word must be installed (this harness renders with Word, not LibreOffice).102test -d "/Applications/Microsoft Word.app" || echo "WARNING: Microsoft Word not found — render phase will fail."103104# (1) Build the CURRENT working tree into a fresh standalone binary. Abort on failure.105bun run build:binary || { echo "BUILD FAILED — abort"; exit 1; }106BINARY="$REPO/dist/docx"107108# (2) Hard gate: the fresh binary must match package.json's version AND have `render`.109# `--version` prints "docx X.Y.Z"; take the 2nd space-delimited field. NOTE: use `cut`,110# NOT an awk field reference — a literal dollar-N positional token gets clobbered by111# slash-command positional-arg substitution when this skill runs with arguments, mangling112# the gate. Keep this whole block free of dollar-N tokens for the same reason.113EXPECTED="$(bun -e 'console.log(require("./package.json").version)')"114GOT="$("$BINARY" --version | cut -d' ' -f2)"115echo "built docx $GOT (package.json: $EXPECTED)"116[ "$GOT" = "$EXPECTED" ] || { echo "VERSION MISMATCH ($GOT != $EXPECTED) — build is stale, abort"; exit 1; }117"$BINARY" render --help >/dev/null 2>&1 || { echo "render MISSING — build stale/broken, abort"; exit 1; }118echo "preflight OK: fresh $GOT binary with render"119```120121If the version mismatches or `render` is missing, the build did not reflect the122working tree — stop and fix it before running. Do not proceed on a stale binary.123124> First-run note: Word-for-Mac rendering triggers a one-time macOS **Automation**125> permission prompt for the controlling terminal. If the render phase fails on a126> fresh machine, grant it under System Settings → Privacy & Security → Automation and127> re-run.128129### 2. Make an isolated run workspace (under ./tmp/)130131Create an empty timestamped `./tmp/` run dir **per workflow run**. **Do NOT copy the132scenarios here** — the workflow's **Stage** phase runs `scripts/stage-scenario.ts` for133_only the active scenarios_, seeding one subfolder per scenario (`$RUN_DIR/<key>/`), so134originals stay untouched, the repo stays clean, and a single-scenario run doesn't drag135the whole corpus along:136137```bash138TS="$(date +%Y.%m.%d-%H%M%S)"139RUN_DIR="./tmp/docx-weak-agent-test/$TS"140mkdir -p "$RUN_DIR" # empty; the workflow's Stage phase seeds one subfolder per active scenario from $SCENARIOS_DIR141echo "RUN_DIR=$RUN_DIR"142```143144### 3. Launch the workflow (up to 3 concurrently)145146Invoke the `Workflow` tool with `scriptPath` pointing at the workflow file and pass147the absolute paths as `args`:148149```150Workflow({151 scriptPath: "<REPO>/.claude/workflows/weak-agent-test.js",152 args: {153 runDir: "<RUN_DIR from step 2>",154 binary: "<BINARY from step 1>",155 scenariosDir: "<SCENARIOS_DIR from step 1>",156 model: "haiku", // the exercise model: "haiku" (default) or "sonnet"157 only: <optional scenario filter — see below>158 }159})160```161162> **Exercise agent type.** The exercise agents run as the repo's `weak-exercise`163> agent type (`.claude/agents/weak-exercise.md`): minimal tools and no Skill164> tool, so the session's skills catalog stays OUT of their context (it's a165> per-turn token tax and leaks docx-cli/harness names into the166> "capable-but-fresh agent" premise). The agent registry loads at SESSION167> start — in a session older than that file, the workflow aborts with168> "agent type 'weak-exercise' not found"; pass169> `exerciseAgentType: "general-purpose"` to override for that session (and note170> the run's base context is then ~4k tokens/turn heavier, so its token numbers171> aren't comparable to weak-exercise runs).172173> **Never resume a benchmark run whose exercise phase failed.** If an exercise174> agent dies (API error → that scenario reports no exercise/verdict), re-run175> the WHOLE run in a FRESH run dir. `resumeFromRunId` replays the cached stage176> step without re-copying fixtures, so re-run exercise agents would edit177> already-edited documents — double redlines, double fills, unusable verdicts178> (this voided run r2 on 2026-07-15, twice). The failure is worse than it179> looks because the resume cache is **PREFIX-based, not keyed**: everything180> issued AFTER the first missing/changed result re-runs live, not just the181> dead agent. So a dead exercise for a MANIFEST-EARLY scenario (`mnda` is182> first) re-runs EVERY exercise against edited docs even if you restore that183> one scenario's staging state — while a dead LAST scenario (`eliot-journal`)184> happens to resume cleanly. Don't gamble on manifest position: exercise-phase185> failure → fresh run dir, no exceptions. Resume is only safe for failures at186> or after the render phase (dead judge/synth), where nothing mutates187> documents no matter how much of the suffix re-runs.188189**Running 3 at a time (the fast path to averaged numbers).** The benchmark190methodology is 3 runs per arm/model, and runs can go **concurrently**: launch up to191three Workflow invocations in one message, each with its OWN `RUN_DIR` from step 2192(suffix the timestamp, e.g. `$TS-r1`, `$TS-r2`, `$TS-r3`). This is safe because the193only shared mutable resource is Microsoft Word, and the CLI itself serializes Word194access across processes with an advisory lock (`src/core/render/engines/word-mac.ts`)195— concurrent runs' renders queue instead of corrupting each other. Don't go beyond ~3:196renders start spending more time queueing than rendering. A haiku-vs-sonnet197comparison is just two batches: three runs with `model: "haiku"`, three with198`model: "sonnet"` (never mix models within one run dir).199200`only` restricts the run to a subset of scenarios (omit it to run all 6). To run a201**single task**, pass its key as a plain string — `only: "mnda"`. It also accepts an202array (`only: ["mnda", "invoice"]`) or a comma/space-separated string; all forms are203normalized to the same list. The keys are the folder names under `$SCENARIOS_DIR`204(run `ls "$SCENARIOS_DIR"` if you need to confirm them); unknown keys abort the run205with a "No scenarios matched" error listing the valid ones.206207> Use `scriptPath`, NOT `name: "weak-agent-test"`. Launching by name resolves to a208> copy cached at session start, so any edit to the workflow made during the session is209> ignored; `scriptPath` always reads the current file from disk. (The workflow also210> tolerates `args` arriving as a JSON string — the runtime stringifies it — so passing211> a plain object is fine.)212213When the tool returns, **note each run's `Transcript dir:` path it prints** — call it214`TRANSCRIPT_DIR` (it looks like `…/subagents/workflows/wf_<id>`). You need it in215step 4 to measure per-agent tokens and time. With concurrent runs, keep each216run's `(RUN_DIR, TRANSCRIPT_DIR)` pair matched.217218**Scenario keys** (omit `only` to run all 6):219`mnda`, `invoice`, `resume`, `contract-markup`, `contract-finalize`, `eliot-journal`.220221If the user passed scenario keys as arguments to this skill (e.g.222`/weak-agent-test mnda invoice`), parse them into the `only` array. Otherwise run223everything.224225Each run is heavy (6 exercise agents, serialized Word rendering, 6 opus judges + an226opus synthesis pass); it can take many minutes. Watch live progress with `/workflows`.227228### 4. Save the report + measure the exercise metrics229230When a workflow completes, its return value is231`{ arm, report, runDir, binary, exercises, verdicts }`. The `report` contains the232scoreboard, per-task merits/demerits, and prioritized fixes — deliberately **without**233tool-call or token numbers (nothing self-reports them).234235**Most of this is now written in-run — don't re-do it.** The workflow's synth agent236writes `REPORT.md` to disk itself, the judge writes each `<key>/verdict.json`, and —237**for the local backend** — the workflow's final **Metrics** phase already ran238`exercise-metrics.ts --append-report`, so `REPORT.md` already ends with the measured239**Run metrics** section and `exercise-metrics.{md,json}` + per-`<key>/metrics.json`240already exist. So:2412421. **Do NOT overwrite `$RUN_DIR/REPORT.md`.** It's authoritative on disk (synth wrote243 it; the Metrics phase appended to it). Only write it from the returned `report` as244 a *fallback* if the file is somehow missing — never over an existing one, or you'll245 clobber the appended metrics.2462. **Metrics** — the **measured per-exercise tokens (input AND output) + wall-clock +247 docx/non-docx tool split + correctness**. The workflow can't measure tokens/time248 itself (the runtime gives its JS no token API and bans clocks), so this is a script249 pass — but only the **Claude** backend still needs you to run it:250 - **Local** (`exerciseBackend: "local"`) — **already done by the workflow's Metrics251 phase** (reads each `<key>/exercise.json` `_local` block + `verdict.json`). Nothing252 to run; just confirm `REPORT.md` ends with a "Run metrics" section.253 - **Claude** (`exerciseBackend: "claude"`) — run it now (the token pass reconstructs254 from the transcripts, and `TRANSCRIPT_DIR` — the path you noted in step 3 — is only255 known after launch, so the workflow can't do this itself). The 4th arg is the256 exercise model (`args.model`, default `haiku` — **pass `sonnet` if you ran sonnet**,257 or it matches no agents and emits an empty table). `--append-report` adds the258 section to `REPORT.md` with no shell redirect:259 ```bash260 bun "$REPO/.claude/skills/weak-agent-test/scripts/exercise-metrics.ts" \261 "<TRANSCRIPT_DIR>" "$RUN_DIR" "$BINARY" "haiku" --append-report262 ```263 Repeat per concurrent run (match each RUN_DIR with its own TRANSCRIPT_DIR).264 Either way you end up with the **Run metrics** section on `REPORT.md`, run-level265 `$RUN_DIR/exercise-metrics.{md,json}` (tagged with `backend`), and each scenario's266 measured row in `$RUN_DIR/<key>/metrics.json`. Token cost is reported as **effective267 input** (cache-weighted: fresh/non-cache input + cache write ×1.25 + cache read268 ×0.1) plus **output**, kept separate — NOT a single "total tokens", because cache269 reads are ~10× cheaper than fresh input and lumping them in overstates cost. The raw270 cache split is in the Totals table and `exercise-metrics.json`.2713. Present in chat: the **Executive summary**, the **per-task merits/demerits**, and272 the **measured metrics** — correctness (N/6 success), total docx vs other calls +273 docx share, fresh/cache input + output tokens, total wall-clock, and the274 per-scenario outliers. For a multi-run batch, also give the across-runs averages275 (tasks solved of 6, effective input, output, wall-clock). Tell the user where the276 artifacts live:277 - `<RUN_DIR>/REPORT.md` — findings + scoreboard + per-task merits/demerits + measured metrics table278 - `<RUN_DIR>/exercise-metrics.json` — the raw numbers279 - `<RUN_DIR>/<key>/` — one folder per scenario, each holding that task's worked-on280 `.docx`, its `read.md` (markdown read view) and `renders/` (the Word PNGs the281 judge looked at), `review.md` + `verdict.json` (the judge's saved review + verdict),282 and `metrics.json` (that task's measured tokens/time/tool split + correctness)283284## Backends & arms285286The exercise slot is **swappable**; everything downstream (render → opus judge →287opus synthesis, all against the same rubrics) is identical for every backend and288arm — that's what makes the numbers comparable.289290- **Exercise model** (`args.model`): `"haiku"` (default) or `"sonnet"` — same291 workflow, same prompts, only the exercise agents' model changes.292- **Local harness** (`args.exerciseBackend: "local"`): the exercises run OUT OF BAND293 on the local-first agent harness (model built in), then the workflow294 renders/judges/synthesizes the results identically. Two steps:295 1. `bun "$REPO/.claude/skills/weak-agent-test/scripts/run-local-corpus.ts" "$SCENARIOS_DIR" "$RUN_DIR" "$BINARY" <HARNESS_DIR> [--context N] [--timeout SEC] [key...]`296 — serial (single GPU); stages via the same `stage-scenario.ts`, runs the297 harness per scenario, and parses each session ledger into298 `$RUN_DIR/<key>/exercise.json` (it also writes a run-level `$RUN_DIR/corpus.log`299 orchestration log itself — no stdout redirect needed). Every number is300 ledger-MEASURED (the local model301 is never asked to self-report), including a code-computed `status`302 (`completed` = the harness process ran to its own stop, `failed` = the watchdog303 killed it or it crashed on a signal — lifecycle only; the judge owns quality).304 `LOCAL_MODEL_PATH`/`LOCAL_MMPROJ_PATH` env vars override the harness's built-in305 model for control runs.306 2. Collect the results DETERMINISTICALLY and pass them to the workflow inline, so it307 skips its LLM LOAD agent and the code-computed `status`/account reach the judge308 straight from disk:309 ```bash310 EXERCISES="$(bun "$REPO/.claude/skills/weak-agent-test/scripts/collect-exercises.ts" "$RUN_DIR")"311 ```312 then launch with `{ runDir, binary, scenariosDir, exerciseBackend: "local",313 modelLabel: "<harness/model name>", exercises: <the collected array> }`. The314 workflow runs the normal Render/Judge/Synthesize pipeline on them. (If you omit315 `exercises`, the workflow falls back to an LLM LOAD agent that reads the316 exercise.json files itself — the `status` is still code-computed on disk, but317 prefer the deterministic collect so nothing re-reads it through a model.)318 The point of this arm is marketing the local harness by its **competitiveness with319 Haiku**: same tasks, same judge, same rubrics — only the exercise brain differs.320 Its cost/effort is ledger-measured into each `exercise.json` under `_local`, and the321 workflow's final **Metrics** phase rolls it up (via `exercise-metrics.ts --local`)322 into the SAME Run-metrics table the Claude arms get — tokens, wall-clock, tool split,323 correctness — appended to `REPORT.md` **automatically, in-run** (no post-run step for324 this backend), so the local-vs-Haiku numbers are directly comparable.325- **Competitor arm** (`args.arm: "anthropic-docx-skill"`): the A/B bake-off against326 Anthropic's bundled docx skill. First provision it with327 `bun "$REPO/.claude/skills/weak-agent-test/scripts/stage-competitor.ts" <SKILL_DEST> [RUN_DIR]` (fetches the real skill and328 installs/verifies its full toolset — fairness gate), then pass329 `arm: "anthropic-docx-skill", competitorDir: "<SKILL_DEST>"`. Only the exercise330 agents' tool instructions differ; grading is identical.331332## Notes333334- This harness is **re-runnable**: each invocation rebuilds the binary (mandatory),335 stages a fresh `./tmp/` run dir, and never mutates the bundled `scenarios/`.336- The headline **benchmark metrics** are correctness (tasks solved of 6), the tool337 economy (docx-cli calls vs other calls), and token cost as **effective input +338 output** — all measured by `exercise-metrics.ts` (transcripts for Claude, the339 `_local` ledger for local), never self-reported.340- The weak agents invoke the binary at an allowlisted absolute path341 (`dist/docx`), so they should not hit permission prompts for the CLI itself. The342 benign shell commands they and the render step use (`mkdir`, `cp`, `ls`, `cat`,343 `bun`) are NOT yet allowlisted — if you get prompted, add them via the344 `update-config` skill or run with edits allowed. See `.claude/settings.local.json`.345- To add a scenario, create a folder under this skill's `scenarios/<key>/` holding346 `task.md` (the agent-facing request, in human voice — NO tool vocabulary, so the347 agent must discover the features), `criteria.md` (the judge-only grading rubric —348 withheld from the agent's run workspace, read by the judge from the pristine source),349 the fixture `.docx` (edit scenarios only), and an `assets/` folder, then add a350 routing entry to `SCENARIOS` in the workflow (`.claude/workflows/weak-agent-test.js`,351 shape `{ key, bucket, kind, doc }`) AND to the `MANIFEST` in352 `scripts/run-local-corpus.ts` (shape `{ key, doc, kind }`). To change what an existing353 scenario tests, edit the files in its folder — the request/criteria/fixture/assets all354 live there, not in the workflow.355356## Scripts357358All Bun/TypeScript (this is a Bun-first repo — no shell scripts):359360- `scripts/stage-scenario.ts` — stage ONE scenario (copy + strip criteria.md +361 verify). The single staging path: the workflow's Stage agent runs it; the local362 corpus runner imports it.363- `scripts/exercise-metrics.ts` — post-run run-metrics rollup (both backends):364 measured tokens (fresh/cache input + output), wall-clock, docx/other tool split, and365 correctness (from the judge verdicts), per scenario + totals + run-over-run366 comparison. Claude reads the transcripts; `--local <runDir> <label>` reads each367 `exercise.json` `_local` block.368- `scripts/run-local-corpus.ts` — run the exercise phase on the local agent harness369 (serial, watchdogged), producing `exercise.json` per scenario (with a code-computed370 `status`) for `exerciseBackend: "local"`.371- `scripts/collect-exercises.ts` — deterministically read the run's `exercise.json`372 files into the `args.exercises` array, so the workflow's local backend skips its373 LLM LOAD agent (the `status` reaches the judge from disk, not via a model).374- `scripts/parse-local-ledger.ts` — parse one local-harness session ledger into the375 exercise shape (ledger-measured tool calls, tokens, timings, and the process376 `status`).377- `scripts/local-exercise-prompt.md` — the prompt template the local runner renders378 per scenario (task inlined for the small model).379- `scripts/stage-competitor.ts` — provision the Anthropic docx skill + its full380 toolset for the competitor arm (fairness gate).