@chllming/wave-orchestration 0.7.1 → 0.7.3

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.
Files changed (32) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +8 -8
  3. package/docs/plans/component-cutover-matrix.json +50 -3
  4. package/docs/plans/current-state.md +1 -1
  5. package/docs/plans/end-state-architecture.md +927 -0
  6. package/docs/plans/examples/wave-example-live-proof.md +1 -1
  7. package/docs/plans/migration.md +2 -2
  8. package/docs/plans/waves/wave-1.md +376 -0
  9. package/docs/plans/waves/wave-2.md +292 -0
  10. package/docs/plans/waves/wave-3.md +342 -0
  11. package/docs/plans/waves/wave-4.md +391 -0
  12. package/docs/plans/waves/wave-5.md +382 -0
  13. package/docs/plans/waves/wave-6.md +321 -0
  14. package/docs/reference/npmjs-trusted-publishing.md +2 -2
  15. package/docs/reference/sample-waves.md +4 -4
  16. package/package.json +1 -1
  17. package/releases/manifest.json +36 -0
  18. package/scripts/wave-orchestrator/agent-state.mjs +462 -35
  19. package/scripts/wave-orchestrator/artifact-schemas.mjs +81 -0
  20. package/scripts/wave-orchestrator/control-cli.mjs +7 -1
  21. package/scripts/wave-orchestrator/coordination.mjs +11 -10
  22. package/scripts/wave-orchestrator/human-input-workflow.mjs +289 -0
  23. package/scripts/wave-orchestrator/install.mjs +22 -0
  24. package/scripts/wave-orchestrator/launcher-derived-state.mjs +915 -0
  25. package/scripts/wave-orchestrator/launcher-gates.mjs +1061 -0
  26. package/scripts/wave-orchestrator/launcher-retry.mjs +873 -0
  27. package/scripts/wave-orchestrator/launcher-supervisor.mjs +704 -0
  28. package/scripts/wave-orchestrator/launcher.mjs +153 -2922
  29. package/scripts/wave-orchestrator/task-entity.mjs +557 -0
  30. package/scripts/wave-orchestrator/wave-files.mjs +11 -2
  31. package/scripts/wave-orchestrator/wave-state-reducer.mjs +566 -0
  32. package/wave.config.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,36 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.7.3 - 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.3` as the current release surface.
10
+
11
+ ### Fixed And Hardened
12
+
13
+ - Implementation summary parsing now falls back to normal line-by-line structured-marker extraction when a log tail ends inside an unmatched fenced block, so malformed prompt or transcript tails cannot hide later final implementation markers.
14
+ - Proof-centric summary repair now refreshes stale `.summary.json` files when required proof/doc/component fields are missing, even if a prior run already wrote a `structuredSignalDiagnostics` object with incorrect zero-count data.
15
+
16
+ ### Testing And Validation
17
+
18
+ - Added regression coverage for unmatched end-of-tail fenced logs and stale diagnostics-backed implementation summaries.
19
+
20
+ ## 0.7.2 - 2026-03-23
21
+
22
+ ### Changed
23
+
24
+ - 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.
25
+ - 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.
26
+
27
+ ### Fixed And Hardened
28
+
29
+ - 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.
30
+ - Validation now distinguishes missing markers from rejected marker syntax with `invalid-wave-proof-format`, `invalid-doc-delta-format`, and `invalid-wave-component-format`.
31
+ - 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.
32
+ - `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.
33
+ - Codex launch previews now expose `effectiveTurnLimit` and `effectiveTurnLimitSource`, making unresolved external turn ceilings machine-readable before the runtime later reports an observed limit.
34
+
5
35
  ## 0.7.1 - 2026-03-23
6
36
 
7
37
  ### 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.1`
83
- - Release tag: [`v0.7.1`](https://github.com/chllming/agent-wave-orchestrator/releases/tag/v0.7.1)
82
+ - `@chllming/wave-orchestration@0.7.3`
83
+ - Release tag: [`v0.7.3`](https://github.com/chllming/agent-wave-orchestrator/releases/tag/v0.7.3)
84
84
  - Public install path: npmjs
85
85
  - Authenticated fallback: GitHub Packages
86
86
 
87
- Highlights in `0.7.1`:
87
+ Highlights in `0.7.3`:
88
88
 
89
- - Fresh live launches now clear stale auto-generated relaunch plans by default, so explicit wave restarts seed a clean implementation fan-out unless `--resume-control-state` is passed.
90
- - `wave control status` now treats the active attempt as the authoritative live fan-out instead of replaying stale rerun intent or unrelated closure blockers.
91
- - `reconcile-status` now preserves previously authoritative completed waves as `completed_with_drift` when the only mismatch is historical prompt-hash drift.
92
- - Live `launch-preview.json` artifacts now exist for real runs as well as dry-runs, and Codex summaries record observed turn ceilings when the runtime reveals them.
93
- - Upgrade and operator docs now cover stable dashboard attach, adopted-repo planner corpus migration, and the full `0.7.1` package surface end to end.
89
+ - Malformed end-of-tail fenced blocks no longer hide later final `[wave-proof]`, `[wave-doc-delta]`, and `[wave-component]` markers from the structured-signal collector.
90
+ - Legacy proof-centric summaries now rebuild from source logs when required proof/doc/component fields are missing, even if a stale `structuredSignalDiagnostics` object already exists.
91
+ - Final implementation marker diagnostics still distinguish truly missing markers from malformed marker syntax, so proof-centric failures stay actionable instead of collapsing into generic missing-marker noise.
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.3` 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.1` package release surface.
3
+ - The starter workspace in this source repo reflects the `0.7.3` 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.