cool-workflow 0.1.88 → 0.1.90

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 (51) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/.codex-plugin/plugin.json +1 -1
  3. package/README.md +44 -1
  4. package/apps/architecture-review/app.json +1 -1
  5. package/apps/architecture-review-fast/app.json +1 -1
  6. package/apps/end-to-end-golden-path/app.json +1 -1
  7. package/apps/pr-review-fix-ci/app.json +1 -1
  8. package/apps/release-cut/app.json +1 -1
  9. package/apps/research-synthesis/app.json +1 -1
  10. package/dist/capability-core.js +123 -5
  11. package/dist/capability-registry.js +6 -0
  12. package/dist/cli/command-surface.js +99 -7
  13. package/dist/cli.js +27 -1
  14. package/dist/clones.js +162 -0
  15. package/dist/drive.js +35 -1
  16. package/dist/mcp/tool-call.js +4 -0
  17. package/dist/mcp/tool-definitions.js +5 -0
  18. package/dist/orchestrator/report.js +6 -0
  19. package/dist/orchestrator.js +37 -6
  20. package/dist/remote-source.js +444 -0
  21. package/dist/term.js +54 -8
  22. package/dist/version.js +1 -1
  23. package/docs/agent-delegation-drive.7.md +6 -0
  24. package/docs/cli-mcp-parity.7.md +11 -2
  25. package/docs/contract-migration-tooling.7.md +6 -0
  26. package/docs/control-plane-scheduling.7.md +6 -0
  27. package/docs/durable-state-and-locking.7.md +6 -0
  28. package/docs/evidence-adoption-reasoning-chain.7.md +6 -0
  29. package/docs/execution-backends.7.md +6 -0
  30. package/docs/multi-agent-cli-mcp-surface.7.md +6 -0
  31. package/docs/multi-agent-eval-replay-harness.7.md +6 -0
  32. package/docs/multi-agent-operator-ux.7.md +6 -0
  33. package/docs/node-snapshot-diff-replay.7.md +6 -0
  34. package/docs/observability-cost-accounting.7.md +6 -0
  35. package/docs/project-index.md +16 -5
  36. package/docs/real-execution-backends.7.md +6 -0
  37. package/docs/release-and-migration.7.md +6 -0
  38. package/docs/release-tooling.7.md +6 -0
  39. package/docs/remote-source-review.7.md +88 -0
  40. package/docs/run-registry-control-plane.7.md +6 -0
  41. package/docs/run-retention-reclamation.7.md +6 -0
  42. package/docs/state-explosion-management.7.md +6 -0
  43. package/docs/team-collaboration.7.md +6 -0
  44. package/docs/web-desktop-workbench.7.md +6 -0
  45. package/manifest/plugin.manifest.json +1 -1
  46. package/manifest/source-context-profiles.json +1 -1
  47. package/package.json +1 -1
  48. package/scripts/canonical-apps.js +4 -4
  49. package/scripts/dogfood-release.js +1 -1
  50. package/scripts/golden-path.js +4 -4
  51. package/scripts/release-gate.sh +11 -2
@@ -295,3 +295,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
295
295
  ## 0.1.88 (v0.1.88)
296
296
 
297
297
  The host-facing surface tracks the CLI simplification to 6 commands (streaming on by default, vendor agent flags); the multi-agent control loop verbs and their MCP-tool mirrors are otherwise unchanged.
298
+
299
+ ## 0.1.89 (v0.1.89)
300
+
301
+ The host-facing surface tracks the CLI golden-path fixes (`cw -q` routing + repo auto-detect + clean help); the multi-agent verbs and their MCP-tool mirrors are unchanged.
302
+
303
+ 0.1.90
@@ -329,3 +329,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
329
329
  ## 0.1.88 (v0.1.88)
330
330
 
331
331
  _No change in behavior in v0.1.88 (no harness code changed; the new `loop-control` state node and loop result nodes replay byte-identically through the existing normalize/replay machinery, and pre-0.1.88 snapshots load unchanged)._
332
+
333
+ ## 0.1.89 (v0.1.89)
334
+
335
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
336
+
337
+ 0.1.90
@@ -341,3 +341,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
341
341
  ## 0.1.88 (v0.1.88)
342
342
 
