@chllming/wave-orchestration 0.7.3 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/README.md +14 -13
- package/docs/README.md +3 -1
- package/docs/agents/wave-cont-qa-role.md +1 -0
- package/docs/agents/wave-integration-role.md +1 -0
- package/docs/agents/wave-launcher-role.md +4 -1
- package/docs/agents/wave-orchestrator-role.md +5 -3
- package/docs/concepts/operating-modes.md +1 -1
- package/docs/concepts/runtime-agnostic-orchestration.md +5 -4
- package/docs/concepts/what-is-a-wave.md +12 -10
- package/docs/guides/author-and-run-waves.md +3 -3
- package/docs/plans/architecture-hardening-migration.md +206 -0
- package/docs/plans/current-state.md +5 -3
- package/docs/plans/examples/wave-example-live-proof.md +1 -1
- package/docs/plans/master-plan.md +2 -2
- package/docs/plans/migration.md +12 -2
- package/docs/plans/wave-orchestrator.md +10 -8
- package/docs/reference/coordination-and-closure.md +8 -4
- package/docs/reference/npmjs-trusted-publishing.md +2 -2
- package/docs/reference/sample-waves.md +4 -4
- package/docs/reference/skills.md +3 -0
- package/docs/reference/wave-control.md +4 -2
- package/docs/research/coordination-failure-review.md +4 -4
- package/docs/roadmap.md +1 -1
- package/package.json +1 -1
- package/releases/manifest.json +39 -0
- package/scripts/wave-orchestrator/agent-state.mjs +405 -89
- package/scripts/wave-orchestrator/contradiction-entity.mjs +487 -0
- package/scripts/wave-orchestrator/coord-cli.mjs +6 -2
- package/scripts/wave-orchestrator/coordination-store.mjs +3 -1
- package/scripts/wave-orchestrator/launcher-gates.mjs +79 -11
- package/scripts/wave-orchestrator/launcher-retry.mjs +36 -6
- package/scripts/wave-orchestrator/launcher.mjs +163 -2
- package/scripts/wave-orchestrator/routing-state.mjs +91 -4
- package/scripts/wave-orchestrator/task-entity.mjs +425 -51
- package/scripts/wave-orchestrator/wave-control-schema.mjs +2 -0
- package/scripts/wave-orchestrator/wave-state-reducer.mjs +260 -111
- package/skills/README.md +3 -0
- package/skills/repo-coding-rules/SKILL.md +1 -1
- package/skills/role-cont-qa/SKILL.md +2 -2
- package/skills/role-deploy/SKILL.md +1 -1
- package/skills/role-documentation/SKILL.md +1 -1
- package/skills/role-implementation/SKILL.md +1 -1
- package/skills/role-infra/SKILL.md +1 -1
- package/skills/role-integration/SKILL.md +2 -2
- package/skills/role-security/SKILL.md +1 -1
- package/skills/runtime-claude/SKILL.md +1 -1
- package/skills/runtime-codex/SKILL.md +1 -1
- package/skills/runtime-opencode/SKILL.md +1 -1
- package/skills/wave-core/SKILL.md +14 -6
- package/skills/wave-core/references/marker-syntax.md +1 -1
package/docs/plans/migration.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Migration
|
|
2
2
|
|
|
3
|
+
For the staged internal cutover from the legacy launcher-centric runtime to the authority-set / reducer / phase-engine architecture, see [architecture-hardening-migration.md](./architecture-hardening-migration.md). This page stays focused on package adoption and upgrade steps for repo operators.
|
|
4
|
+
|
|
3
5
|
## Default Adoption Path
|
|
4
6
|
|
|
5
7
|
1. Install the package from npmjs with `pnpm add -D @chllming/wave-orchestration`.
|
|
@@ -22,13 +24,13 @@ GitHub Packages remains available as an authenticated fallback path, and maintai
|
|
|
22
24
|
- Fresh `wave init` seeds the starter `skills/` library. `wave init --adopt-existing` records existing repo-owned skill bundles when they are already present, but does not replace or rewrite them.
|
|
23
25
|
- The current runtime expects the post-roadmap model: typed coordination, compiled inboxes, `A8` integration, staged closure, orchestrator-first clarification, and operational runtime policy.
|
|
24
26
|
|
|
25
|
-
## Upgrading From 0.6.x To 0.
|
|
27
|
+
## Upgrading From 0.6.x To 0.8.1
|
|
26
28
|
|
|
27
29
|
Read `CHANGELOG.md` first, then treat this section as the repo-owned migration checklist for adopted `0.6.x` workspaces.
|
|
28
30
|
|
|
29
31
|
`wave upgrade` updates the installed runtime only. It does not copy planner starter files into a repo that already owns its docs, skills, and Context7 bundles.
|
|
30
32
|
|
|
31
|
-
`0.
|
|
33
|
+
`0.8.1` carries forward the `0.8.0` architecture-hardening release surface and tightens helper-assignment closure handling: `resolved-by-policy` records now default to `resolved`, single-target helper requests can close from policy follow-up without mutating the original request, and multi-target helper requests only close from assignment-specific policy evidence so sibling assignments stay honest.
|
|
32
34
|
|
|
33
35
|
### Required Repo Changes
|
|
34
36
|
|
|
@@ -40,6 +42,14 @@ If the repo adopted Wave before the planner corpus became a tracked required sur
|
|
|
40
42
|
- `docs/reference/wave-planning-lessons.md`
|
|
41
43
|
- the `planner-agentic` bundle entry in `docs/context7/bundles.json`
|
|
42
44
|
|
|
45
|
+
If the repo copied the shipped starter architecture docs or skills and wants the `0.8.1` authority-model language, also sync:
|
|
46
|
+
|
|
47
|
+
- `docs/agents/wave-launcher-role.md`
|
|
48
|
+
- `docs/agents/wave-orchestrator-role.md`
|
|
49
|
+
- `skills/wave-core/`
|
|
50
|
+
- the relevant runtime and closure-role starter skills under `skills/`
|
|
51
|
+
- `docs/plans/architecture-hardening-migration.md`
|
|
52
|
+
|
|
43
53
|
### Recommended Upgrade Validation
|
|
44
54
|
|
|
45
55
|
After syncing those repo-owned files:
|
|
@@ -7,7 +7,7 @@ For the broader docs map, concept pages, and workflow guides, start at [docs/REA
|
|
|
7
7
|
This runbook is the operational view of the architecture:
|
|
8
8
|
|
|
9
9
|
- one wave contract defines goals, ownership, proof, and closure
|
|
10
|
-
- one canonical
|
|
10
|
+
- one canonical authority set acts as the shared blackboard state: wave definitions, coordination records, control-plane events, and immutable result envelopes
|
|
11
11
|
- generated board, shared summary, inboxes, ledger, and integration outputs are projections over that state
|
|
12
12
|
- executor adapters preserve Claude, Codex, and OpenCode-specific runtime features at the edge
|
|
13
13
|
- closure makes completion depend on integrated proof and shared state, not on free-form agent narration
|
|
@@ -145,11 +145,11 @@ Compatibility note:
|
|
|
145
145
|
|
|
146
146
|
- `wave coord`, `wave retry`, and `wave proof` remain available as compatibility surfaces, but new operator docs and runbooks should prefer `wave control`.
|
|
147
147
|
|
|
148
|
-
The canonical state is the JSONL log under `.tmp/<lane>-wave-launcher/coordination/`. The markdown board is a generated projection for humans, not
|
|
148
|
+
The canonical conversational state is the JSONL log under `.tmp/<lane>-wave-launcher/coordination/`. The markdown board is a generated projection for humans, not a decision input.
|
|
149
149
|
|
|
150
|
-
Control-plane facts that drive reruns, proof, attempt state, and operator tasks are appended separately under `.tmp/<lane>-wave-launcher/control-plane/`. Legacy proof and retry files remain derived projections for compatibility, not
|
|
150
|
+
Control-plane facts that drive reruns, proof, attempt state, contradictions, facts, and operator tasks are appended separately under `.tmp/<lane>-wave-launcher/control-plane/`. Result envelopes live under `.tmp/<lane>-wave-launcher/results/`. Legacy proof and retry files remain derived projections for compatibility, not decision inputs.
|
|
151
151
|
|
|
152
|
-
Capability-targeted requests now become deterministic helper assignments. The
|
|
152
|
+
Capability-targeted requests now become deterministic helper assignments. The runtime resolves the assignee from explicit targets, `capabilityRouting.preferredAgents`, then least-busy matching capability owners, writes that assignment into `.tmp/<lane>-wave-launcher/assignments/`, mirrors the decision into coordination state, and keeps the wave blocked until the linked follow-up resolves.
|
|
153
153
|
|
|
154
154
|
Clarification flow is orchestrator-first:
|
|
155
155
|
|
|
@@ -159,9 +159,9 @@ Clarification flow is orchestrator-first:
|
|
|
159
159
|
4. Routed clarification follow-up requests remain blocking until they resolve.
|
|
160
160
|
5. Human escalations are written back into coordination state, the ledger, and trace artifacts.
|
|
161
161
|
|
|
162
|
-
During live runs, the
|
|
162
|
+
During live runs, the orchestrator now keeps an active supervision and state-refresh loop while agents are still running. It refreshes the derived coordination surfaces on cadence, surfaces overdue acknowledgements and stale clarification chains in dashboards and traces, and can reroute clarification follow-up requests inside the same attempt when the routed owner never acknowledges them.
|
|
163
163
|
|
|
164
|
-
If you opt into `--resident-orchestrator`, the launcher also starts a long-running non-owning orchestrator session for the wave. That session can inspect the same coordination artifacts and intervene through coordination records, but
|
|
164
|
+
If you opt into `--resident-orchestrator`, the launcher also starts a long-running non-owning orchestrator session for the wave. That session can inspect the same coordination artifacts and intervene through coordination records, but it does not override reducer, gate, or closure decisions.
|
|
165
165
|
|
|
166
166
|
Retry intent, operator tasks, attempt lifecycle, and proof injection are now first-class control-plane artifacts rather than manual file surgery:
|
|
167
167
|
|
|
@@ -229,7 +229,9 @@ pnpm exec wave changelog --since-installed
|
|
|
229
229
|
- docs queue: `.tmp/<lane>-wave-launcher/docs-queue/`
|
|
230
230
|
- trace bundles: `.tmp/<lane>-wave-launcher/traces/`
|
|
231
231
|
- control-plane events: `.tmp/<lane>-wave-launcher/control-plane/`
|
|
232
|
-
Canonical append-only JSONL log of operator tasks, rerun requests, proof bundles, attempt lifecycle, and human-input events. This is the
|
|
232
|
+
Canonical append-only JSONL log of operator tasks, rerun requests, proof bundles, attempt lifecycle, contradictions, facts, and human-input events. This is the canonical lifecycle state for `wave control`. Telemetry queue lives under `control-plane/telemetry/`.
|
|
233
|
+
- result envelopes: `.tmp/<lane>-wave-launcher/results/`
|
|
234
|
+
Attempt-scoped immutable structured result snapshots used by reducer, gate, retry, and replay flows.
|
|
233
235
|
- proof registries: `.tmp/<lane>-wave-launcher/proof/`
|
|
234
236
|
Projected from control-plane state for compatibility. Operator-registered authoritative proof bundles that feed integration, cont-QA, and replay.
|
|
235
237
|
- retry overrides: `.tmp/<lane>-wave-launcher/control/`
|
|
@@ -246,7 +248,7 @@ pnpm exec wave changelog --since-installed
|
|
|
246
248
|
|
|
247
249
|
Ad-hoc runs mirror the same state shape under `.tmp/<lane>-wave-launcher/adhoc/<run-id>/`, including dry-run previews at `.tmp/<lane>-wave-launcher/adhoc/<run-id>/dry-run/`. Their docs queue can still point at canonical shared-plan docs when the run reports a shared-plan delta.
|
|
248
250
|
|
|
249
|
-
The launcher entrypoint in `scripts/wave-orchestrator/launcher.mjs`
|
|
251
|
+
The launcher entrypoint in `scripts/wave-orchestrator/launcher.mjs` is being hardened toward a thin orchestrator over reducer, derived-state, retry, gate, closure, and supervision modules. The CLI and `traceVersion: 2` replay contract stay unchanged.
|
|
250
252
|
|
|
251
253
|
## Trace Contract
|
|
252
254
|
|
|
@@ -31,6 +31,10 @@ The runtime writes several different artifacts, but they do different jobs:
|
|
|
31
31
|
|
|
32
32
|
- canonical coordination log:
|
|
33
33
|
`.tmp/<lane>-wave-launcher/coordination/wave-<n>.jsonl`
|
|
34
|
+
- canonical control-plane log:
|
|
35
|
+
`.tmp/<lane>-wave-launcher/control-plane/wave-<n>.jsonl`
|
|
36
|
+
- result envelopes:
|
|
37
|
+
`.tmp/<lane>-wave-launcher/results/wave-<n>/attempt-<a>/<agent>.json`
|
|
34
38
|
- helper-assignment snapshot:
|
|
35
39
|
`.tmp/<lane>-wave-launcher/assignments/wave-<n>.json`
|
|
36
40
|
- dependency snapshot:
|
|
@@ -46,13 +50,13 @@ The runtime writes several different artifacts, but they do different jobs:
|
|
|
46
50
|
- run-state:
|
|
47
51
|
`.tmp/<lane>-wave-launcher/run-state.json`
|
|
48
52
|
|
|
49
|
-
The important rule is that the
|
|
53
|
+
The important rule is that decisions come from the canonical authority set: wave definitions, the coordination log, the control-plane log, and immutable result envelopes. The markdown board is a projection for humans. See [wave-orchestrator.md](../plans/wave-orchestrator.md).
|
|
50
54
|
|
|
51
55
|
Live waves now keep refreshing that derived state while agents are still running. Shared summaries, inboxes, dashboard coordination metrics, and clarification routing are not only recomputed at attempt boundaries; they are also refreshed during active wave execution so stale clarification and acknowledgement timing is machine-visible before the attempt ends.
|
|
52
56
|
|
|
53
57
|
## What Agents Should Use
|
|
54
58
|
|
|
55
|
-
Use the coordination log for
|
|
59
|
+
Use the coordination log for conversational or workflow state:
|
|
56
60
|
|
|
57
61
|
- `request`
|
|
58
62
|
Use this when you need another agent or capability owner to do work. Target it explicitly. This is the kind that becomes a helper assignment.
|
|
@@ -173,7 +177,7 @@ This is the important distinction:
|
|
|
173
177
|
- A1 may be done with A1's ownership
|
|
174
178
|
- the wave is not done
|
|
175
179
|
|
|
176
|
-
The
|
|
180
|
+
The reducer and gate engine will still see:
|
|
177
181
|
|
|
178
182
|
- an open helper assignment for the request
|
|
179
183
|
- an integration summary that is not yet ready for doc closure
|
|
@@ -197,7 +201,7 @@ That usually means:
|
|
|
197
201
|
|
|
198
202
|
### Step 5: Closure Can Continue
|
|
199
203
|
|
|
200
|
-
Only after that does the
|
|
204
|
+
Only after that does the closure engine allow the wave to move on to:
|
|
201
205
|
|
|
202
206
|
1. documentation closure
|
|
203
207
|
2. cont-QA closure
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This repo now includes a dedicated npmjs publish workflow at [publish-npm.yml](../../.github/workflows/publish-npm.yml).
|
|
4
4
|
|
|
5
|
-
The current `0.
|
|
5
|
+
The current `0.8.1` release procedure publishes through a repository Actions secret named `NPM_TOKEN`.
|
|
6
6
|
|
|
7
7
|
## What This Repo Already Does
|
|
8
8
|
|
|
@@ -47,6 +47,6 @@ If this repo later needs private npm dependencies during CI, consider a separate
|
|
|
47
47
|
1. Confirm [publish-npm.yml](../../.github/workflows/publish-npm.yml) is on the default branch.
|
|
48
48
|
2. Confirm `NPM_TOKEN` exists in the GitHub repo secrets.
|
|
49
49
|
3. Confirm the package version has been bumped and committed.
|
|
50
|
-
4. Push the release commit and release tag, for example `v0.
|
|
50
|
+
4. Push the release commit and release tag, for example `v0.8.1`.
|
|
51
51
|
5. Verify both `publish-npm.yml` and `publish-package.yml` start from the tag push.
|
|
52
52
|
6. Verify the npmjs publish completes successfully for the tagged source.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: "Sample Waves"
|
|
3
|
-
summary: "Showcase-first sample waves that demonstrate the current 0.
|
|
3
|
+
summary: "Showcase-first sample waves that demonstrate the current 0.8.1 Wave surface."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Sample Waves
|
|
7
7
|
|
|
8
|
-
This guide points to showcase-first sample waves that demonstrate the current `0.
|
|
8
|
+
This guide points to showcase-first sample waves that demonstrate the current `0.8.1` authored Wave surface.
|
|
9
9
|
|
|
10
10
|
The examples are intentionally denser than typical production waves. Their job is to teach the current authoring and runtime surface quickly, not to be the smallest possible launch-ready files.
|
|
11
11
|
|
|
@@ -15,7 +15,7 @@ The examples are intentionally denser than typical production waves. Their job i
|
|
|
15
15
|
Shows what a good `repo-landed` outcome looks like when one promoted component only closes honestly if desired-state records, reconcile-loop substrate, and cluster-view surfaces land together. It emphasizes maturity discipline, explicit deliverables, and shared-plan closure without drifting into `pilot-live` claims.
|
|
16
16
|
|
|
17
17
|
- [Full modern sample wave](../plans/examples/wave-example-live-proof.md)
|
|
18
|
-
Shows the combined `0.
|
|
18
|
+
Shows the combined `0.8.1` authored surface in one file: closure roles, `E0`, optional security review, delegated and pinned benchmark targets, richer executor config, `### Skills`, `### Capabilities`, `### Deliverables`, `### Exit contract`, `### Proof artifacts`, sticky retry, deploy environments, and proof-first live-wave structure.
|
|
19
19
|
|
|
20
20
|
## What These Examples Teach
|
|
21
21
|
|
|
@@ -38,7 +38,7 @@ The examples are intentionally denser than typical production waves. Their job i
|
|
|
38
38
|
|
|
39
39
|
## Feature Coverage Map
|
|
40
40
|
|
|
41
|
-
Together these samples cover the main surfaces added or hardened for `0.
|
|
41
|
+
Together these samples cover the main surfaces added or hardened for `0.8.1`:
|
|
42
42
|
|
|
43
43
|
- repo-landed maturity discipline and anti-overclaim framing
|
|
44
44
|
- explicit shared-plan closure for future-wave safety
|
package/docs/reference/skills.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Skills Reference
|
|
2
2
|
|
|
3
3
|
Skills are repo-owned reusable instruction bundles. Wave resolves them by config layer, then filters them through each bundle's activation metadata before projecting them into the selected runtime.
|
|
4
|
+
They shape runtime behavior, but they are not part of the canonical authority set.
|
|
4
5
|
|
|
5
6
|
## Canonical Bundle Layout
|
|
6
7
|
|
|
@@ -192,6 +193,8 @@ Runtime delivery:
|
|
|
192
193
|
- Local
|
|
193
194
|
The compact catalog stays prompt-only.
|
|
194
195
|
|
|
196
|
+
These runtime projections are guidance surfaces. They should stay aligned with the canonical authority model, but they are not replay inputs or decision state on their own.
|
|
197
|
+
|
|
195
198
|
## Generated Artifacts
|
|
196
199
|
|
|
197
200
|
Executor overlay directories can contain:
|
|
@@ -9,7 +9,7 @@ Wave Control is the telemetry and analysis plane for Wave runs.
|
|
|
9
9
|
|
|
10
10
|
The design rule is:
|
|
11
11
|
|
|
12
|
-
- local
|
|
12
|
+
- local canonical state stays authoritative
|
|
13
13
|
- remote reporting is best-effort
|
|
14
14
|
- dashboards and markdown remain projections over typed local state
|
|
15
15
|
|
|
@@ -27,6 +27,8 @@ Wave Control normalizes these entity types:
|
|
|
27
27
|
- `rerun_request`
|
|
28
28
|
- `human_input`
|
|
29
29
|
- `artifact`
|
|
30
|
+
- `contradiction`
|
|
31
|
+
- `fact`
|
|
30
32
|
- `benchmark_run`
|
|
31
33
|
- `benchmark_item`
|
|
32
34
|
- `verification`
|
|
@@ -76,7 +78,7 @@ For the explicit README-failure-case-to-signal map, see [proof-metrics.md](./pro
|
|
|
76
78
|
Signals to preserve:
|
|
77
79
|
|
|
78
80
|
- canonical-state fidelity:
|
|
79
|
-
`coordination_record`, `wave_run`, `attempt`, and `
|
|
81
|
+
`coordination_record`, `wave_run`, `attempt`, `artifact`, `contradiction`, and `fact` telemetry prove decisions came from canonical structured state, not only markdown boards or summaries
|
|
80
82
|
- evidence pooling:
|
|
81
83
|
integration and closure telemetry should cite the proof artifacts and evidence refs they relied on
|
|
82
84
|
- contradiction repair:
|
|
@@ -9,7 +9,7 @@ summary: "Assessment of whether the Wave orchestrator constructively addresses c
|
|
|
9
9
|
|
|
10
10
|
The Wave orchestrator addresses several coordination failure modes constructively in code, not just in prose. In particular, it has:
|
|
11
11
|
|
|
12
|
-
- a canonical machine-readable coordination
|
|
12
|
+
- a canonical authority set with machine-readable coordination and control-plane state
|
|
13
13
|
- compiled shared summaries plus per-agent inboxes
|
|
14
14
|
- explicit clarification, helper-assignment, dependency, integration, documentation, and cont-QA barriers
|
|
15
15
|
- structured proof and verdict validation
|
|
@@ -24,7 +24,7 @@ The main weakness is empirical, not architectural. The repo now carries coordina
|
|
|
24
24
|
The research cited in this repo keeps returning to a fairly stable set of failure modes. In Wave language, the common ones are:
|
|
25
25
|
|
|
26
26
|
- `Cosmetic board, no canonical state`
|
|
27
|
-
Agents appear coordinated because they share a board or chat, but there is no machine-trustable
|
|
27
|
+
Agents appear coordinated because they share a board or chat, but there is no machine-trustable authority set underneath. Wave responds with canonical state and treats the board as a projection.
|
|
28
28
|
- `Hidden evidence never gets pooled`
|
|
29
29
|
One agent has the decision-changing fact, but it never reaches the shared state before closure. Wave responds with shared summaries, per-agent inboxes, and integration gating, but this still needs stronger empirical validation.
|
|
30
30
|
- `Communication without global-state reconstruction`
|
|
@@ -82,7 +82,7 @@ For this repo, the key question is whether the design relies on self-organizing
|
|
|
82
82
|
|
|
83
83
|
#### 1. It uses a real canonical shared state, not a cosmetic board
|
|
84
84
|
|
|
85
|
-
The strongest blackboard-like mechanism is the canonical
|
|
85
|
+
The strongest blackboard-like mechanism is the canonical authority set: the coordination log, the control-plane event log, immutable result envelopes, and materialized state in [scripts/wave-orchestrator/coordination-store.mjs](../../scripts/wave-orchestrator/coordination-store.mjs). The markdown board is explicitly a projection for humans, not a decision input, as stated in [docs/plans/wave-orchestrator.md](../plans/wave-orchestrator.md).
|
|
86
86
|
|
|
87
87
|
That state is then compiled into:
|
|
88
88
|
|
|
@@ -185,7 +185,7 @@ Assessment against the papers:
|
|
|
185
185
|
|
|
186
186
|
The docs are not purely aspirational here. The main claims in [docs/plans/current-state.md](../plans/current-state.md) and [docs/plans/wave-orchestrator.md](../plans/wave-orchestrator.md) are broadly backed by the code:
|
|
187
187
|
|
|
188
|
-
- canonical
|
|
188
|
+
- canonical authority-set state plus generated projections
|
|
189
189
|
- compiled shared summaries and per-agent inboxes
|
|
190
190
|
- orchestrator-first clarification triage
|
|
191
191
|
- blocking helper assignments and cross-lane dependencies
|
package/docs/roadmap.md
CHANGED
|
@@ -182,7 +182,7 @@ Opt-in:
|
|
|
182
182
|
|
|
183
183
|
The runtime already has strong coordination primitives, but the roadmap should still push these areas:
|
|
184
184
|
|
|
185
|
-
- keep the canonical
|
|
185
|
+
- keep the canonical authority set explicit and the markdown board as a rendered view
|
|
186
186
|
- keep compiled per-agent inboxes and shared summaries central to prompt construction
|
|
187
187
|
- strengthen the integration steward output as the single closure-ready synthesis artifact
|
|
188
188
|
- add `wave lint` for ownership, component promotion, runtime mix, deploy environment, and closure completeness
|
package/package.json
CHANGED
package/releases/manifest.json
CHANGED
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"packageName": "@chllming/wave-orchestration",
|
|
4
4
|
"releases": [
|
|
5
|
+
{
|
|
6
|
+
"version": "0.8.1",
|
|
7
|
+
"date": "2026-03-24",
|
|
8
|
+
"summary": "Helper-assignment policy-closure hardening, multi-target assignment-safety repair, and 0.8.1 release-surface alignment.",
|
|
9
|
+
"features": [
|
|
10
|
+
"`resolved-by-policy` follow-up now closes single-target helper assignments authoritatively without forcing the original request record itself to be rewritten.",
|
|
11
|
+
"Manual `wave coord post --kind resolved-by-policy` now defaults to `status=resolved`, so operator-entered policy closures stop behaving like fresh open coordination records.",
|
|
12
|
+
"Multi-target helper requests now require assignment-specific policy evidence before closure, which prevents a request-level policy note from accidentally closing sibling assignments that were not actually completed.",
|
|
13
|
+
"Regression coverage now exercises default `resolved-by-policy` status handling and the multi-target helper-assignment over-closure edge case directly.",
|
|
14
|
+
"Shipped package metadata, README, migration guidance, sample-wave docs, and npm publishing instructions now point at the `0.8.1` release surface."
|
|
15
|
+
],
|
|
16
|
+
"manualSteps": [
|
|
17
|
+
"Run `pnpm exec wave doctor` and `pnpm exec wave launch --lane main --dry-run --no-dashboard` after upgrading so the repo validates against the `0.8.1` runtime and helper-assignment closure contract.",
|
|
18
|
+
"If an adopted repo fails `wave doctor` after the upgrade, sync the repo-owned planner starter surface (`docs/agents/wave-planner-role.md`, `skills/role-planner/`, `docs/context7/planner-agent/`, `docs/reference/wave-planning-lessons.md`, and the `planner-agentic` bundle entry) before relying on planner-aware validation.",
|
|
19
|
+
"If a repo carries custom operator docs for `wave coord post --kind resolved-by-policy`, update that guidance so policy-closure examples either omit `--status` or use `--status resolved` explicitly.",
|
|
20
|
+
"If an adopted repo copied the starter architecture docs or skill bundles, sync the updated role prompts, `skills/wave-core/`, runtime skills, and closure-role skills so local guidance matches the `0.8.1` authority model and helper-assignment behavior.",
|
|
21
|
+
"Review `docs/plans/architecture-hardening-migration.md` before continuing reducer-authoritative cutover work in repos that extend the shipped starter surface."
|
|
22
|
+
],
|
|
23
|
+
"breaking": false
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"version": "0.8.0",
|
|
27
|
+
"date": "2026-03-24",
|
|
28
|
+
"summary": "Architecture hardening foundations, envelope-first closure wiring, docs and skill alignment, and 0.8.0 release-surface alignment.",
|
|
29
|
+
"features": [
|
|
30
|
+
"Reducer and task replay hardening now keeps coordination-derived task identity deterministic and strengthens authoritative replay of live wave state.",
|
|
31
|
+
"Gate evaluation, contradiction or fact schema wiring, and resume planning are now aligned around control-plane state plus typed result-envelope reads instead of legacy summary-only behavior.",
|
|
32
|
+
"Live launcher evaluation now computes reducer snapshots during real runs, so the shadow or migration path exists in production execution as well as tests.",
|
|
33
|
+
"A dedicated architecture hardening migration plan now ships, and the active README, guides, role prompts, and starter skills now describe the canonical authority set, phase-engine model, and thin-launcher direction consistently.",
|
|
34
|
+
"Regression coverage now guards the docs and skill surface against stale launcher-truth wording while preserving shared `0.7.3` parity behavior in the overlapping release-era suites."
|
|
35
|
+
],
|
|
36
|
+
"manualSteps": [
|
|
37
|
+
"Run `pnpm exec wave doctor` and `pnpm exec wave launch --lane main --dry-run --no-dashboard` after upgrading so the repo validates against the `0.8.0` runtime and starter-surface contract.",
|
|
38
|
+
"If an adopted repo fails `wave doctor` after the upgrade, sync the repo-owned planner starter surface (`docs/agents/wave-planner-role.md`, `skills/role-planner/`, `docs/context7/planner-agent/`, `docs/reference/wave-planning-lessons.md`, and the `planner-agentic` bundle entry) before relying on planner-aware validation.",
|
|
39
|
+
"If an adopted repo copied the starter architecture docs or skill bundles, sync the updated role prompts, `skills/wave-core/`, runtime skills, and closure-role skills so local guidance matches the `0.8.0` authority model.",
|
|
40
|
+
"Review `docs/plans/architecture-hardening-migration.md` before continuing the reducer-authoritative cutover work in repos that extend the shipped starter surface."
|
|
41
|
+
],
|
|
42
|
+
"breaking": false
|
|
43
|
+
},
|
|
5
44
|
{
|
|
6
45
|
"version": "0.7.3",
|
|
7
46
|
"date": "2026-03-23",
|