@chllming/wave-orchestration 0.6.0 → 0.6.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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.6.1 - 2026-03-22
6
+
7
+ - Published the post-merge `main` source as `0.6.1` so the default branch, tagged source, and package docs all agree on the current release.
8
+ - Updated shipped package docs and release metadata to advertise `0.6.1` as the current release surface, including the runtime-config reference that still said `0.5.x` during the `0.6.0` cut.
9
+ - No additional runtime behavior changes beyond the `0.6.0` workspace-scoped tmux isolation fix; this patch release aligns the published package with the merged source tree.
10
+
5
11
  ## 0.6.0 - 2026-03-22
6
12
 
7
13
  ### Breaking Changes
package/README.md CHANGED
@@ -32,17 +32,17 @@ Representative rolling message board output from a real wave run:
32
32
 
33
33
  Current release:
34
34
 
35
- - `@chllming/wave-orchestration@0.6.0`
36
- - Release tag: [`v0.6.0`](https://github.com/chllming/wave-orchestration/releases/tag/v0.6.0)
35
+ - `@chllming/wave-orchestration@0.6.1`
36
+ - Release tag: [`v0.6.1`](https://github.com/chllming/wave-orchestration/releases/tag/v0.6.1)
37
37
  - Public install path: npmjs
38
38
  - Authenticated fallback: GitHub Packages
39
39
 
40
- Highlights in `0.6.0`:
40
+ Highlights in `0.6.1`:
41
41
 
42
42
  - `cont-EVAL` (`E0`) is now a first-class optional eval stage before integration, separate from final `cont-QA` closure.
43
43
  - Optional security review now has a dedicated role, report path, and `[wave-security]` closure marker.
44
44
  - `wave adhoc plan|run|show|promote` now supports transient operator requests on the same launcher substrate.
45
- - Starter docs and skills now cover the current `0.6.0` closure, benchmark, security, and provider surfaces.
45
+ - Starter docs and skills now cover the current `0.6.1` closure, benchmark, security, and provider surfaces.
46
46
 
47
47
  Requirements:
48
48
 
@@ -18,14 +18,14 @@ For a full authored wave example that uses these patterns, see [docs/reference/s
18
18
 
19
19
  ## Migrating From Legacy Evaluator Waves
20
20
 
21
- If your `0.5.4`-era repo still talks about a single `evaluator` role, split that surface before adopting `0.6.0`:
21
+ If your `0.5.4`-era repo still talks about a single `evaluator` role, split that surface before adopting `0.6.1`:
22
22
 
23
23
  - keep `A0` as `cont-QA` for the final closure verdict and `[wave-gate]`
24
24
  - add `E0` only when the wave needs benchmark-driven tuning or service-output evaluation
25
25
  - treat `cont-EVAL` as report-only unless the wave explicitly gives `E0` owned implementation files
26
26
  - keep `## Eval targets` at the wave level so `cont-EVAL` has an exact contract to satisfy
27
27
 
28
- `cont-EVAL` is not a rename of `cont-QA`. In `0.6.0`, `E0` proves the eval contract before integration, while `A0` still owns the final release verdict after documentation closure.
28
+ `cont-EVAL` is not a rename of `cont-QA`. In `0.6.1`, `E0` proves the eval contract before integration, while `A0` still owns the final release verdict after documentation closure.
29
29
 
30
30
  ## When To Use Delegated Vs Pinned Targets
31
31
 
@@ -1,6 +1,6 @@
1
1
  # Current State
2
2
 
3
- - The starter workspace in this source repo reflects the `0.6.0` package release surface.
3
+ - The starter workspace in this source repo reflects the `0.6.1` 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
  - This source repo is itself kept as an adopted Wave workspace, so `node scripts/wave.mjs doctor --json` should pass from the repo root.
@@ -2,7 +2,7 @@
2
2
 
3
3
  This is a showcase-first sample wave.
4
4
 
5
- Use it as the single reference example for the current `0.6.0` Wave surface.
5
+ Use it as the single reference example for the current `0.6.1` Wave surface.
6
6
 
7
7
  It intentionally combines more sections than a normal production wave so one file can demonstrate:
8
8
 
@@ -22,9 +22,9 @@ GitHub Packages remains available as an authenticated fallback path, and maintai
22
22
  - 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
23
  - The current runtime expects the post-roadmap model: typed coordination, compiled inboxes, `A8` integration, staged closure, orchestrator-first clarification, and operational runtime policy.
24
24
 
25
- ## Upgrading From 0.5.4 To 0.6.0
25
+ ## Upgrading From 0.5.4 To 0.6.1
26
26
 
27
- Read `CHANGELOG.md` first, then treat the rest of this page as the manual repo-owned migration checklist for the `0.6.0` release. `wave upgrade` will update package-owned runtime code only; it will not rewrite the docs, prompts, config, or wave files that your repo already owns.
27
+ Read `CHANGELOG.md` first, then treat the rest of this page as the manual repo-owned migration checklist for the `0.6.1` release. `wave upgrade` will update package-owned runtime code only; it will not rewrite the docs, prompts, config, or wave files that your repo already owns.
28
28
 
29
29
  ### Required Repo Changes
30
30
 
@@ -32,7 +32,7 @@ Read `CHANGELOG.md` first, then treat the rest of this page as the manual repo-o
32
32
  2. Keep `A0` as the final closure owner that emits both the final verdict and `[wave-gate]`.
33
33
  3. Add `E0` only when the wave needs benchmark-driven tuning or service-output evaluation.
34
34
  4. Add wave-level `## Eval targets` whenever `cont-EVAL` is present.
35
- 5. Update any starter docs or examples that still describe the pre-`0.6.0` evaluator model.
35
+ 5. Update any starter docs or examples that still describe the pre-`0.6.1` evaluator model.
36
36
 
37
37
  In practice that means checking:
38
38
 
@@ -47,7 +47,7 @@ In practice that means checking:
47
47
 
48
48
  ### Closure And Marker Changes
49
49
 
50
- Live `0.6.0` closure is stricter than `0.5.4`.
50
+ Live `0.6.1` closure is stricter than `0.5.4`.
51
51
 
52
52
  - `cont-EVAL` must leave a report plus a final `[wave-eval]` marker whose `target_ids` exactly matches the wave contract and whose `benchmark_ids` stays within the benchmark catalog.
53
53
  - Security review, when present, must leave a report plus a final `[wave-security]` marker.
@@ -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.6.0` release procedure publishes through a repository Actions secret named `NPM_TOKEN`.
5
+ The current `0.6.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.6.0`.
50
+ 4. Push the release commit and release tag, for example `v0.6.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,6 +1,6 @@
1
1
  # Runtime Configuration Reference
2
2
 
3
- This directory is the canonical reference for executor configuration in Wave `0.5.x`.
3
+ This directory is the canonical reference for executor configuration in Wave `0.6.1`.
4
4
 
5
5
  Use it when you need the full supported surface for:
6
6
 
@@ -1,18 +1,18 @@
1
1
  ---
2
2
  title: "Sample Waves"
3
- summary: "A showcase-first sample wave that demonstrates the current 0.6.0 Wave surface."
3
+ summary: "A showcase-first sample wave that demonstrates the current 0.6.1 Wave surface."
4
4
  ---
5
5
 
6
6
  # Sample Waves
7
7
 
8
- This guide points to one showcase-first sample wave that demonstrates the current `0.6.0` authored Wave surface.
8
+ This guide points to one showcase-first sample wave that demonstrates the current `0.6.1` authored Wave surface.
9
9
 
10
10
  The example is intentionally denser than a typical production wave. Its job is to teach the current authoring and runtime surface quickly, not to be the smallest possible launch-ready file.
11
11
 
12
12
  ## Canonical Example
13
13
 
14
14
  - [Full modern sample wave](../plans/examples/wave-example-live-proof.md)
15
- Shows the combined `0.6.0` 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.
15
+ Shows the combined `0.6.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.
16
16
 
17
17
  ## What This Example Teaches
18
18
 
@@ -32,7 +32,7 @@ The example is intentionally denser than a typical production wave. Its job is t
32
32
 
33
33
  ## Feature Coverage Map
34
34
 
35
- This sample covers the main surfaces added or hardened for `0.6.0`:
35
+ This sample covers the main surfaces added or hardened for `0.6.1`:
36
36
 
37
37
  - planner-era authored wave structure
38
38
  - cross-runtime `### Skills`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chllming/wave-orchestration",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "license": "MIT",
5
5
  "description": "Generic wave-based multi-agent orchestration for repository work.",
6
6
  "repository": {
@@ -2,6 +2,21 @@
2
2
  "schemaVersion": 1,
3
3
  "packageName": "@chllming/wave-orchestration",
4
4
  "releases": [
5
+ {
6
+ "version": "0.6.1",
7
+ "date": "2026-03-22",
8
+ "summary": "Patch release that aligns the published package with merged main and refreshed 0.6.1 release docs.",
9
+ "features": [
10
+ "The package version and release metadata now advertise `0.6.1` consistently across `package.json`, the shipped README, the changelog, and the release manifest.",
11
+ "Current-surface docs such as runtime configuration, sample waves, eval guidance, migration notes, and npm publishing instructions now point at the `0.6.1` release instead of the earlier `0.6.0` tag.",
12
+ "This patch release carries forward the `0.6.0` runtime behavior, including the workspace-scoped tmux resource isolation fix that unblocked publish-time CI."
13
+ ],
14
+ "manualSteps": [
15
+ "After upgrading, rerun `pnpm exec wave doctor` and `pnpm exec wave launch --lane main --dry-run --no-dashboard` if you want to verify your repo against the same `0.6.1` package surface documented in this release.",
16
+ "If you pinned package docs or release references to `0.6.0`, update them to `0.6.1` so your operator guidance matches the published package tag."
17
+ ],
18
+ "breaking": false
19
+ },
5
20
  {
6
21
  "version": "0.6.0",
7
22
  "date": "2026-03-22",