343
343
  _No behavioral change in v0.1.88 (no operator-view code changed; the new sub-workflow `subRunId`/`subRunDir` and `loopRound` run-state fields surface read-only through the existing derived graph/dependency/evidence views, which neither fabricate state nor guess success)._
344
+
345
+ ## 0.1.89 (v0.1.89)
346
+
347
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
348
+
349
+ 0.1.90
@@ -162,3 +162,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
162
162
  ## 0.1.88 (v0.1.88)
163
163
 
164
164
  A new `loop-control` StateNodeKind now flows through per-node snapshot/diff/replay (loop decisions are recorded as deterministic, replay-stable nodes); `appendRunNode` was optimized to mutate `run.nodes` in place (O(1) per append vs O(N^2) churn) with byte-identical persisted state, so snapshot/replay digests are unchanged.
165
+
166
+ ## 0.1.89 (v0.1.89)
167
+
168
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
169
+
170
+ 0.1.90
@@ -221,3 +221,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
221
221
  ## 0.1.88 (v0.1.88)
222
222
 
223
223
  Attestation now signs the agent's RESULT, not just its usage: `TelemetryAttestationRecord.resultDigest` hash-binds sha256(result.md) into the ed25519-signed, hash-chained ledger so an offline re-verifier reconstructs the exact signed payload. Budget-aware loop scaling reads the SAME recorded usage total (`deriveUsageTotals`) the fail-closed cost cap reads, so a `until:{kind:"budget-target"}` loop stops on a token target while the cap stays the absolute backstop.
224
+
225
+ ## 0.1.89 (v0.1.89)
226
+
227
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
228
+
229
+ 0.1.90
@@ -1,15 +1,15 @@
1
1
  # Cool Workflow Project Index
2
2
 
3
- Generated from the current repository code on 2026-06-20 by `npm run sync:project-index`.
3
+ Generated from the current repository code on 2026-06-21 by `npm run sync:project-index`.
4
4
 
5
5
  ## Snapshot
6
6
 
7
7
  - Package: `cool-workflow`
8
- - Version: `0.1.88`
9
- - Source modules: `65`
8
+ - Version: `0.1.90`
9
+ - Source modules: `67`
10
10
  - Workflow apps: `7`
11
- - Docs: `52`
12
- - Smoke tests: `128`
11
+ - Docs: `53`
12
+ - Smoke tests: `136`
13
13
  - Repository: https://github.com/coo1white/cool-workflow
14
14
 
15
15
  ## Architecture
@@ -83,6 +83,7 @@ multi-agent host -> topology -> blackboard/coordinator
83
83
  - [agent-config.ts](../src/agent-config.ts)
84
84
  - [capability-core.ts](../src/capability-core.ts)
85
85
  - [capability-registry.ts](../src/capability-registry.ts)
86
+ - [clones.ts](../src/clones.ts)
86
87
  - [collaboration.ts](../src/collaboration.ts)
87
88
  - [compare.ts](../src/compare.ts)
88
89
  - [contract-migration.ts](../src/contract-migration.ts)
@@ -102,6 +103,7 @@ multi-agent host -> topology -> blackboard/coordinator
102
103
  - [observability.ts](../src/observability.ts)
103
104
  - [onramp.ts](../src/onramp.ts)
104
105
  - [reclamation.ts](../src/reclamation.ts)
106
+ - [remote-source.ts](../src/remote-source.ts)
105
107
  - [result-normalize.ts](../src/result-normalize.ts)
106
108
  - [run-export.ts](../src/run-export.ts)
107
109
  - [run-registry.ts](../src/run-registry.ts)
@@ -166,6 +168,7 @@ multi-agent host -> topology -> blackboard/coordinator
166
168
  - [Release And Migration Discipline](release-and-migration.7.md)
167
169
  - [Cool Workflow Release History](release-history.md)
168
170
  - [Release Tooling](release-tooling.7.md)
171
+ - [Remote-Source Review (`--link`)](remote-source-review.7.md)
169
172
  - [Verifiable Report Bundle](report-verifiable-bundle.7.md)
170
173
  - [Routines](routines.md)
171
174
  - [Run Registry / Control Plane](run-registry-control-plane.7.md)
@@ -203,9 +206,13 @@ Smoke tests mirror the public contracts. The high-signal suites are:
203
206
  - [candidate-scoring-smoke.js](../test/candidate-scoring-smoke.js)
