codex-workflow-v2 2.0.0-beta.7 → 2.0.0-beta.8
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/README.md +1 -1
- package/dist/src/alpha6/remediation.js +18 -6
- package/dist/src/alpha6/remediation.js.map +1 -1
- package/dist/src/alpha6/review.d.ts +1 -0
- package/dist/src/alpha6/review.js +8 -0
- package/dist/src/alpha6/review.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/workflow.js +7 -2
- package/dist/src/workflow.js.map +1 -1
- package/docs/release.md +1 -1
- package/docs/stable-release-defect-register.md +25 -2
- package/package.json +1 -1
package/docs/release.md
CHANGED
|
@@ -22,7 +22,7 @@ The downstream smoke packs the actual tarball, installs it into an empty tempora
|
|
|
22
22
|
runs the packaged CLI handshake, and proves installation created none of `.codex`, `.tasks`,
|
|
23
23
|
`.increments`, or `.memory-bank` in that project.
|
|
24
24
|
|
|
25
|
-
For beta.
|
|
25
|
+
For beta.8, the release gate also relies on `npm run release:check` to fail if:
|
|
26
26
|
|
|
27
27
|
- canonical entity schema 2 shapes drift;
|
|
28
28
|
- protocol 2 is not the active public contract, or intact protocol-1 adoption evidence stops being readable through the bounded compatibility window;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Stable Release Defect Register
|
|
2
2
|
|
|
3
3
|
This register captures defects and operational gaps found while running the
|
|
4
|
-
alpha.7 through beta.
|
|
4
|
+
alpha.7 through beta.8 lines against the `signal_v4` Milestone 3 lifecycle. It is intentionally
|
|
5
5
|
separate from implementation briefs: an item stays here until it is either
|
|
6
6
|
verified fixed by a regression test or explicitly classified as downstream-only.
|
|
7
7
|
|
|
8
|
-
Last reviewed: 2026-08-
|
|
8
|
+
Last reviewed: 2026-08-22.
|
|
9
9
|
|
|
10
10
|
## Severity and status
|
|
11
11
|
|
|
@@ -16,6 +16,29 @@ Last reviewed: 2026-08-21.
|
|
|
16
16
|
|
|
17
17
|
## Post-beta.5 open findings
|
|
18
18
|
|
|
19
|
+
### WF-STABLE-028 — passed guarded Step strands later final Task-review remediation
|
|
20
|
+
|
|
21
|
+
- Status: Closed-regression in beta.8
|
|
22
|
+
- Severity: High
|
|
23
|
+
- Area: guarded remediation breaker, final Task review, navigation/mutation agreement
|
|
24
|
+
- Evidence: Signal Task `TASK-01M0HVK4YDJ3W9X0N72TYNV8WK` reached a verified passing third
|
|
25
|
+
sealed Step review after two ordinary failures and one independently authorized `continue-fix`.
|
|
26
|
+
A later final Task review found two new defects and `next` correctly advertised `task plan-set`,
|
|
27
|
+
but the mutation rejected the Plan because the already-consumed `continue-fix` event still
|
|
28
|
+
matched the current Plan. The suggested current-Plan retry was impossible because the guarded
|
|
29
|
+
Step was already `completed`.
|
|
30
|
+
- Risk: a valid append-only review history can leave a nonterminal Task with no executable
|
|
31
|
+
transition even though its state is clean and navigation advertises a corrective Plan update.
|
|
32
|
+
- Fix: a verified passing Step-review event now closes the preceding breaker cycle for that Step.
|
|
33
|
+
Resolved `continue-fix`, remediation, and decision events remain immutable evidence but do not
|
|
34
|
+
gate a later final Task-review remediation cycle. A changed guarded Step starts a fresh bounded
|
|
35
|
+
cycle under the replacement Plan Risk Audit; unresolved and failed cycles retain the existing
|
|
36
|
+
hard-stop behavior.
|
|
37
|
+
- Regression: `tests/alpha7-remediation-replay.test.ts` reproduces the full sequence through two
|
|
38
|
+
failed sealed reviews, `continue-fix`, a verified pass, failed final Task review, atomic Plan and
|
|
39
|
+
Risk Audit replacement, execution authorization, and successful `task run` of the reopened
|
|
40
|
+
guarded Step while proving the historical sidecars are retained.
|
|
41
|
+
|
|
19
42
|
### WF-STABLE-027 — Milestone coordinator stops supervising after Task-chat dispatch
|
|
20
43
|
|
|
21
44
|
- Status: Closed-regression in beta.7
|