Wave Executor Skill
Execution Model
You are the coordinator. You do NOT implement — you orchestrate. Your job:
- Dispatch subagents for each wave
- Wait for ALL agents in a wave to complete
- Review their outputs
- Adapt the plan if needed
- Dispatch the next wave
- Repeat until all waves complete
Design Philosophy
This harness exists to enable multi-agent coordination at scale — not by removing friction, but by making it visible, classifiable, and recoverable.
The wave-executor is process scaffolding around LLM agents. It handles task breakdown, scope enforcement, circuit breaker guards, and recovery patterns. Unlike direct chat with an agent, it trades flexibility for safety and repeatability across a bounded execution envelope.
Every harness creates friction. The goal is not minimum friction — it is useful friction that prevents higher-cost problems downstream.
Friction we accept:
- Wave planning overhead and
wave-scope.jsonpre-dispatch setup - Per-wave quality gates before proceeding
- Worktree isolation costs for parallel agents
- Turn-limit constraints that stop runaway agents early
Friction we prevent:
- Agent scope violations (PreToolUse hooks block out-of-scope file edits)
- Cascading failures (circuit breaker + spiral detection halt broken agents before they propagate damage)
- Silent partial completion (STATUS line requirement forces explicit reporting)
- Untracked carryover work (session-end plan verification catches unresolved tasks)
The harness does not hope agents self-correct. It detects stagnation patterns — pagination-spiral, turn-key-repetition, error-echo (read by the coordinator during post-wave review), plus psa007-git-write and status-partial (detected live by the transcript tailer, recorded with source: "tail") — classifies error-echo into the Error-Class Taxonomy defined in circuit-breaker.md, and re-scopes mechanically. Review logic lives in wave-loop.md § "Review Agent Outputs"; the tailer's start and its silence-is-not-success caveat live in the same file, step 2.0-bis.
Platform Note
State files live in the platform's native directory:
.claude/for Claude Code,.codex/for Codex CLI,.cursor/for Cursor IDE. All references to.claude/below should use the platform's state directory. Shared metrics (sessions.jsonl, learnings.jsonl) live in.orchestrator/metrics/— both platforms read and write there. Seeskills/_shared/platform-tools.mdfor tool mappings.
Phase 0: Bootstrap Gate
Read skills/_shared/bootstrap-gate.md and execute the gate check. If the gate is CLOSED, invoke skills/bootstrap/SKILL.md and wait for completion before proceeding. If the gate is OPEN, continue to the Pre-Execution Check.
Session-start only: This gate check runs ONCE at the start of
/goexecution — before the first wave. It does NOT run before each wave step. Repeating the check per wave would add latency with no safety benefit, sincebootstrap.lockis immutable within a session.
Phase 0.5: Parallel-Aware Preamble
Skip silently when
persistence: falsein Session Config.
Before Phase 1, run the parallel-aware preamble per skills/_shared/parallel-aware-preamble.md. The preamble detects other active sessions in the worktree-family via findPeers(repoRoot, { mySessionId }), classifies the caller's mode via classifyMode(callerMode) against the exclusivity-matrix, and fires the appropriate AUQ on conflict.
Outcome handling:
PASS_THROUGH→ continue to Phase 1EXCLUSIVE_BLOCKED→ exit Phase 0 cleanly per the AUQ outcomePROMOTION_OFFER→ user picks Worktree-Promotion (seeparallel-aware-auq.mdoutcome-handling — callsenterWorktree()), in-place + Deviation, or Abbrechen
For session-end specifically: the preamble is DETECTION-ONLY. The lock-release path in later phases keeps its current behavior — releasing the OWN session's lock requires no matrix consultation.
Implementation reference: skills/_shared/parallel-aware-preamble.md § Implementation.
AUQ reference: skills/_shared/parallel-aware-auq.md.
Pre-Execution Check
Before starting the first wave (Discovery role):
git status --short— ensure clean working directory (commit or stash if needed)Verify no parallel session conflicts (unexpected modified files)
Confirm the agreed plan is still valid (no new critical issues since planning)
Verify
jqis installed — runcommand -v jq. If not found, warn the user: "⚠ jq is not installed. Scope and command enforcement hooks will be DISABLED. Install jq (brew install jq/apt install jq) to enable security enforcement." Do NOT proceed with waves until user acknowledges.Read Session Config: Parse Session Config per
skills/_shared/config-reading.md. Store result as$CONFIG. Extract these fields:persistence(default: true),enforcement(default: warn),isolation(default: auto)agents-per-wave(default: 6),max-turns(default: auto),pencil(default: null)
Neither
agents-per-wavenormax-turnscarries its own default here. The per-waveagentCapandmaxTurnscome from the RESOLVED SHAPE (node scripts/session-shape.mjs --repo-root "$PWD" --session-type <session-type> [--profile <session-profile>] [--known-scope true|false], modulescripts/lib/session-shape.mjs) — that is the one place a session mode becomes an execution shape. Session Config'sagents-per-wave(with its per-type override, e.g.6 (deep: 18)) CLAMPS the shape'sagentCap;max-turns: autois expanded per type inside the shape, not in this file.Execution Config shortcut: If the session-plan output contains an
### Execution Configsection, its execution-level fields (waves, agents-per-wave, isolation, enforcement, max-turns) take precedence over$CONFIG. Session-level fields (persistence, pencil) always come from$CONFIG. If the Execution Config section is missing, use$CONFIGalone.Initialize session metrics (if
persistenceenabled): Prepare a metrics tracking object for this session:session_id:<branch>-<YYYY-MM-DD>-<HHmm>(HHmm fromstarted_at— ensures uniqueness across multiple sessions per day)session_type: from Session Configstarted_at: ISO 8601 timestampwaves: empty array (populated after each wave) This object lives in memory during execution — it is written to disk by session-end.
Pre-Execution: User Instructions
If the user provided additional instructions with /go (e.g., /go focus on API endpoints), apply them as a priority modifier:
- Incorporate into agent prompts: Add a "Priority Focus:" section to each agent's prompt that includes the user's instructions verbatim
- Do NOT override the plan: User instructions adjust emphasis within the existing plan, they do not replace it. If the instructions conflict with the plan, note the conflict and follow the plan.
Example: If user said /go focus on API endpoints, each agent prompt includes:
**Priority Focus (from user):** focus on API endpoints
Pre-Wave 1a: Capture Session Start Ref
Before dispatching Wave 1, capture the current commit as the session baseline:
SESSION_START_REF=$(git rev-parse HEAD)
Store this value for use throughout the session — it is needed by the simplification pass (Quality wave) and session-reviewer dispatch to determine which files changed during this session. Include it in the coordinator's context, NOT in individual agent prompts.
Pre-Wave 1b: Initialize STATE.md
Skip this section entirely if
persistence: false.
Before dispatching Wave 1, write <state-dir>/STATE.md with YAML frontmatter and Markdown body:
---
schema-version: 1
session-type: feature|deep|housekeeping
branch: <current branch>
issues: [<issue numbers from plan>]
started_at: <ISO 8601 timestamp with timezone>
status: active
current-wave: 0
total-waves: <from session plan>
---
## Current Wave
Wave 0 — Initializing
## Wave History
(none yet)
## Deviations
(none yet)
Create the <state-dir> directory if needed (mkdir -p <state-dir>) before writing. This file is the persistent state record — other skills and resumed sessions read it.
Then VALIDATE total-waves against the resolved shape — do not skip this. A plan whose wave count the shape does not produce must never be dispatched silently:
node scripts/session-shape.mjs --repo-root "$PWD" \
--session-type <session-type> [--profile <session-profile>] [--known-scope true|false] \
--no-event | jq .totalWaves
--no-event is used HERE because the plan-time run already recorded orchestrator.session.shape_resolved — this is a re-read, not a second resolution. Compare the printed number with the plan's wave count (the value just written to total-waves):
- Equal → continue to Wave 1.
- Mismatch → STOP. Surface it via
AskUserQuestionper.claude/rules/ask-via-tool.md, with the shape's number and the plan's number both in the option descriptions: re-plan to the shape (Recommended) — rebuild the wave plan at the shape's wave count, the only outcome that keeps STATE.md, the ledger and the dispatch loop describing the same session — versus proceed with a logged Deviation, which requires appending the divergence to STATE.md## Deviations(appendDeviationOnDisk()fromscripts/lib/state-md.mjs) before the first dispatch.
Pre-Wave 1b Extension: Docs Tasks Persistence (A3 / #230)
After writing the base STATE.md frontmatter above, conditionally persist the docs tasks block emitted by session-plan:
Condition: BOTH of the following must be true:
- The session plan contains a
### Docs Tasks (machine-readable)section with a YAML code block. $CONFIG."docs-orchestrator".enabledistrue.
If either condition is false → omit the docs-tasks field entirely. Do NOT write an empty key (docs-tasks: []). Absence means "no docs tasks planned this session" — downstream consumers (session-end Phase 3.2) treat absence the same as an empty list.
When the condition is met, parse the YAML block from the session plan's ### Docs Tasks (machine-readable) section and append the following field to the STATE.md YAML frontmatter (alongside the base fields above):
docs-tasks:
- id: <task id from plan>
audience: <user|dev|vault>
target-pattern: <glob pattern from plan>
rationale: <rationale string from plan>
wave: <wave number the task is assigned to>
status: planned
Each entry's status is initialized to planned. session-end Phase 3.2 (Docs Verify) writes the terminal value per task: ok (diff is substantive), partial (diff region contains <!-- REVIEW: source needed --> markers), or gap (no matching diff). wave-executor does NOT perform intermediate status updates — planned remains until session-end runs.
Schema note:
schema-version: 1now includes the optionaldocs-tasksarray. The field is backwards-compatible — its absence is a valid schema-version-1 STATE.md meaning "no docs tasks planned". Readers MUST treat a missingdocs-taskskey identically todocs-tasks: [].
Ownership clarification: session-plan does NOT write STATE.md directly. The wave-executor owns ALL STATE.md writes — initialization here (Pre-Wave 1b) is the canonical write point for
docs-tasks. session-plan only emits the source### Docs Tasks (machine-readable)block for the coordinator to consume. Seeskills/_shared/state-ownership.mdfor the full ownership matrix.
Consumer cross-reference: session-end reads
STATE.mdfrontmatter'sdocs-tasksfield (if present) during Phase 3.2 Docs Verify — seeskills/session-end/SKILL.md. The field is also readable by the docs-writer agent if it needs to know which tasks were planned for the current session.
Ownership: STATE.md is owned by the wave-executor. Only the wave-executor writes to it (initialization + post-wave updates). session-end reads it for metrics extraction and sets
status: completed. session-start reads it only for continuity checks (Phase 0.5). No other skill should write to STATE.md.
Wave Execution Loop
Read and follow wave-loop.md in this skill directory for the complete wave execution loop, including agent dispatch, output review, plan adaptation, progress updates, and scope manifest creation.
Since #1157 that file is a 39-line INDEX and the loop body lives in three files under references/. Its own table is the routing table — read it there, not here: it carries a Read WHEN column stating at which moment each file is due, which is the half a copy loses. Two of the three steps are marked MANDATORY-BEFORE-DISPATCH; skipping either dispatches the wave unguarded and the failure is SILENT — no error, no ledger entry, indistinguishable from a clean run.
Turn budget, maxTurns, and stagnation recovery are unmoved: circuit-breaker.md. Every wave-loop.md § … citation elsewhere in this file resolves into one of the three sub-files.
Mission-Status Updates (#340)
The coordinator (you) is responsible for updating per-task mission status in STATE.md as tasks progress through the wave. Use setMissionStatus(stateContent, taskId, status) from scripts/lib/state-md.mjs and write the result back to STATE.md immediately.
taskId grammar (enforced). setMissionStatus refuses any taskId outside [a-z][a-z0-9]*(?:-[a-z0-9]+)*-\d+ — lowercase segments joined by single hyphens, ending in a bare digit run. Accepted: m-1, docs-2, w2-1, w2-a-10. Refused (refused: 'id-grammar'): w2-a10 (digits fused onto a letter segment), w3-p2 (no trailing bare-digit segment), W3-I1 (uppercase), Docs_2 (underscore). A refused write returns { written: false, reason: 'id-grammar' } from setMissionStatusOnDisk and logs a stderr WARN naming the rejected id — nothing is written to STATE.md on refusal, so mint ids matching this grammar from the start rather than relying on the refusal to catch a typo.
Per-task transition rules (coordinator fires these, NOT wave-loop.md):
| Transition | When to fire |
|---|---|
brainstormed → validated |
User runs /go to approve the wave plan (all items simultaneously) |
validated → in-dev |
Agent for that wave-plan item is dispatched via Agent() tool |
in-dev → testing |
Quality wave begins and this item's implementation wave completed without failure |
testing → completed |
Quality-Lite gate passes (green) for this task's wave — coordinator confirms item done |
Any → brainstormed |
Item is discarded, re-planned, or rolled back |
Important scoping notes:
- These transitions are coordinator-level orchestration decisions, not part of
wave-loop.mddispatch/review logic. Do NOT modifywave-loop.mdto add mission-status calls. wave-loop.mdis NOT modified by #340 — the transitions listed above are called by the coordinator after observing the wave-loop outcomes.- Only update items whose
idappears in the### Wave-Plan Mission Status (machine-readable)block emitted by session-plan. Invent no new IDs. - When STATE.md does not yet have a
## Mission Statusbody section,setMissionStatuscreates it automatically (seescripts/lib/state-md.mjs). readMissionStatus(stateContent, taskId)from the same module returns the current status string for a task (ornullif not found), useful for guard-checking before transitions.
Backward compat: STATE.md files without a ## Mission Status section are valid — absence means no status tracking was started. The helpers are no-throw on bad input.
Circuit Breaker & Worktree Isolation
Reference: See
circuit-breaker.mdin this skill directory for MaxTurns enforcement, spiral detection, recovery protocol, and worktree isolation configuration. Apply those rules during every wave dispatch and post-wave review.
Coordinator CWD Discipline (#219)
Claude Code's Agent tool with isolation: "worktree" changes process.cwd() into the agent's worktree and does not restore it on agent return. Without discipline, the coordinator's subsequent Edit/Write/Bash calls silently route to a worktree branch — producing data loss when the worktree is later pruned.
Rules for the coordinator (this is YOU during wave execution):
- After every Agent() dispatch (before reading its output), call
restoreCoordinatorCwd()fromscripts/lib/workspace.mjs.wave-loop.md § 2makes this explicit. - Prefer absolute file paths for Read/Edit/Write tool calls. A drifted CWD turns relative paths into silent cross-tree writes.
- Before any Bash git command, either
cdinside a subshell (cd /path && cmd) or rely ongit -C /path <cmd>. Do not assume CWD. - Verify at checkpoints — when in doubt, run
git rev-parse --show-toplevelto confirm which tree is currently active. - Never
cdinto a worktree in the coordinator's top-level shell. If you need to inspect a worktree, usegit -C <wt-path> ...or spawn a subshell.
Coordinator User Interaction
Every mid-wave user decision — pause/continue, scope changes, plan revisions, routing between alternate tracks, confirming a risky recovery step, picking between recommendations — MUST go through the AskUserQuestion tool. Inline markdown-list "choose 1/2/3" questions in chat prose are forbidden: the user reliably misses them in the dense wave-execution stream. See .claude/rules/ask-via-tool.md for the full rule (AUQ-001 through AUQ-005).
Mechanics:
AskUserQuestionis a deferred tool in Claude Code. On the first coordinator decision point in a session, callToolSearchwith"select:AskUserQuestion"once to load its schema, then call the tool. Do not skip the question to avoid the load.- Option 1 always carries
(Recommended)in the label. Each option carries a one-linedescriptionstating the trade-off. AskUserQuestionis not available inside dispatched subagents. If an agent surfaces a decision back to you, ask the user viaAskUserQuestionfrom the coordinator turn — do not let the agent emit a prose question.
Applies to every interaction point in wave-loop.md that currently says "inform the user", "propose revised plan", "ask the user whether to…", or "report specific mismatches to user" when a choice is implied.
Agent Prompt Best Practices
Each agent prompt MUST include:
- Clear scope boundary: "You are working on [X]. Do NOT modify files outside [paths]."
- Full context: file paths, current code structure, issue description. If a bite-sized executable plan exists at
docs/plans/<feature>.mdfor the wave's tasks (seeskills/write-executable-plan/SKILL.md), include the path in each agent's prompt and instruct the agent to follow the plan's 5-step structure verbatim. - Acceptance criteria: measurable definition of done
- Rule references: the wave's applicable rules are injected automatically as the
<APPLICABLE-RULES>block produced byscripts/print-applicable-rules.mjs(seewave-loop.md§ "Pre-Dispatch: Glob-Scoped Rule Injection (#336/#694)"). The block is computed once per wave from the wave'sallowedPathsand prepended to every agent prompt — do not hand-copy rule paths into the prompt. Past learnings arrive separately as the<LEARNINGS-INDEX>block fromscripts/print-learnings-index.mjs(seewave-loop.md§ "Pre-Dispatch: Learnings-Index Injection (#1014)"), computed per agent from its own file scope rather than once per wave. - Testing expectation (need-gated): "Before writing any test, name the concrete bug a NEW test would catch that the existing suite does not. No nameable bug → write NO test and report
no-tests-needed: <reason>— that is a SUCCESS outcome, not a gap. With a nameable bug: exactly one test for it. Running existing tests is always mandatory." - Commit instruction: "Do NOT commit. The coordinator handles commits. Never
git stash,git add,git checkout --orgit reseteither (PSA-007) — to compare against the pre-change state, readgit show HEAD:<path>(orgit show <sha>:<path>); it never touches the shared index." Measured 2026-09-02: two agents in one wave reached forgit stashto build a baseline; both recovered, both were the same shape. - Turn limit: Include the maxTurns instruction from
circuit-breaker.md - Verification before completion: Before claiming any task done, run the verification command and quote the evidence inline. See
.claude/rules/verification-before-completion.md.
Each agent prompt MUST NOT include:
- References to other agents' tasks (isolation)
- Vague instructions like "improve" or "optimize" without specifics
- Assumptions about code state — provide the actual state
Agent Memory-Proposal Capability (#501)
Wave-executor agents may propose memory entries (learnings) mid-session via the memory.propose CLI. The coordinator surfaces proposals at session-end Phase 3.6.3 (skills/session-end/SKILL.md) for AUQ-confirm before promoting them to learnings.jsonl with _provenance: agent-proposed@<wave-id>. Conservative safety model: max memory.proposals.quota-per-wave (default 5) per wave, memory.proposals.confidence-floor (default 0.5).
Agent prompt boilerplate — when dispatching an Impl-Core / Impl-Polish / Quality agent in a session where memory.proposals.enabled: true (default), include this block in the agent's prompt so the capability is discoverable:
## Memory Proposal Capability (optional)
During this wave, you may propose a learning to the session's memory via the CLI:
SO_WAVE_AGENT=1 node scripts/memory-propose.mjs \
--type <one of: workflow-pattern|anti-pattern|recurring-issue|fragile-file|effective-sizing|proven-pattern|mode-selector-accuracy|hardware-pattern|autopilot-effectiveness|domain-regression|convention|architecture-pattern|design-pattern> \
--subject "one-line title (max 100 chars, no newlines)" \
--insight "your discovery paragraph (max 2000 chars)" \
--evidence "concrete proof: code citation / log excerpt / commit ref (max 5000 chars)" \
--confidence <0.5 to 1.0> \
--file-paths "scripts/lib/a.mjs,scripts/lib/b.mjs"
MUST prefix with `SO_WAVE_AGENT=1` — without it the CLI returns exit 3 `rejected-wrong-context`. The env-var is the per-process guard that distinguishes wave-executor agents from coordinator-context invocations.
`--file-paths` is optional but strongly encouraged: repo-relative path(s) this learning applies to (repeatable and/or comma-separated, deduped; rejects absolute paths, `..` segments, embedded newlines, entries over 256 chars, and more than 20 entries). Without `--file-paths` this learning can never become `/reconcile`-eligible — the reconciliation engine can only convert a learning into a conditional `.claude/rules/*.md` rule when it carries a non-empty scope (issue #900).
Exit code 0 = queued (the coordinator will present at session-end via AskUserQuestion); 1 = quota-exceeded; 2 = rejected-low-confidence (below floor 0.5); 3 = rejected-wrong-context (STATE.md not active OR SO_WAVE_AGENT != "1"); 4 = error (arg validation or internal).
Use ONLY when you find a recurring pattern, anti-pattern, or constraint worth carrying into future sessions. The coordinator confirms each proposal before it lands in learnings.jsonl. Do NOT over-propose — quota is bounded per wave.
Analyzer-only learning types, including `autonomy-verdict`, are intentionally not valid here; those are emitted by `/evolve` after their analyzer-specific evidence gates pass.
Skip injection when:
memory.proposals.enabled: falsein Session Config, OR- Discovery / Finalization waves (Discovery is read-only; Finalization is coordinator-direct)
Audit trail: the hooks/pre-bash-memory-propose-audit.mjs hook logs every CLI invocation to .orchestrator/metrics/events.jsonl with the value of --insight / --subject / --evidence redacted (privacy-by-default).
Cross-reference: PRD F2.1 / issue #501 / docs/memory-proposal-flow.md (coordinator-side AUQ rendering reference doc) / scripts/lib/memory-proposals/{schema,store,collector,sink}.mjs (the modules).
Session Type Behavior
Housekeeping Sessions — the Maintenance Loop
A housekeeping session is ONE coordinator-direct wave, not a shrunken multi-wave run: node scripts/session-shape.mjs --repo-root "$PWD" --session-type housekeeping --no-event resolves to totalWaves: 1 with that wave's coordinatorDirect: true and writes: true. "Coordinator-direct" means no wave-executor dispatch loop — it does not mean zero subagents (/evolve dialectic dispatches the read-only dialectic-deriver).
Ordered default scope — the maintenance loop. Run it in this order, before the session's selected issues:
| # | Run | Gate | Artefact that proves it ran |
|---|---|---|---|
| 1 | claude-md-drift-check |
unconditional | checker JSON (errors/warnings counts) |
| 2 | expired-learnings sweep | unconditional | orchestrator.learnings.sweep_applied |
| 3 | /evolve analyze |
AUQ-gated (the operator approves the proposed learnings) | orchestrator.evolve.completed |
| 4 | /reconcile |
AUQ-gated (rule proposals are never applied unasked) | orchestrator.reconcile.completed with dry_run: false |
| 5 | /evolve dialectic |
AUQ-gated (the derived thesis is presented, not committed) | orchestrator.dialectic.completed |
| 6 | /memory-cleanup |
AUQ-gated (deletions are operator-approved) | orchestrator.memory.cleanup_completed |
The session-start probe maintenance-due (scripts/lib/maintenance-due-banner.mjs) says which of these are DUE for this repo; a run that is not due may be skipped, and the skip is reported. An AUQ-gated run the operator declines is reported as declined — never as done. Absence of the artefact event is the only evidence that counts: a run claimed in prose without its event is not a run (.claude/rules/verification-before-completion.md).
Then the mechanics:
- Initialize STATE.md as normal (
session-type: housekeeping,total-waves: 1) - Do NOT create
wave-scope.json— there is no agent fan-out to constrain; the coordinator's own edits stay governed by itscoordinator.jsonrecord - Execute the maintenance loop above, then the session's selected issues, serially as coordinator actions
- Run Baseline quality checks after all tasks complete (not between tasks)
- Skip session-reviewer dispatch — housekeeping changes are low-risk
- Do NOT update STATE.md to
status: completed— that write is reserved for session-end per state-ownership contract (skills/_shared/state-ownership.md). Leavestatus: active. - Proceed directly to session-end (
/close)
Beyond the loop: git cleanup, SSOT refresh, CI fixes, branch merges, documentation. End with a single commit summarizing all housekeeping work.
Feature Sessions
- 3 waves (Impl-Core → Impl-Polish+Quality → Finalization) with no Discovery wave — read them from the shape, not from this file:
node scripts/session-shape.mjs --repo-root "$PWD" --session-type feature --no-event - Per-wave agent caps come from the shape's
agentCap(the shape caps a feature wave at 4), clamped by Session Configagents-per-wave - Balance between implementation speed and quality
Deep Sessions
- 5 waves from the shape (
--session-type deep); the Discovery wave is conditional — pass--known-scope truewhen the scope is already established and the shape drops Discovery, leaving 4 waves - Per-wave agent caps come from the shape's
agentCap, clamped by Session Configagents-per-wavewith its per-type override (this repo:agents-per-wave: 6 (deep: 18)) - Extra emphasis on Discovery role and Quality role
- May include security audits, performance profiling, architecture refactoring
Ultradeep Profile (session-profile: ultradeep)
Not a fourth session type — a PROFILE over session-type: deep, resolved from the /session ultradeep argument alias (commands/session.md). Everything below applies only when STATE.md frontmatter carries session-profile: ultradeep; every other behaviour in this skill is unchanged, because downstream still reads deep. Full spec — wave table, mandatory artefacts, cost model: docs/prd/2026-09-06-ultradeep-session-profile.md.
- The wave count and the wave roles come from the shape, not from this file:
node scripts/session-shape.mjs --repo-root "$PWD" --session-type deep --profile ultradeep --no-eventreturnstotalWaves: 7(Research+Code-Discovery → Synthesis-Gate → Impl-Core → Impl-Polish → Review-Panel → Quality → Release/Finalization) and reportswavesConfigHonored: falsewith the ignored Session Configwavesvalue — the profile OWNS its wave count. Role narrative:skills/session-plan/SKILL.md§ Role-to-Wave Mapping. - Wave 2 is coordinator-direct and dispatches ZERO agents. Make NO
Agent()call in this wave. The coordinator consolidates wave 1 intodocs/audits/<YYYY-MM-DD>-<slug>.md, updates STATE.md, and asks ONE blockingAskUserQuestion(confirm scope / narrow / abort) per.claude/rules/ask-via-tool.md. Wave 3 does not start until that question is answered — this is the one gate the profile exists for, so a silent "no tasks, skip it" is a defect, not an optimisation (skills/session-plan/SKILL.md§ Empty roles, coordinator-direct exception). max-turnsis per ROLE, and the numbers live in the shape: take each wave's value fromwaves[].maxTurnsin the shape output above (the Research, implementing and Release/Finalization figures are produced there, not restated here). Set it on the dispatch; a wave whosemaxTurnsisnullis coordinator-direct and dispatches nothing.- Web tools are role-bound. Research agents in wave 1 receive
WebSearchandWebFetch. No write-capable agent may receive them — not in wave 1's Code-Discovery half, and not in any later wave. The grant follows the READ-ONLY property, so the pairing "has Write/Edit" + "has WebSearch/WebFetch" must never occur in a single dispatch. Research findings carry URL + retrieval date, the web analogue of the PSA-006 evidence rule (.claude/rules/parallel-sessions.md). - Budgets are not implemented. The PRD's
ultradeep.max-*block (§ 7) is deferred until three runs have been measured (HR-105: no threshold without a firing rate). Nothing reads such a key today — do not invent one, and do not gate a wave on it.
Error Recovery
| Situation | Action |
|---|---|
| Agent times out | Re-dispatch with smaller scope |
| Agent produces broken code | Add fix task to next wave |
| Tests fail after wave | Diagnose in next wave, don't skip |
| Merge conflict between agents | Resolve manually, document |
| TypeScript errors introduced | Track count, run Full Gate per quality-gates by Quality wave |
| New critical issue discovered | Inform user, add to Impl-Polish+ roles if fits scope |
| Agent edits wrong files | Revert via git, re-dispatch with stricter scope |
| New critical issue discovered with broken behavior | Apply skills/debug/SKILL.md Iron Law 4-phase investigation before proposing a fix |
Return Shape Contract (Autopilot Integration, #300)
When wave-executor is invoked as sessionRunner from scripts/lib/autopilot.mjs::runLoop, the value it returns to the loop drives the post-session kill-switches (spiral, failed-wave, carryover-too-high). The loop reads schema-canonical fields off the returned object — absent fields are treated as "no signal" (forward-compatible: an older or partial implementation simply does not trip the post-session gates).
// Returned by sessionRunner({mode, autopilotRunId}) — superset of session-record schema.
{
session_id: string, // required (used since Phase C-1)
agent_summary?: { // schema-canonical (session-schema.mjs)
complete?: number,
partial?: number,
failed?: number, // > 0 → kill-switch: failed-wave
spiral?: number, // > 0 → kill-switch: spiral
},
effectiveness?: { // schema-canonical (session-schema.mjs)
planned_issues?: number, // 0 → carryover gate is no-op (avoids div-by-zero)
carryover?: number, // / planned > carryoverThreshold → carryover-too-high
completion_rate?: number,
completed_issues?: number,
},
usage?: { // schema-canonical (autopilot token-budget kill-switch, #355)
output_tokens?: number, // cumulative output tokens for this session; absence → 0 (forward-compat)
total_tokens?: number, // alternative name accepted as fallback
},
}
autopilot_run_id propagation: when wave-executor is invoked under autopilot, args.autopilotRunId is the loop-level run id. The per-iteration sessions.jsonl record MUST carry autopilot_run_id: <id> so retros can join autopilot.jsonl ↔ sessions.jsonl without schema changes. Manual sessions write null or omit the field — readers treat both identically per the v1 additive convention. See skills/session-end/session-metrics-write.md.
Completion
After the Finalization wave completes successfully:
- Report final status to the user
- If
persistence: true, suggest invoking/closeto finalize the session. Ifpersistence: false, note that the session is complete (no STATE.md to close — session-end would be a no-op). - Do NOT auto-commit —
/closehandles that with proper verification
Vault-Sync Diff Reporting (#327)
When the inter-wave Quality-Lite checkpoint invokes vault-sync, it should prefer --mode=diff over full enforcement so the coordinator sees only regressions introduced by the current wave — not pre-existing issues that were already present at session start.
Preferred checkpoint invocation (once a baseline exists):
VAULT_DIR=<vault-dir> bash skills/vault-sync/validator.sh --mode diff
The diff JSON block ({ new_errors, resolved_errors, baseline_count, current_count, schema_hash }) is emitted to stdout. The coordinator parses it and surfaces a compact summary in the inter-wave checkpoint output. Focus on new_errors only — resolved_errors are informational.
First-run bootstrap: if no baseline file exists at <vault-dir>/.orchestrator/metrics/vault-sync-baseline.json, the coordinator runs --mode=baseline once before the next wave starts, then switches to --mode=diff for all subsequent checkpoints.
Schema migration: when the vendored schema in validator.mjs changes, the schema-hash in the existing baseline won't match. The validator falls back to full enforcement and emits a WARN to stderr. The coordinator must re-run --mode=baseline manually before resuming diff-mode checkpoints.
Configuration: diff-mode is enabled by default once a baseline exists. To force full enforcement at any checkpoint, set vault-sync.mode: full in Session Config or pass --mode full explicitly.
Cross-reference: baseline file shape, diff output schema, and schema-hash mismatch handling are documented in
skills/vault-sync/SKILL.md§ Modes (#327).
Inter-Wave Quality-Gate (with Auto-Fix Loop — #521)
After each wave, run the Quality-Gate. If verification-auto-fix.enabled: true
in Session Config, the gate uses runQualityGateWithRetry() from
scripts/lib/quality-gate.mjs which dispatches up to max-retries (default 2)
fixer-agent dispatches on failure.
Quality-wave Full-Gate mandate (#724 C6): the inter-wave gate following the Quality wave is ALWAYS the Full Gate (typecheck + test + lint) — never the cached Incremental short-circuit. The wave-executor threads the wave's waveRole into shouldSkipIncremental (see wave-loop.md § Baseline cache check); when waveRole === 'Quality' the cache is bypassed mechanically, so a valid cache or a narrow diff cannot downgrade the Quality-wave close-safety gate. See skills/quality-gates/SKILL.md § Variant 3: Full Gate — its dual consumers are session-end (Phase 2) and the Quality wave, and its Baseline-Cache invariant records that both are un-skippable.
Invocation
import { runQualityGateWithRetry } from '../../scripts/lib/quality-gate.mjs';
const result = await runQualityGateWithRetry({
maxRetries: config['verification-auto-fix']?.['max-retries'] ?? 2,
repoRoot: process.cwd(),
dispatchFixer: async ({ failures, correctiveContext, changedFiles }) => {
// Coordinator dispatches a code-implementer fixer subagent here with:
// - failures (gate + output)
// - correctiveContext (from .orchestrator/current-session.json)
// - changedFiles (since last green SHA)
// Subagent's task: fix the failing gate, never broaden scope.
await dispatchFixerSubagent({ failures, correctiveContext, changedFiles });
},
});
Decision flow
result.ok === true→ Wave green, proceed to next wave or session-end.result.ok === false→ Hard abort.- quality-gate.mjs writes
.orchestrator/metrics/verification-failures/<ts>.json(diagnostics bundle — automatic, redacted perredactDiagnosticsBundle()). - Coordinator (not fixer-subagent) appends a deviation entry to STATE.md via
appendDeviationOnDisk()— seewave-loop.md§ STATE.md Deviation — Auto-Fix Result. - Wave execution is blocked; operator must manually fix or disable auto-fix.
- quality-gate.mjs writes
result.attempts > 1→ Coordinator logs a Deviation in STATE.md viaappendDeviationOnDisk():auto-fix used N retries to clear Wave <wave>.
Skip Conditions
verification-auto-fix.enabled: false(default) → fall back to single-shot quality-gate, abort on first failure (current behavior preserved per PRD § 3 Gherkin negative path).verification-auto-fix.max-retries: 0→ equivalent to disabled.
Anti-pattern (BE-012 awareness)
The fixer-agent prompt MUST include a reminder of .claude/rules/testing.md § "Test Quality — False-Positive Prevention"
"test-the-mock" anti-pattern. A fix that makes tests green by mocking out the
real failure is a regression vector. The fixer prompt should explicitly say:
"Do NOT change test mocks to make tests pass. Fix the actual code defect."
Heartbeat cadence at inter-wave checkpoints (#590-3)
After each quality-gate PASS, the coordinator refreshes the session-lock heartbeat via the post-wave STATE.md step. See wave-loop.md § 3a. Post-Wave: Update STATE.md — step 5 contains the updateHeartbeat instruction and best-effort framing. The sessionId passed to updateHeartbeat is the session identifier established by session-start Phase 1.2 acquire() and stored in .orchestrator/session.lock (its session_id field); it matches the STATE.md frontmatter session: field written during Pre-Wave 1b initialization.
Agent-Status Telemetry (#565)
Optional, best-effort operator-side observability: the coordinator pushes lightweight per-agent status at three anchors (dispatch, agent-end, wave-end rollup) via scripts/lib/agent-status.mjs, gated on persistence: true. A push NEVER blocks a wave. The tmux --with-status-pane flag (skills/tmux-layout/SKILL.md) renders the live feed. See wave-loop.md § 3a-bis. Agent-Status Telemetry for the exact anchors and invocation.
Frontmatter-Guard (#328)
When an agent's task scope includes vault paths (~/Projects/vault/ or vault subdirectories such as 40-learnings/, 50-sessions/, 03-daily/, 01-projects/), the wave-executor injects a deterministic frontmatter-schema snippet into the agent's prompt. This eliminates the recurring failure class where agen
…(truncated)