204
207
  - [canonical-workflow-apps-smoke.js](../test/canonical-workflow-apps-smoke.js)
205
208
  - [claude-p-agent-wrapper-smoke.js](../test/claude-p-agent-wrapper-smoke.js)
209
+ - [cli-arg-parsing-smoke.js](../test/cli-arg-parsing-smoke.js)
206
210
  - [cli-command-surface-smoke.js](../test/cli-command-surface-smoke.js)
207
211
  - [cli-jsonmode-parity-smoke.js](../test/cli-jsonmode-parity-smoke.js)
208
212
  - [cli-mcp-parity-smoke.js](../test/cli-mcp-parity-smoke.js)
213
+ - [cli-progress-summary-smoke.js](../test/cli-progress-summary-smoke.js)
214
+ - [cli-recoverable-errors-smoke.js](../test/cli-recoverable-errors-smoke.js)
215
+ - [clones-gc-smoke.js](../test/clones-gc-smoke.js)
209
216
  - [codex-agent-wrapper-smoke.js](../test/codex-agent-wrapper-smoke.js)
210
217
  - [concurrency-default-smoke.js](../test/concurrency-default-smoke.js)
211
218
  - [concurrent-failure-semantics-smoke.js](../test/concurrent-failure-semantics-smoke.js)
@@ -231,6 +238,7 @@ Smoke tests mirror the public contracts. The high-signal suites are:
231
238
  - [freebsd-audit-fixes-smoke.js](../test/freebsd-audit-fixes-smoke.js)
232
239
  - [gemini-agent-wrapper-smoke.js](../test/gemini-agent-wrapper-smoke.js)
233
240
  - [h7-custom-profile-persist-smoke.js](../test/h7-custom-profile-persist-smoke.js)
241
+ - [headline-commands-smoke.js](../test/headline-commands-smoke.js)
234
242
  - [incremental-resume-smoke.js](../test/incremental-resume-smoke.js)
235
243
  - [loop-bounded-expansion-smoke.js](../test/loop-bounded-expansion-smoke.js)
236
244
  - [mcp-app-surface-smoke.js](../test/mcp-app-surface-smoke.js)
@@ -247,6 +255,7 @@ Smoke tests mirror the public contracts. The high-signal suites are:
247
255
  - [multi-agent-trust-policy-audit-smoke.js](../test/multi-agent-trust-policy-audit-smoke.js)
248
256
  - [no-false-green-smoke.js](../test/no-false-green-smoke.js)
249
257
  - [node-snapshot-diff-replay-smoke.js](../test/node-snapshot-diff-replay-smoke.js)
258
+ - [npm-global-install-smoke.js](../test/npm-global-install-smoke.js)
250
259
  - [npm-trusted-publish-smoke.js](../test/npm-trusted-publish-smoke.js)
251
260
  - [observability-cost-accounting-smoke.js](../test/observability-cost-accounting-smoke.js)
252
261
  - [one-way-boundary-smoke.js](../test/one-way-boundary-smoke.js)
@@ -270,6 +279,8 @@ Smoke tests mirror the public contracts. The high-signal suites are:
270
279
  - [release-flow-smoke.js](../test/release-flow-smoke.js)
271
280
  - [release-gate-smoke.js](../test/release-gate-smoke.js)
272
281
  - [release-tooling-smoke.js](../test/release-tooling-smoke.js)
282
+ - [remote-link-archive-smoke.js](../test/remote-link-archive-smoke.js)
283
+ - [remote-link-git-smoke.js](../test/remote-link-git-smoke.js)
273
284
  - [report-bundle-smoke.js](../test/report-bundle-smoke.js)
274
285
  - [report-verify-bundle-smoke.js](../test/report-verify-bundle-smoke.js)
275
286
  - [result-normalize-smoke.js](../test/result-normalize-smoke.js)
@@ -169,3 +169,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
169
169
  ## 0.1.88 (v0.1.88)
170
170
 
171
171
  _No behavioral change in v0.1.88 (the container/remote/ci delegating integrations and their canonical evidence are unchanged; the streaming-default and incremental-resume work this release lives in the agent execution path and the drive, not in these backends)._
