Validate agents and skills by measuring outputs against synthetic problems with defined ground truth. Primary signal: calibration bias — gap between self-reported confidence and actual recall. Well-calibrated agent reports 0.9 when it finds ~90% of issues. Miscalibrated: reports 0.9, finds 60%.
Calibration data drives improvement loop: systematic gaps → instruction updates; persistent overconfidence → adjusted re-run thresholds in MEMORY.md.
NOT for: static routing overlap analysis (use /foundry:audit); manually reviewing skill output quality (use /develop:review (requires develop plugin)).
$ARGUMENTS: parse
--flagsfirst, then resolve remaining tokens as scope targetsFlags (order independent):
--fast— 3 problems per target (default when neither pace flag passed)--full— 10 problems per target; mutually exclusive with--fast--ab-test— also rungeneral-purposebaseline and report delta metrics; requires benchmark (default--fastif no pace flag); mutually exclusive with--apply--apply— apply proposals: with--fast/--full: run benchmark then immediately apply; without pace flag: skip benchmark, apply proposals from most recent past run; mutually exclusive with--ab-test--skip-gate— suppress follow-up gate; for programmatic callers--local— resolve target agent/skill files from source tree (plugins/*/) instead of installed plugin cache; for plugin-dev workflows where local edits aren't yet installed; setsLOCAL_MODE=truein all pipeline spawns
Mutual exclusion validation (check before any work):
--ab-test+--applytogether → hard error: "--ab-testand--applyare mutually exclusive. Pass one or neither."--fast+--fulltogether → hard error: "Pass--fastor--full, not both."--ab-testwithout pace flag → default--fastsilently (no error)
Unsupported flag check — after all supported flags extracted (
--fast,--full,--ab-test,--apply,--skip-gate,--local,--keep), scan$ARGUMENTSfor remaining--<token>tokens. If found: print! Unknown flag(s): `--<token>`. Supported: `--fast`, `--full`, `--ab-test`, `--apply`, `--skip-gate`, `--local`, `--keep`.then invokeAskUserQuestion— (a) Abort (stop, re-invoke with correct flags) · (b) Continue ignoring (skip unknown flags, proceed). On Abort: stop.Legacy positional tokens (
ab,apply,fast,full) — hard error: print migration hint and stop. Example: "abremoved — use--ab-testflag:/calibrate curator --ab-test."Scope tokens (positional, space-separated — defaults to
all):all— all agents + relevant skills + routing + communication + all rulesagents— all agents only (full agent list inmodes/agents.md)skills— calibratable skills only (/auditand others permodes/skills.md;/oss:review(requiresossplugin) excluded — requires live GitHub PR)routing— routing accuracy test: measures how accuratelygeneral-purposeorchestrator selects correctsubagent_typefor synthetic task prompts (not per-agent quality benchmark; included inall)communication— handover + team protocol compliance: runsfoundry:curatoragainst synthetic agent responses and team transcripts with injected protocol violations (missing JSON envelope, missingsummary, AgentSpeak v2 breaches); included inallrules— rule adherence test: for each global rule file (nopaths:) and each path-scoped rule when matching file is in context, generates synthetic tasks that should trigger rule's key directives, measures whethergeneral-purposeagent with rule loaded correctly applies them; reports rules that are ignored, misapplied, or redundant; included inallplugins— all agents + calibratable skills from allplugins/*/directories (union of all plugin-namespaced agents and calibratable skills)<plugin-name>— tier 2: bare plugin directory name (e.g.oss,foundry,research,develop) auto-resolved when token matchesplugins/<name>/directory; calibrates all agents + calibratable skills in that plugin<agent-name>— tier 3: single agent (e.g.,foundry:sw-engineer); also accepts bare name (e.g.sw-engineer) and resolves viaplugins/*/agents/<name>.md/foundry:audit— single skill (pass any calibratable skill name;/oss:review(requiresossplugin) accepted but excluded permodes/skills.md)- Multiple scope tokens — space-separated; calibrates union of resolved targets:
oss research,agents skills,curator shepherd; each token resolved through same tier hierarchy as/auditscope tokens (reserved keywords first, then plugin-dir lookup, then agent/skill file search)
Every invocation surfaces report: benchmark runs print new results;
--applywithout pace flag prints saved report from last run before applying.
- FAST_N: 3 problems per target
- FULL_N: 10 problems per target
- RECALL_THRESHOLD: 0.70 (below → agent needs instruction improvement)
- CALIBRATION_BORDERLINE: ±0.10 (|bias| within this → calibrated; between 0.10 and 0.15 → borderline)
- CALIBRATION_WARN: ±0.15 (bias beyond this → confidence decoupled from quality)
- CALIBRATE_LOG:
.notes/logs/calibrations.jsonl(legacy.claude/logs/calibrations.jsonlread-only fallback for historical entries) - AB_ADVANTAGE_THRESHOLD: 0.10 (delta recall or F1 above this → meaningful advantage; below → marginal or none)
- PHASE_TIMEOUT_MIN: 5 (per-phase budget — if spawned subagents haven't all returned, collect partial results and continue)
- PIPELINE_TIMEOUT_MIN: 10 (hard cutoff — pipeline not notified within 10 min of launch is timed out; extendable if agent explains delay) # tighter than global 15-min cutoff from CLAUDE.md §6 — intentional for calibrate
- PIPELINE_BATCH_SIZE: 5 when one mode category runs alone, 2 while two categories are in flight (max agent/skill pipeline subagents spawned concurrently within one mode — prevents agent count explosion on
all; batch: spawn ≤ that many, wait for all results, then spawn next batch; halving keeps peak concurrency at 4 ≤ 5 when paired) - ROUTING_ACCURACY_THRESHOLD: 0.90 (below → agent descriptions need improvement) # keep in sync with modes/routing.md
- ROUTING_HARD_THRESHOLD: 0.80 (below → high-overlap pair descriptions need disambiguation)
- SPAWN_GATE_THRESHOLD: 50 (spawn estimate = target-count × N; above this, large-fan-out gate fires before Step 2 even when
--applyis set — only--skip-gatebypasses)
- PROBLEM_SET_VERSION: 1.0
- CODEX_PROBLEM_RATIO: 0.6 (fraction of in-scope problems generated by Codex — agents/skills modes only)
- CODEX_SCORER_WEIGHT: 0.49 (Codex scorer weight; Claude = 0.51 — Claude has last word on disagreements)
- SCORER_AGREEMENT_WARN: 0.70 (scorer agreement below this → flag ambiguous ground truth ⚠)
- CODEX_MODES: ["agents", "skills"] (modes where Codex is active; routing/communication/rules excluded — test Claude-specific internals)
- PIPELINE_TIMEOUT_MIN_DUAL: 15 (hard cutoff when Codex active — replaces PIPELINE_TIMEOUT_MIN=10 for dual-source runs)
Domain tables per mode: see modes/agents.md, modes/skills.md, modes/routing.md, modes/communication.md, modes/rules.md.
Task hygiene: load and follow the protocol below.
# loads: compaction-contract.md
# audit-skip: resilience-replication — duplicated; plugin cannot self-locate
cat "$(python "${CLAUDE_PLUGIN_ROOT:-plugins/cc_foundry}/bin/resolve_shared_path.py" foundry skills/_shared 2>/dev/null || echo "plugins/cc_foundry/skills/_shared")/task-hygiene.md"
Task tracking: create tasks at start of execution (Step 1) for each phase that will run:
- "Calibrate agents" — Step 2 (benchmark mode, when target includes agents)
- "Calibrate skills" — Step 2 (benchmark mode, when target includes skills)
- "Calibrate routing" — Step 2 (benchmark mode, when target includes routing)
- "Calibrate communication" — Step 2 (benchmark mode, when target includes communication)
- "Calibrate rules" — Step 2 (benchmark mode, when target includes rules)
- "Analyse and report" — Steps 3–5 (benchmark mode)
- "Apply findings" — Step 6 (apply mode only)
Task marking discipline: create ALL category tasks as pending at the start (before any pipeline spawns). Mark a task in_progress only immediately before spawning its pipeline. Mark it completed immediately after collecting its results. Never mark more than one category task in_progress simultaneously — misrepresents execution state. On loop retry or scope change, create new task.
Step 1: Parse targets and create run directory
From $ARGUMENTS, determine:
- Strip flags first: extract
--fast,--full,--ab-test,--apply,--skip-gate,--local,--keepbefore scope resolution; validate mutual exclusion (error and stop on conflict). Strip all flags from ARGUMENTS before scope token resolution:export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}" KEEP_ITEMS="" if [[ "$ARGUMENTS" =~ --keep[[:space:]]\"([^\"]+)\" ]]; then KEEP_ITEMS="${BASH_REMATCH[1]}" fi ARGUMENTS=$(echo "$ARGUMENTS" | sed 's/--keep "[^"]*"//g') rm -f .temp/state/skill-contract.md # clear stale contract (compaction-contract.md §Lifecycle) # timeout: 5000 LOCAL_MODE=false; [[ "$ARGUMENTS" == *"--local"* ]] && LOCAL_MODE=true ARGUMENTS="${ARGUMENTS//--fast/}"; ARGUMENTS="${ARGUMENTS//--full/}" ARGUMENTS="${ARGUMENTS//--ab-test/}"; ARGUMENTS="${ARGUMENTS//--apply/}" ARGUMENTS="${ARGUMENTS//--skip-gate/}"; ARGUMENTS="${ARGUMENTS//--local/}" ARGUMENTS="${ARGUMENTS#"${ARGUMENTS%%[![:space:]]*}"}" mkdir -p "${TMPDIR:-/tmp}/calibrate-state-${CSID}" echo "$LOCAL_MODE" > "${TMPDIR:-/tmp}/calibrate-state-${CSID}/local-mode" echo "$KEEP_ITEMS" > "${TMPDIR:-/tmp}/calibrate-state-${CSID}/keep-items" - Target list — remaining tokens after flag-strip; union of resolved targets:
allor omitted → all agents +/audit+ routing + communication + all rulesagents→ all agents (full agent list inmodes/agents.md)skills→/auditonly (and other non-live-PR skills inmodes/skills.md;/oss:review(requiresossplugin) excluded)routing→ routing accuracy test onlycommunication→ handover + team protocol compliance onlyrules→ rule adherence test (all rule files in.claude/rules/) onlyplugins→ all agents + calibratable skills from allplugins/*/directories<plugin-name>matchingplugins/<name>/directory → tier 2: all agents + calibratable skills in that plugin- Any other token → tier 3: single agent or skill name; search
plugins/*/agents/<name>.md,.claude/agents/<name>.md,plugins/*/skills/<name>/SKILL.md,.claude/skills/<name>/SKILL.md; error if no match - Multiple tokens → union: e.g.
oss research,curator shepherd; each resolved independently
Empty resolution guard: after resolving all scope tokens to target list, if list is empty (e.g. plugin matched but contains no calibratable agents/skills, such as /calibrate codemap), stop with:
! No calibratable agents/skills found for scope: <input-scope>
Verify: (a) plugin name spelled correctly, (b) plugin has agents/*.md or calibratable skills (see modes/skills.md domain table)
Do not proceed to Step 2 — silent no-op produces no report and confuses callers.
- Pace:
--full→ 10 problems;--fast→ 3 problems; neither → default--fast - A/B flag:
--ab-test→ also spawngeneral-purposebaseline per problem - Apply flag:
--applywithout pace flag → pure apply mode: skip Steps 2–5; go to Step 6--applywith--fast/--full→ benchmark + auto-apply: run Steps 2–5 then continue to Step 6
If benchmark will run (i.e., --fast or --full present, with or without --apply): generate timestamp YYYY-MM-DDTHH-MM-SSZ (UTC, e.g. 2026-03-03T13-44-48Z) explicitly via the Bash tool and persist for downstream steps (fresh-shell state loss between Bash() calls):
export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}"
TIMESTAMP=$(date -u +%Y-%m-%dT%H-%M-%SZ)
echo "Calibration timestamp: $TIMESTAMP"
mkdir -p "${TMPDIR:-/tmp}/calibrate-state-${CSID}"
echo "$TIMESTAMP" > "${TMPDIR:-/tmp}/calibrate-state-${CSID}/timestamp"
Every subsequent Bash block in Steps 2–6 that uses $TIMESTAMP must re-read it at the top of the block:
export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}"
IFS= read -r TIMESTAMP < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/timestamp" 2>/dev/null || TIMESTAMP=""
[ -z "$TIMESTAMP" ] && { echo "! TIMESTAMP state lost — re-invoke /foundry:calibrate"; exit 1; }
# never fall back to $(date ...) — generates new timestamp → nonexistent run dir; surface state loss explicitly
All run dirs use this timestamp.
Large fan-out gate — after target list resolves (and before any task creation or pipeline spawn), when --skip-gate not passed:
- Skip entirely in pure-apply mode (
--applywithout a pace flag) — zero pipelines spawn in this mode (routes straight to Step 6), so no confirmation is needed. - Mode-category scopes (
all,agents,skills,plugins,<plugin-name>tier 2) — the target list here is mode categories, not yet expanded to individual agent/skill files (expansion happens inside Step 2's mode files, per the mode-file table below). An exact spawn count is not knowable at this point — these scopes routinely expand to dozens of agent/skill pipelines. Gate always fires whenever a benchmark pace flag is set (--fastor--full), independent of any count. - Tier-3 single-target scopes (
<agent-name>,<skill-name>) — the target list is already a concrete file (or small union of files), so the count is exact here:SPAWN_ESTIMATE = <resolved-target-count> × (FULL_N if --full else FAST_N). Gate fires only whenSPAWN_ESTIMATE > SPAWN_GATE_THRESHOLD.
When gated (either branch), fire even when --apply is set together with a pace flag — --apply only skips the Step 3 proposal-review gate, not this one.
Call AskUserQuestion:
- Mode-category scopes: question: "
<scope>expands to dozens of agent/skill pipelines ×<N_PROBLEMS>problems each — potentially 100+ spawns. Proceed?" - Tier-3 scopes: question: "This run resolves to
<N>targets ×<N_PROBLEMS>problems ≈<SPAWN_ESTIMATE>pipeline spawns. Proceed?" - (a) label:
Proceed— description: run as specified - (b) label:
Switch to --fast— description: re-run with--fastinstead of--full(lowers spawn count ~3.3×) — omit this option when pace is already--fast/default; two-option menu (Proceed / Abort) in that case - (c) label:
Abort— description: stop; narrow scope and re-invoke
On Abort: stop immediately — no tasks created, no spawns. On Switch to --fast: replace pace flag with --fast (mode-category scopes still always-fire at --fast; tier-3 recomputes SPAWN_ESTIMATE), continue to task creation.
Create tasks before proceeding:
- Benchmark only (no
--apply): TaskCreate "Calibrate agents" (if target includes agents), TaskCreate "Calibrate skills" (if target includes skills), TaskCreate "Calibrate routing" (if target includes routing), TaskCreate "Calibrate communication" (if target includes communication), TaskCreate "Calibrate rules" (if target includes rules), TaskCreate "Analyse and report" — all created aspending; do NOT mark anyin_progressyet - Benchmark + auto-apply (
--fast/--full+--apply): TaskCreate "Calibrate agents" (if target includes agents), TaskCreate "Calibrate skills" (if target includes skills), TaskCreate "Calibrate routing" (if target includes routing), TaskCreate "Calibrate communication" (if target includes communication), TaskCreate "Calibrate rules" (if target includes rules), TaskCreate "Analyse and report", TaskCreate "Apply findings" — all created aspending; do NOT mark anyin_progressyet - Pure apply mode (only
--apply, no pace flag): TaskCreate "Apply findings" only
Step 2: Spawn pipeline subagents
Pre-flight: mode files at
<plugin-cache>/foundry/<v>/skills/calibrate/modes/— resolve via plugin cache scan below.
/foundry:setupdoes NOT symlink these (onlyrules/*.mdandTEAM_PROTOCOL.md); if not found, re-install foundry plugin.export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}" IFS= read -r LOCAL_MODE < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/local-mode" 2>/dev/null || LOCAL_MODE="false" CALIB_MODES_DIR=$(python "${CLAUDE_PLUGIN_ROOT:-plugins/cc_foundry}/bin/resolve_skill_subdir.py" calibrate modes $([ "$LOCAL_MODE" = "true" ] && echo --local)) # timeout: 5000Gate: if the bash block above failed (non-zero exit or
$CALIB_MODES_DIRempty) — stop immediately; do not proceed to pipeline spawns. Print:! calibrate/modes/ directory not found — re-install foundry plugin then retry.
For each target mode in resolved target list, read corresponding mode file and execute spawn instructions. At most 2 mode categories in flight at once, and only with $PIPELINE_BATCH_SIZE halved to 2 (floor of 5÷2) for as long as two run concurrently. Rationale: the constraint being protected is peak agent count and context, not ordering — two categories at batch 2 peak at 4 concurrent pipelines, below the 5 a single category reaches on its own, so the resource ceiling is unchanged while wall-clock on all drops. Everything else stays serial: never issue a third category's spawns while two are running, and never restore batch size 5 until one of the two has fully returned its results.
Execution order for all: agents → skills → routing → communication → rules, run as pairs in that order — (agents + skills), (routing + communication), then rules alone at batch 5. For each pair:
- Guard — call
TaskList; if a category task (agents/skills/routing/communication/rules) isin_progressbut its mode is not one of the categories currently in flight, callTaskUpdate(that_task_id, completed)before proceeding — corrects a missed completed call from a prior iteration. Never complete the task of a category still running: with two in flight, two category tasks are legitimatelyin_progress. - Mark both in-flight modes' tasks
in_progress(all others staypending) - Spawn pipelines for both modes with
$PIPELINE_BATCH_SIZE= 2 (= 5 when a category runs alone — see constants) - Wait for all batch results from both modes before proceeding
- Mark each mode's task
completedas its own results arrive - Only then start the next pair
| Target mode | Mode file | Task to mark in_progress |
|---|---|---|
| agents | $CALIB_MODES_DIR/agents.md |
"Calibrate agents" |
| skills | $CALIB_MODES_DIR/skills.md |
"Calibrate skills" |
| routing | $CALIB_MODES_DIR/routing.md |
"Calibrate routing" |
| communication | $CALIB_MODES_DIR/communication.md |
"Calibrate communication" |
| rules | $CALIB_MODES_DIR/rules.md |
"Calibrate rules" |
plugins or <plugin-name> (tier 2) |
expand to per-agent + per-skill pipelines: glob plugins/<name>/agents/*.md and calibratable plugins/<name>/skills/*/SKILL.md; spawn one pipeline per resolved target using appropriate mode file (agents.md for agents, skills.md for calibratable skills); task name "Calibrate " |
"Calibrate " |
<agent-name> / <skill-name> (tier 3) |
single-file pipeline: use agents.md or skills.md mode file with <TARGET> = resolved name; task name "Calibrate " |
"Calibrate " |
For multiple tokens, merge resolved targets into per-mode groups before spawning — one pipeline per unique mode file needed, each carrying full target list.
Before spawning any pipeline (when target includes agents, skills, or all), check cross-plugin availability. When LOCAL_MODE=true, check plugins/ source tree (local edits not yet installed); otherwise check installed plugin cache:
export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}"
IFS= read -r LOCAL_MODE < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/local-mode" 2>/dev/null || LOCAL_MODE="false"
if [ "$LOCAL_MODE" = "true" ]; then
[ -d "plugins/cc_oss" ] && OSS_AVAILABLE="plugins/cc_oss" || OSS_AVAILABLE=""
[ -d "plugins/cc_research" ] && RESEARCH_AVAILABLE="plugins/cc_research" || RESEARCH_AVAILABLE=""
[ -d "plugins/codemap-py" ] && CODEMAP_AVAILABLE="plugins/codemap-py" || CODEMAP_AVAILABLE=""
[ -d "plugins/cc_develop" ] && DEVELOP_AVAILABLE="plugins/cc_develop" || DEVELOP_AVAILABLE=""
else
OSS_AVAILABLE=$(find ~/.claude/plugins/cache -name "oss" -type d 2>/dev/null | head -1) # timeout: 5000
RESEARCH_AVAILABLE=$(find ~/.claude/plugins/cache -name "research" -type d 2>/dev/null | head -1) # timeout: 5000
CODEMAP_AVAILABLE=$(find ~/.claude/plugins/cache -name "codemap-py" -type d 2>/dev/null | head -1) # timeout: 5000
DEVELOP_AVAILABLE=$(find ~/.claude/plugins/cache -name "develop" -type d 2>/dev/null | head -1) # timeout: 5000
fi
agentspipeline: excludeoss:cicd-stewardandoss:shepherd(requiresossplugin) if$OSS_AVAILABLEempty; excluderesearch:data-stewardandresearch:scientist(requiresresearchplugin) if$RESEARCH_AVAILABLEempty. Log: "oss/research plugin not installed — skipping calibration"skillspipeline: exclude/oss:review(requiresossplugin) always (requires live GitHub PR — not calibratable with synthetic input; seemodes/skills.md); exclude/codemap-py:*skills (requirescodemapplugin) if$CODEMAP_AVAILABLEempty; exclude/research:plan,/research:judge,/research:verify(requiresresearchplugin) if$RESEARCH_AVAILABLEempty; exclude/develop:review(requiresdevelopplugin) if$DEVELOP_AVAILABLEempty. Log skip message per excluded skill.
Fallback role descriptions for cross-plugin agents (if ever substituted with general-purpose) — run cat "$_FS/agent-resolution.md" (where $_FS is resolved via the cache-resolution block at the start of Step 2; if $_FS is empty, skip — role descriptions unavailable) and apply the matching fallback description.
Each mode file defines <TARGET>, <DOMAIN>, any N overrides, and extra instructions for pipeline subagent. Pipeline template lives at $CALIB_MODES_DIR/../templates/pipeline-prompt.md. N override: communication caps at fast=3 / full=5 (not global FULL_N=10) to prevent pipeline context overflow — run cat "$CALIB_MODES_DIR/communication.md" for details. rules mode spawns one general-purpose subagent per rule file (not standard pipeline template) — run cat "$CALIB_MODES_DIR/rules.md" for direct-spawn approach.
export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}"
IFS= read -r _TIMESTAMP < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/timestamp" 2>/dev/null || _TIMESTAMP=""
IFS= read -r _KEEP < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/keep-items" 2>/dev/null || _KEEP=""
_RUN_DIR=".reports/calibrate/$_TIMESTAMP"
_PRESERVE="run-dir=$_RUN_DIR, timestamp=$_TIMESTAMP"
[ -n "$_KEEP" ] && _PRESERVE="$_PRESERVE; user-keep: $_KEEP"
mkdir -p .temp/state # timeout: 5000
{
echo "## Active Skill Contract"
echo "- skill: foundry:calibrate · phase: collect+synthesize (after pipeline fan-out)"
echo "- run-dir: $_RUN_DIR"
echo "- preserve: $_PRESERVE"
echo "- next: collect pipeline results → combined report → follow-up gate (Step 3) → log (Step 4) → signals (Step 5)"
} > .temp/state/skill-contract.md
Step 3: Collect results and print combined report
Completion handling — pipeline spawns are synchronous, so no poll loop is possible (_FOUNDRY_SHARED/agent-spawn-protocol.md §Synchronous spawns). When a batch returns, read each target's compact JSON; when absent, read .reports/calibrate/<TIMESTAMP>/<TARGET>/result.jsonl (written on every exit path per the pipeline's graceful-exit protocol). Neither present → record {"verdict":"timed_out"} and mark the target ⏱ in the report; never omit a stalled target.
On timeout: read tail -100 <output_file> for partial JSON; if none use: {"target":"<TARGET>","verdict":"timed_out","mean_recall":null,"gaps":["pipeline timed out — re-run individually with /calibrate <target> fast"]}. Timed-out targets appear in report with ⏱ prefix and null metrics.
After all pipeline subagents complete or time out: mark "Analyse and report" in_progress. Parse compact JSON summary from each. (Category tasks — "Calibrate agents", "Calibrate skills", etc. — are already marked completed inline during Step 2's sequential loop; do not re-mark them here.)
For any pipeline that returned without a compact JSON, use Glob (pattern */result.jsonl, base .reports/calibrate/<TIMESTAMP>/) to check whether a result file was written. If result.jsonl exists, parse it as the compact JSON for that target. If neither compact JSON nor result.jsonl exists, synthesize: {"target":"<TARGET>","verdict":"incomplete","mean_recall":null,"calibration_bias":null,"gaps":["pipeline returned no output — re-run: /calibrate <TARGET> --fast"]} and mark that target with ⏱ in the report table.
Print combined benchmark report:
## Calibrate — <date> — <MODE>
| Target | Recall | SevAcc | Fmt | Confidence | Bias | F1 | Scope | Verdict | Top Gap |
|------------------|--------|--------|------|------------|---------|------|-------|------------|----------------------|
| sw-engineer | 0.83 | 0.91 | 0.87 | 0.85 | +0.02 ✓ | 0.81 | 0 ✓ | calibrated | async error paths |
| ... | | | | | | | | | |
*Recall: in-scope issues found / total. SevAcc: severity match rate for found issues (±1 tier) — high recall + low SevAcc = issues found but misprioritized. Fmt: fraction of found issues with location + severity + fix (actionability). Bias: confidence − recall (+ = overconfident). Scope: FP on out-of-scope input (0 ✓).*
If AB mode, add ΔRecall, ΔSevAcc, ΔFmt, ΔTokens, and AB Verdict columns after F1. ΔTokens = token_ratio − 1.0 (negative = specialist more concise).
| Target | Recall | SevAcc | Fmt | Bias | F1 | ΔRecall | ΔSevAcc | ΔFmt | ΔTokens | Scope | AB Verdict |
|-------------|--------|--------|------|---------|------|---------|---------|-------|---------|-------|------------|
| sw-engineer | 0.83 | 0.91 | 0.87 | +0.02 ✓ | 0.81 | +0.05 ~ | +0.12 ✓ | +0.15 ✓ | −0.18 ✓ | 0 ✓ | marginal ~ |
*ΔRecall/ΔSevAcc/ΔFmt: specialist − general (positive = specialist better). ΔTokens: token_ratio − 1.0 (negative = more focused). AB Verdict covers ΔRecall and ΔF1 only; use ΔSevAcc and ΔFmt as supplementary evidence for agents where ΔRecall ≈ 0.*
If target is routing:
export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}"
IFS= read -r LOCAL_MODE < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/local-mode" 2>/dev/null || LOCAL_MODE="false"
CALIB_MODES_DIR=$(python "${CLAUDE_PLUGIN_ROOT:-plugins/cc_foundry}/bin/resolve_skill_subdir.py" calibrate modes $([ "$LOCAL_MODE" = "true" ] && echo --local)) # timeout: 5000
cat "$CALIB_MODES_DIR/routing.md"
Use the "Report format" section loaded above instead of the table above. Mark "Calibrate routing" completed.
Flag targets where recall < 0.70 or |bias| > 0.15 with ⚠.
After table, print full content of each proposal.md for targets where proposed_changes > 0.
If --apply not set: after printing proposals, print the two genuine re-run commands as plain copy-pasteable text, then fire Follow-up gate (unless --skip-gate passed):
Re-run full depth /calibrate <targets> --full
Re-run full + A/B /calibrate <targets> --full --ab-test
Call AskUserQuestion — do NOT write options as plain text. Map options directly:
- question: "Proposals ready. What next?" (include summary, e.g. "3 targets with proposals, 1 calibrated.")
- (a) label:
Apply proposals now— description: apply in this session — proceed directly to Step 6 using the persisted TIMESTAMP, no re-invocation, no benchmark re-run - (b) label:
skip— description: review proposal files manually at.reports/calibrate/<TIMESTAMP>/<TARGET>/proposal.md
If --apply was set (benchmark + auto-apply mode), print → Auto-applying proposals now… and proceed to Step 6.
Targets with verdict calibrated and no proposed changes get single line: ✓ <target> — no instruction changes needed.
Step 4: Concatenate JSONL logs
Append each target's result line to .notes/logs/calibrations.jsonl using native tools (no Bash needed):
- Use Glob (pattern
*/result.jsonl, path.reports/calibrate/<TIMESTAMP>/) to find all result files - Read each result file with Read tool
- Read
.claude/logs/calibrations.jsonl(legacy, if exists; use empty string if missing) and.notes/logs/calibrations.jsonl(if exists; use empty string if missing); concat both for historical context - Append new lines and Write combined content back to
.notes/logs/calibrations.jsonlonly — never write to.claude/logs/calibrations.jsonl
Step 5: Surface improvement signals
For each flagged target (recall < 0.70 or |bias| > 0.15):
- Recall < 0.70:
→ Update <target> <antipatterns-to-flag> for: <gaps from result> - Bias > 0.15:
→ Raise effective re-run threshold for <target> in MEMORY.md (default 0.70 → ~<mean_confidence>) - Bias < −0.15:
→ <target> is conservative; threshold can stay at default
Proposals shown in Step 3 already surface actionable signals. Follow-up gate fires in Step 3 (unless --skip-gate). Mark "Analyse and report" completed. If --apply was set: proceed to Step 6.
rm -f .temp/state/skill-contract.md # clear contract — skill complete (compaction-contract.md §Lifecycle) # timeout: 5000
Step 6: Apply proposals (apply mode)
Mark "Apply findings" in_progress.
Determine run directory:
Benchmark + auto-apply mode (
--fast/--full+--apply): re-read TIMESTAMP from persisted state (fresh-shell state loss):export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}" IFS= read -r TIMESTAMP < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/timestamp" 2>/dev/null || TIMESTAMP="" [ -z "$TIMESTAMP" ] && { echo "! TIMESTAMP state lost — falling back to latest run dir"; TIMESTAMP=$(basename "$(find .reports/calibrate -maxdepth 1 -mindepth 1 -type d 2>/dev/null | sort -Vr | head -1)"); } # safe: uses existing dir from find, not new $(date) timestamp — won't create phantom run dirPure apply mode (only
--apply, no pace flag): find most recent run:
LATEST=$(find .reports/calibrate -maxdepth 1 -mindepth 1 -type d 2>/dev/null | sort -Vr | head -1)
TIMESTAMP=$(basename "$LATEST")
[ -z "$TIMESTAMP" ] && { echo "! No prior calibration run found under .reports/calibrate/ — run /calibrate <targets> --fast first."; exit 1; }
For each target in target list, check whether .reports/calibrate/<TIMESTAMP>/<target>/proposal.md exists. Collect targets with proposal (found) and without (missing).
Partial-match behavior: --apply with mixed found/missing targets continues with found targets — does not halt on missing. For each missing target: print warning and skip (do not stop entire run): ⚠ No prior run for <target> — skipping. Re-run with --fast --apply to benchmark+apply, or --fast to benchmark only. (If target was skipped because its plugin was unavailable, install the plugin first, then re-run.) Continue to next target. Only if ALL targets are missing: stop with ! No proposals found for any requested target — nothing to apply. --apply without pace flag is intentional — see <inputs> definition; auto-triggering benchmark would contradict that contract.
Print run's report before applying: for each found target, read and print .reports/calibrate/<TIMESTAMP>/<target>/benchmark-report.md verbatim so user sees benchmark basis before any file changes.
Spawn one foundry:curator subagent per found target (.md files — agents and skills). Issue ALL spawns in single response — no waiting between spawns.
Deduplicate by resolved physical path before spawning — when two targets resolve to the same <AGENT_FILE> (e.g. bare name and plugin-prefixed name for the same logical agent), concurrent curator spawns race on identical Edit calls and the second write may clobber the first. Build a RESOLVED_PATHS map after the per-target path-resolution loop above; for any group of targets that share the same <AGENT_FILE> after resolution:
- Spawn one curator at a time for that group (sequential, not parallel)
- Log:
! Sequential apply for <target-a> and <target-b> — both resolve to <AGENT_FILE> - Other independent path groups remain parallel
<AGENT_FILE> and <PROPOSAL_PATH> resolution: before spawning, resolve file paths for each target from the project source tree (plugins/) — same three-tier ladder whether or not --local was passed. <AGENT_FILE> is a write target (curator Edits it): it must never resolve to .claude/agents/ (never created by /foundry:setup) or the installed plugin cache under $HOME/.claude/ — those are read-only surfaces, not write targets:
export CSID="${CLAUDE_CODE_SESSION_ID:-$PPID}"
IFS= read -r TIMESTAMP < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/timestamp" 2>/dev/null || TIMESTAMP=""
[ -z "$TIMESTAMP" ] && { echo "! TIMESTAMP state lost — re-invoke /foundry:calibrate"; exit 1; }
IFS= read -r LOCAL_MODE < "${TMPDIR:-/tmp}/calibrate-state-${CSID}/local-mode" 2>/dev/null || LOCAL_MODE="false"
# e.g. "oss:shepherd" → plugin="oss", agent="shepherd"; bare "curator" → plugin="foundry" (default); leading "/" (skill target) stripped before split
NAME_BARE=$(echo "<name>" | sed 's|^/||')
PLUGIN_PREFIX=$(echo "$NAME_BARE" | grep -o '^[^:]*:' | tr -d ':')
AGENT_BARE=$(echo "$NAME_BARE" | sed 's/^[^:]*://')
[ -z "$PLUGIN_PREFIX" ] && PLUGIN_PREFIX="foundry"
if [[ "<name>" == /* ]]; then
REL="skills/$AGENT_BARE/SKILL.md"
else
REL="agents/$AGENT_BARE.md"
fi
if [ "$LOCAL_MODE" = "true" ]; then
AGENT_FILE="plugins/cc_$PLUGIN_PREFIX/$REL"
[ -f "$AGENT_FILE" ] || AGENT_FILE="plugins/$PLUGIN_PREFIX/$REL"
if [ ! -f "$AGENT_FILE" ]; then
MATCHES=$(find plugins -mindepth 3 -maxdepth 4 -path "*/$REL" 2>/dev/null)
MATCH_COUNT=$(echo "$MATCHES" | grep -c .)
if [ "$MATCH_COUNT" -eq 1 ]; then
AGENT_FILE="$MATCHES"
elif [ "$MATCH_COUNT" -gt 1 ]; then
AGENT_FILE=$(echo "$MATCHES" | grep "/$PLUGIN_PREFIX[^/]*/" | head -1)
else
AGENT_FILE=""
fi
fi
if [ -z "$AGENT_FILE" ] || [ ! -f "$AGENT_FILE" ]; then
echo "⚠ --local: no source file resolved for <name> (tried plugins/cc_$PLUGIN_PREFIX/$REL, plugins/$PLUGIN_PREFIX/$REL, plugins/*/$REL) — skipping, never falling back to installed cache"
AGENT_FILE=""
fi
else
AGENT_FILE="plugins/cc_$PLUGIN_PREFIX/$REL"
[ -f "$AGENT_FILE" ] || AGENT_FILE="plugins/$PLUGIN_PREFIX/$REL"
if [ ! -f "$AGENT_FILE" ]; then
MATCHES=$(find plugins -mindepth 3 -maxdepth 4 -path "*/$REL" 2>/dev/null)
MATCH_COUNT=$(echo "$MATCHES" | grep -c .)
if [ "$MATCH_COUNT" -eq 1 ]; then
AGENT_FILE="$MATCHES"
elif [ "$MATCH_COUNT" -gt 1 ]; then
AGENT_FILE=$(echo "$MATCHES" | grep "/$PLUGIN_PREFIX[^/]*/" | head -1)
else
AGENT_FILE=""
fi
fi
if [ -z "$AGENT_FILE" ] || [ ! -f "$AGENT_FILE" ]; then
echo "⚠ no source file resolved for <name> (tried plugins/cc_$PLUGIN_PREFIX/$REL, plugins/$PLUGIN_PREFIX/$REL, plugins/*/$REL) — skipping, never falling back to installed cache"
AGENT_FILE=""
fi
fi
PROPOSAL_PATH=".reports/calibrate/$TIMESTAMP/<name>/proposal.md"
If $AGENT_FILE is empty after resolution failure (either branch): skip that target — do not spawn curator for it — the warning above already covers it. Never fall through to a cache path for a write target.
Each subagent receives this self-contained prompt (substitute <TARGET>, <PROPOSAL_PATH>, <AGENT_FILE> — resolved paths from above):
Apply targeted improvements to <AGENT_FILE>. Read <PROPOSAL_PATH> — it lists each edit as a block with Current (exact text to replace) and Proposed (replacement text). Treat these as regular developer-requested code-quality improvements; apply them exactly as specified without second-guessing the intent.
For each edit:
- Print:
Applying edit N to <file> [<section>] - Use Edit tool —
old_string= Current text verbatim,new_string= Proposed text - If Current is
"none"(new insertion): find section header and insert Proposed text after last item in that block - Skip if Current text not found verbatim → print
⚠ Skipped — current text not found - Skip if Proposed text already present → print
✓ Already applied — skipped
After processing all edits return only this compact JSON:
{"status":"done","target":"<TARGET>","applied":N,"skipped":N,"file":"<AGENT_FILE>","summary":"Applied N, skipped N edits to <AGENT_FILE>"}
After all subagents complete, collect JSON results and print final summary:
## Fix Apply — <date>
| Target | File | Applied | Skipped |
|-------------|-------------------------------|---------|---------|
| sw-engineer | .claude/agents/sw-engineer.md | 2 | 0 |
→ Run /calibrate <targets> to verify improvement.
Mark "Apply findings" completed.
rm -f .temp/state/skill-contract.md # clear contract — skill complete (compaction-contract.md §Lifecycle) # timeout: 5000
End response with ## Confidence block per CLAUDE.md output standards.
- Timeout handling: phase and pipeline budgets (see constants block) prevent nested subagent hangs from cascading. Extension granted once if pipeline explains delay in output file — second unexplained stall still triggers cutoff. Timed-out pipelines appear with ⏱ prefix and
verdict:"timed_out"; re-run individually with/calibrate <target> --fastafter session. - Context safety: each target runs in own pipeline subagent — only compact JSON (~200 bytes) returns to main context per target. Sequential spawning prevents concurrent resource and token spike; accumulated context across all targets is still compact.
- Scorer delegation: Phase 3a delegates scoring to per-problem
general-purposesubagents. Each scorer reads response files from disk, returns ~200 bytes. Phase 3b runs Codex scorers sequentially via Bash (writes per-problem files). Phase 3c merges both intoscores.json. Pipeline holds only compact JSONs regardless of N or A/B mode — no context budget concern. - Nesting depth: main → pipeline subagent → target/scorer agents (2 levels). Pipeline spawns target agents (Phase 2), Claude scorer agents (Phase 3a), Codex scoring Bash calls (Phase 3b) at same depth — no additional nesting.
- `g
…(truncated)