@chllming/wave-orchestration 0.7.1 → 0.7.2
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 +15 -0
- package/README.md +8 -8
- package/docs/plans/component-cutover-matrix.json +50 -3
- package/docs/plans/current-state.md +1 -1
- package/docs/plans/end-state-architecture.md +927 -0
- package/docs/plans/examples/wave-example-live-proof.md +1 -1
- package/docs/plans/migration.md +2 -2
- package/docs/plans/waves/wave-1.md +376 -0
- package/docs/plans/waves/wave-2.md +292 -0
- package/docs/plans/waves/wave-3.md +342 -0
- package/docs/plans/waves/wave-4.md +391 -0
- package/docs/plans/waves/wave-5.md +382 -0
- package/docs/plans/waves/wave-6.md +321 -0
- package/docs/reference/npmjs-trusted-publishing.md +2 -2
- package/docs/reference/sample-waves.md +4 -4
- package/package.json +1 -1
- package/releases/manifest.json +19 -0
- package/scripts/wave-orchestrator/agent-state.mjs +447 -33
- package/scripts/wave-orchestrator/artifact-schemas.mjs +81 -0
- package/scripts/wave-orchestrator/control-cli.mjs +7 -1
- package/scripts/wave-orchestrator/coordination.mjs +11 -10
- package/scripts/wave-orchestrator/human-input-workflow.mjs +289 -0
- package/scripts/wave-orchestrator/install.mjs +22 -0
- package/scripts/wave-orchestrator/launcher-derived-state.mjs +915 -0
- package/scripts/wave-orchestrator/launcher-gates.mjs +1061 -0
- package/scripts/wave-orchestrator/launcher-retry.mjs +873 -0
- package/scripts/wave-orchestrator/launcher-supervisor.mjs +704 -0
- package/scripts/wave-orchestrator/launcher.mjs +153 -2922
- package/scripts/wave-orchestrator/task-entity.mjs +557 -0
- package/scripts/wave-orchestrator/wave-files.mjs +11 -2
- package/scripts/wave-orchestrator/wave-state-reducer.mjs +566 -0
- package/wave.config.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.7.2 - 2026-03-23
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Updated the shipped package metadata, release manifest, README, migration guide, sample-wave docs, and npm publishing runbook to advertise `0.7.2` as the current release surface.
|
|
10
|
+
- Implementation prompts now require incomplete work to stay inside the final proof, doc-delta, and component markers with `state=gap`, and route unresolved issues through `wave coord post` instead of trailing `[wave-gap]` markers.
|
|
11
|
+
|
|
12
|
+
### Fixed And Hardened
|
|
13
|
+
|
|
14
|
+
- Implementation summary parsing now accepts final `[wave-proof]`, `[wave-doc-delta]`, and `[wave-component]` markers when the final structured block is emitted as Markdown list items.
|
|
15
|
+
- Validation now distinguishes missing markers from rejected marker syntax with `invalid-wave-proof-format`, `invalid-doc-delta-format`, and `invalid-wave-component-format`.
|
|
16
|
+
- Proof-centric summary repair now refreshes legacy `.summary.json` files from source logs only when the stored summary is actually missing required proof/doc/component data, preserving valid historical summaries.
|
|
17
|
+
- `reconcile-status` now backfills missing `deliverables` and `proofArtifacts` arrays in older agent summaries before validation, so previously authoritative completed waves can survive summary-schema drift without weakening live closure.
|
|
18
|
+
- Codex launch previews now expose `effectiveTurnLimit` and `effectiveTurnLimitSource`, making unresolved external turn ceilings machine-readable before the runtime later reports an observed limit.
|
|
19
|
+
|
|
5
20
|
## 0.7.1 - 2026-03-23
|
|
6
21
|
|
|
7
22
|
### Changed
|
package/README.md
CHANGED
|
@@ -79,18 +79,18 @@ Wave is built to mitigate those failures with canonical shared state, generated
|
|
|
79
79
|
|
|
80
80
|
Current release:
|
|
81
81
|
|
|
82
|
-
- `@chllming/wave-orchestration@0.7.
|
|
83
|
-
- Release tag: [`v0.7.
|
|
82
|
+
- `@chllming/wave-orchestration@0.7.2`
|
|
83
|
+
- Release tag: [`v0.7.2`](https://github.com/chllming/agent-wave-orchestrator/releases/tag/v0.7.2)
|
|
84
84
|
- Public install path: npmjs
|
|
85
85
|
- Authenticated fallback: GitHub Packages
|
|
86
86
|
|
|
87
|
-
Highlights in `0.7.
|
|
87
|
+
Highlights in `0.7.2`:
|
|
88
88
|
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
- Upgrade and operator docs now cover
|
|
89
|
+
- Final implementation markers now parse correctly when agents emit the structured proof/doc/component block as Markdown list items.
|
|
90
|
+
- Runtime validation now distinguishes truly missing markers from malformed marker syntax, so proof-centric failures surface actionable parse errors.
|
|
91
|
+
- Legacy proof-centric summaries repair themselves from source logs only when the stored summary is actually missing required closure markers.
|
|
92
|
+
- Implementation prompts now keep incomplete work inside the required final markers with `state=gap` and route unresolved issues through `wave coord post`.
|
|
93
|
+
- Upgrade and operator docs now cover the full `0.7.2` package surface end to end.
|
|
94
94
|
|
|
95
95
|
Requirements:
|
|
96
96
|
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
{
|
|
24
24
|
"wave": 0,
|
|
25
25
|
"target": "repo-landed"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"wave": 1,
|
|
29
|
+
"target": "baseline-proved"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"wave": 6,
|
|
33
|
+
"target": "pilot-live"
|
|
26
34
|
}
|
|
27
35
|
],
|
|
28
36
|
"proofSurfaces": [
|
|
@@ -38,7 +46,16 @@
|
|
|
38
46
|
"docs/plans/context7-wave-orchestrator.md"
|
|
39
47
|
],
|
|
40
48
|
"currentLevel": "repo-landed",
|
|
41
|
-
"promotions": [
|
|
49
|
+
"promotions": [
|
|
50
|
+
{
|
|
51
|
+
"wave": 3,
|
|
52
|
+
"target": "baseline-proved"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"wave": 6,
|
|
56
|
+
"target": "pilot-live"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
42
59
|
"proofSurfaces": [
|
|
43
60
|
"executor launch specs",
|
|
44
61
|
"runtime overlays",
|
|
@@ -53,7 +70,20 @@
|
|
|
53
70
|
"docs/agents/wave-documentation-role.md"
|
|
54
71
|
],
|
|
55
72
|
"currentLevel": "repo-landed",
|
|
56
|
-
"promotions": [
|
|
73
|
+
"promotions": [
|
|
74
|
+
{
|
|
75
|
+
"wave": 1,
|
|
76
|
+
"target": "baseline-proved"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"wave": 3,
|
|
80
|
+
"target": "baseline-proved"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"wave": 6,
|
|
84
|
+
"target": "pilot-live"
|
|
85
|
+
}
|
|
86
|
+
],
|
|
57
87
|
"proofSurfaces": [
|
|
58
88
|
"structured gate markers",
|
|
59
89
|
"closure sweep",
|
|
@@ -81,7 +111,24 @@
|
|
|
81
111
|
"docs/plans/current-state.md"
|
|
82
112
|
],
|
|
83
113
|
"currentLevel": "repo-landed",
|
|
84
|
-
"promotions": [
|
|
114
|
+
"promotions": [
|
|
115
|
+
{
|
|
116
|
+
"wave": 1,
|
|
117
|
+
"target": "repo-landed"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"wave": 2,
|
|
121
|
+
"target": "baseline-proved"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"wave": 4,
|
|
125
|
+
"target": "pilot-live"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"wave": 5,
|
|
129
|
+
"target": "qa-proved"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
85
132
|
"proofSurfaces": [
|
|
86
133
|
"status summaries",
|
|
87
134
|
"dashboards",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Current State
|
|
2
2
|
|
|
3
|
-
- The starter workspace in this source repo reflects the `0.7.
|
|
3
|
+
- The starter workspace in this source repo reflects the `0.7.2` package release surface.
|
|
4
4
|
- The repository contains the published `@chllming/wave-orchestration` package plus the starter scaffold used by `wave init`.
|
|
5
5
|
- The runtime is package-first and non-destructive for adopting repos: `wave init --adopt-existing` records existing repo-owned plans, waves, prompts, and config without overwriting them, and `wave upgrade` writes only `.wave/install-state.json` plus `.wave/upgrade-history/`.
|
|
6
6
|
- Runtime launch entrypoints now perform a best-effort npmjs version check, cache the result under `.wave/package-update-check.json`, and point operators at `pnpm exec wave self-update` when a newer published package exists.
|