172
+
173
+ ## 0.1.89 (v0.1.89)
174
+
175
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
176
+
177
+ 0.1.90
@@ -309,3 +309,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
309
309
  ## 0.1.88 (v0.1.88)
310
310
 
311
311
  _No behavioral change in v0.1.88 (`release:check` and the durable run-state compatibility/`state check` path are unchanged; this release's release-flow verdict-capture work lives in the Release Tooling scripts, not in the release-check or migration discipline)._
312
+
313
+ ## 0.1.89 (v0.1.89)
314
+
315
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
316
+
317
+ 0.1.90
@@ -247,3 +247,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
247
247
  ## 0.1.88 (v0.1.88)
248
248
 
249
249
  The release flow now captures the reviewer's verdict from agent stdout (`release-flow.js`), so the cut records the gate decision deterministically instead of relying on a hand-entered verdict; the kernel runtime stays untouched.
250
+
251
+ ## 0.1.89 (v0.1.89)
252
+
253
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
254
+
255
+ 0.1.90
@@ -0,0 +1,88 @@
1
+ # Remote-Source Review (`--link`)
2
+
3
+ CW v0.1.91 lets you point a review at **any repository on the internet** instead
4
+ of only a local path: `cw -q "what are the risks?" --link <url>`. CW materializes
5
+ the remote into a local checkout and runs the **existing** review pipeline against
6
+ it — identical downstream to reviewing a folder. A URL passed to `-dir`/`--repo`
7
+ is auto-detected, so `--link <url>` and `-dir <url>` are equivalent.
8
+
9
+ ```bash
10
+ cw -q "What are the risks?" --link https://github.com/owner/repo
11
+ cw -q "What are the risks?" --link git@gitlab.com:owner/repo.git --ref v1.2.0
12
+ cw -q "What are the risks?" --link https://github.com/owner/repo/archive/refs/heads/main.tar.gz
13
+ cw -q "..." --link <url> --check # validate the URL + tooling WITHOUT fetching
14
+ ```
15
+
16
+ ## Sources
17
+
18
+ - **Git repositories**, any host: `https://`, `http://`, `ssh://`, `git://`, the
19
+ scp-style `git@host:owner/repo`, and `file://`. Cloned shallow (`--depth 1
20
+ --single-branch`); `--ref <branch|tag>` selects a ref. `commit` is the resolved
21
+ `HEAD` SHA.
22
+ - **Downloadable archives**: `.tar.gz` / `.tgz` / `.tar` / `.zip` (e.g. a GitHub
23
+ "Download ZIP" / codeload tarball). Fetched, extracted, and `git init`-snapshotted
24
+ into a local repo so the git-tracked source-context reader works unchanged.
25
+ `commit` is the **sha256 of the downloaded bytes** (a content address — there is
26
+ no git SHA).
27
+
28
+ ## The red line — materialize source, do not internalize execution
29
+
30
+ `--link` only materializes the **source** to review. CW still **DELEGATES** worker
31
+ execution to the operator's configured agent backend (`claude -p`, `codex exec`, an
32
+ HTTP endpoint) exactly as a local review does; it never executes a model itself.
33
+ Cloning is non-deterministic network I/O, so it happens in the **capability layer**
34
+ (before `plan`), never in the replay-deterministic orchestrator core — which only
35
+ ever sees the resulting local path.
36
+
37
+ ## Provenance — where the code came from, tamper-evidently
38
+
39
+ The sanitized origin rides through three surfaces:
40
+
41
+ - `run.inputs` → a `- Source: <url>@<commit>` line in `report.md`.
42
+ - the `--json` result's `remote { url, commit, kind, ref, cached }`.
43
+ - a hash-chained `source.clone` / `source.download` **trust-audit event** that
44
+ `cw audit verify <run-id>` re-proves — editing the recorded origin is detectable.
45
+
46
+ Credentials in a URL (`https://user:token@host/…`) are stripped before the URL is
47
+ used as a cache key, printed, persisted, or recorded; the raw URL reaches only a
48
+ single `git` argv element. Git/download diagnostics are credential-redacted before
49
+ they are ever surfaced.
50
+
51
+ ## Fail closed
52
+
53
+ A bad URL, a blocked scheme, a network failure, or a credential-less private repo
54
+ produces an **explicit error and a non-zero exit** — never a fabricated review,
55
+ never a hang on an auth prompt (`GIT_TERMINAL_PROMPT=0`). Hardening:
56
+
57
+ - **Scheme allowlist** (https/http/ssh/git/file); `ext::`/`fd::` transport helpers
58
+ and `-`-leading option-injection are rejected; the URL is always a separate argv
59
+ element (never a shell string); repo hooks are disabled (`-c core.hooksPath=`).
60
+ - **Archive extraction** validates the entry listing for `..`/absolute traversal
61
+ BEFORE extracting, **rejects symlink/non-regular entries** (walked with `lstat`),
62
+ and bounds the decompression bomb by **declared** uncompressed size (gzip ISIZE /
63
+ `unzip -l`) before extracting and **actual** size (1 GiB) after.
64
+ - **SSRF**: http(s) redirects are followed manually and each hop is re-validated
65
+ (http(s) scheme + no private/loopback/link-local host) before connecting — a
66
+ public URL cannot redirect CW into an internal service.
67
+
68
+ ## Cache — `cw clones`
69
+
70
+ Checkouts are cached, content-addressed, under
71
+ `~/.local/state/cool-workflow/clones/<hash>/` (honoring `CW_HOME`/`XDG_STATE_HOME`)
72
+ and reused on the next question; `--refresh` re-fetches. Manage the cache:
73
+
74
+ ```bash
75
+ cw clones list # origin url, kind, commit, age, bytes
76
+ cw clones gc --older-than-days 30 # reclaim checkouts older than N days
77
+ cw clones gc --all # reclaim everything
78
+ ```
79
+
80
+ `cw clones gc` deletes only paths it has proven are inside the clones cache (fail
81
+ closed). Both verbs have MCP peers (`cw_clones_list`, `cw_clones_gc`) with
82
+ byte-identical payloads.
83
+
84
+ ## Determinism note
85
+
86
+ The cache is keyed on the URL (+ref), not on content: if a URL's content changes
87
+ upstream, the cached checkout is reused until `--refresh` (mirroring how a git
88
+ clone pins its resolved `HEAD`). Use `--refresh` to re-fetch the latest.
@@ -430,3 +430,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
430
430
  ## 0.1.88 (v0.1.88)
431
431
 
432
432
  Security: archive import now refuses path-traversal run ids (`..`/absolute/separator-bearing ids) before any run dir is minted, closing a write-outside-the-registry vector; run resolution and the run-state schema are otherwise unchanged.
433
+
434
+ ## 0.1.89 (v0.1.89)
435
+
436
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
437
+
438
+ 0.1.90
@@ -220,3 +220,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
220
220
  ## 0.1.88 (v0.1.88)
221
221
 
222
222
  _No behavioral change in v0.1.88 (the tiered, append-only, cryptographically-verifiable reclamation transition is unchanged)._
223
+
224
+ ## 0.1.89 (v0.1.89)
225
+
226
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
227
+
228
+ 0.1.90
@@ -298,3 +298,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
298
298
  ## 0.1.88 (v0.1.88)
299
299
 
300
300
  _No behavioral change in v0.1.88 (the summarization/compaction layer and its fail-closed derived summaries are untouched)._
301
+
302
+ ## 0.1.89 (v0.1.89)
303
+
304
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
305
+
306
+ 0.1.90
@@ -234,3 +234,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
234
234
  ## 0.1.88 (v0.1.88)
235
235
 
236
236
  _No behavioral change in v0.1.88 (the host-attested actor, append-only approvals/comments/handoffs, and the review gate that stacks on the verifier gate are unchanged)._
237
+
238
+ ## 0.1.89 (v0.1.89)
239
+
240
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
241
+
242
+ 0.1.90
@@ -242,3 +242,9 @@ npm test parallel, 4-vendor wrappers (Claude/Codex/Gemini/OpenCode), Homebrew-st
242
242
  ## 0.1.88 (v0.1.88)
243
243
 
244
244
  _No behavioral change in v0.1.88 (the five operator surfaces and the registry cross-run entry are unchanged; the Workbench still derives everything from state the CLI/MCP already expose)._
245
+
246
+ ## 0.1.89 (v0.1.89)
247
+
248
+ _No behavioral change in v0.1.89 (CLI-surface golden-path + help-output fixes only; this subsystem is unchanged)._
249
+
250
+ 0.1.90
@@ -2,7 +2,7 @@
2
2
  "_comment": "SINGLE SOURCE OF TRUTH for every vendor manifest. Edit THIS file, then run `npm run gen:manifests`. Do NOT hand-edit the generated vendor manifests (.claude-plugin/, .codex-plugin/, .agents/, .mcp.json) — `npm run gen:manifests -- --check` (run by release:check) will fail if they drift from this source.",
3
3
  "identity": {
4
4
  "name": "cool-workflow",
5
- "version": "0.1.88",
5
+ "version": "0.1.90",
6
6
  "license": "BSD-2-Clause",
7
7
  "homepage": "https://github.com/coo1white/cool-workflow",
8
8
  "author": {
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "runtime": {
27
27
  "description": "Runtime-kernel source context for state, orchestration, scheduling, execution, and shared types.",
28
- "maxLines": 44000,
28
+ "maxLines": 48000,
29
29
  "include": [
30
30
  "plugins/cool-workflow/src/**",
31
31
  "plugins/cool-workflow/package.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cool-workflow",
3
- "version": "0.1.88",
3
+ "version": "0.1.90",
4
4
  "bin": {
5
5
  "cool-workflow": "scripts/cw.js",
6
6
  "cw": "scripts/cw.js"
@@ -83,7 +83,7 @@ const canonicalApps = [
83
83
  "--source",
84
84
  "plugins/cool-workflow/docs/workflow-app-framework.7.md",
85
85
  "--scope",
86
- "Cool Workflow v0.1.88",
86
+ "Cool Workflow v0.1.90",
87
87
  "--freshness",
88
88
  "as of release preparation"
89
89
  ]
@@ -117,14 +117,14 @@ function main() {
117
117
  assert.ok(summary, `${app.id} must appear in app list`);
118
118
  assert.equal(summary.sourceKind, "app-directory");
119
119
  assert.equal(summary.legacy, false);
120
- assert.equal(summary.version, "0.1.88");
120
+ assert.equal(summary.version, "0.1.90");
121
121
 
122
122
  const validation = runJson(["app", "validate", manifestPath]);
123
123
  assert.equal(validation.valid, true, `${app.id} manifest must validate`);
124
124
 
125
125
  const shown = runJson(["app", "show", app.id]);
126
126
  assert.equal(shown.app.id, app.id);
127
- assert.equal(shown.app.version, "0.1.88");
127
+ assert.equal(shown.app.version, "0.1.90");
128
128
  assert.ok(shown.app.metadata.canonical, `${app.id} must be marked canonical`);
129
129
  assert.ok(shown.app.sandboxProfiles.length > 0, `${app.id} must declare sandbox profiles`);
130
130
  assertTaskIdsUnique(shown);
@@ -135,7 +135,7 @@ function main() {
135
135
  const plan = runJson(["plan", app.id, ...app.args(workspace)]);
136
136
  const state = JSON.parse(fs.readFileSync(plan.statePath, "utf8"));
137
137
  assert.equal(state.workflow.app.id, app.id);
138
- assert.equal(state.workflow.app.version, "0.1.88");
138
+ assert.equal(state.workflow.app.version, "0.1.90");
139
139
  assert.equal(state.workflow.app.metadata.canonical, true);
140
140
  assert.ok(state.tasks.some((task) => task.requiresEvidence), `${app.id} plan must include evidence gates`);
141
141
  assert.ok(state.tasks.every((task) => task.sandboxProfileId), `${app.id} plan must include sandbox hints`);
@@ -6,7 +6,7 @@ const fs = require("node:fs");
6
6
  const path = require("node:path");
7
7
  const { CoolWorkflowRunner } = require("../dist/orchestrator.js");
8
8
 
9
- const TARGET_VERSION = "0.1.88";
9
+ const TARGET_VERSION = "0.1.90";
10
10
  const PREVIOUS_VERSION = "0.1.31";
11
11
  const pluginRoot = path.resolve(__dirname, "..");
12
12
  const repoRoot = path.resolve(pluginRoot, "..", "..");
@@ -33,7 +33,7 @@ function main() {
33
33
  const appValidation = runJson(["app", "validate", "end-to-end-golden-path"], pluginRoot);
34
34
  assert.equal(appValidation.valid, true);
35
35
  assert.equal(appValidation.summary.id, "end-to-end-golden-path");
36
- assert.equal(appValidation.summary.version, "0.1.88");
36
+ assert.equal(appValidation.summary.version, "0.1.90");
37
37
 
38
38
  const plan = runJson(
39
39
  [
@@ -42,7 +42,7 @@ function main() {
42
42
  "--repo",
43
43
  tmp,
44
44
  "--question",
45
- "Prove the deterministic v0.1.88 end-to-end golden path."
45
+ "Prove the deterministic v0.1.90 end-to-end golden path."
46
46
  ],
47
47
  pluginRoot
48
48
  );
@@ -52,7 +52,7 @@ function main() {
52
52
 
53
53
  let state = readJson(plan.statePath);
54
54
  assert.equal(state.workflow.app.id, "end-to-end-golden-path");
55
- assert.equal(state.workflow.app.version, "0.1.88");
55
+ assert.equal(state.workflow.app.version, "0.1.90");
56
56
  assert.equal(state.loopStage, "interpret");
57
57
 
58
58
  const dispatch = runJson(["dispatch", plan.runId, "--limit", "1", "--sandbox", "readonly"], tmp);
@@ -195,7 +195,7 @@ function main() {
195
195
  assert.equal(reportPath, plan.reportPath);
196
196
  assert.ok(fs.existsSync(reportPath));
197
197
  const report = fs.readFileSync(reportPath, "utf8");
198
- assert.match(report, /Workflow App: end-to-end-golden-path@0\.1\.88/);
198
+ assert.match(report, /Workflow App: end-to-end-golden-path@0\.1\.90/);
199
199
  assert.match(report, /## Candidates/);
200
200
  assert.match(report, /## Trust Audit/);
201
201
  assert.match(report, /## Acceptance Rationale/);
@@ -51,7 +51,7 @@ if [[ -n "$PREV_TAG" ]]; then
51
51
  TESTS_CHANGED=$(git diff --name-only "$RANGE" | grep -cE '\.(test|spec)\.|/tests?/' || true)
52
52
  [[ "$TESTS_CHANGED" -gt 0 ]] || fail "zero test changes since $PREV_TAG"
53
53
 
54
- # --- 4. Cadence: >=4 cycles logged OR >=24h since previous tag -------
54
+ # --- 4. Cadence: >=4 cycles logged OR >=24h since previous tag, or a recorded HOTFIX ---
55
55
  say "[5/6] cadence"
56
56
  CYCLES=0
57
57
  if [[ -f ITERATION_LOG.md && -n "$PREV_TAG" ]]; then
@@ -60,8 +60,17 @@ if [[ -n "$PREV_TAG" ]]; then
60
60
  PREV_TS=$(git log -1 --format=%ct "$PREV_TAG")
61
61
  NOW_TS=$(date +%s)
62
62
  HOURS=$(( (NOW_TS - PREV_TS) / 3600 ))
63
+ # Hotfix path: an urgent fix may ship inside the cadence window, but ONLY via an
64
+ # EXPLICIT, RECORDED declaration — a "HOTFIX:" line added to ITERATION_LOG.md in this
65
+ # release range, carrying a reason. It is committed (auditable in the tag's history)
66
+ # and echoed here, so the bypass is never silent and a reviewer sees the reason.
67
+ HOTFIX="$(git diff "$RANGE" -- ITERATION_LOG.md | grep -E '^\+.*HOTFIX:' | head -1 | sed -E 's/^\+[[:space:]]*//' || true)"
63
68
  if [[ "$CYCLES" -lt 4 && "$HOURS" -lt 24 ]]; then
64
- fail "cadence: only $CYCLES cycles logged and ${HOURS}h since $PREV_TAG (need >=4 cycles or >=24h)"
69
+ if [[ -n "$HOTFIX" ]]; then
70
+ say " cadence bypassed by recorded HOTFIX (${HOURS}h, ${CYCLES} cycle-lines): ${HOTFIX}"
71
+ else
72
+ fail "cadence: only $CYCLES cycles logged and ${HOURS}h since $PREV_TAG (need >=4 cycles, >=24h, or a recorded 'HOTFIX:' line in ITERATION_LOG.md)"
73
+ fi
65
74
  fi
66
75
  else
67
76
  say "[3-5/6] no previous tag; substance/evidence/cadence checks skipped"