cool-workflow 0.1.97 → 0.2.0

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 (309) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/.codex-plugin/plugin.json +1 -1
  3. package/README.md +11 -2
  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/cli/dispatch.js +236 -0
  11. package/dist/cli/entry.js +120 -0
  12. package/dist/cli/io.js +21 -4
  13. package/dist/cli/parseargv.js +157 -0
  14. package/dist/cli.js +6 -33
  15. package/dist/core/capability-table.js +3534 -0
  16. package/dist/core/format/help.js +314 -0
  17. package/dist/{state-explosion/format.js → core/format/state-explosion-text.js} +10 -1
  18. package/dist/core/hash.js +137 -0
  19. package/dist/core/multi-agent/candidate-scoring.js +219 -0
  20. package/dist/core/multi-agent/collaboration.js +481 -0
  21. package/dist/core/multi-agent/coordinator.js +515 -0
  22. package/dist/core/multi-agent/eval-replay.js +306 -0
  23. package/dist/core/multi-agent/runtime.js +929 -0
  24. package/dist/core/multi-agent/topology.js +298 -0
  25. package/dist/core/multi-agent/trust-policy.js +197 -0
  26. package/dist/core/pipeline/commit-gate.js +320 -0
  27. package/dist/{pipeline-contract.js → core/pipeline/contract.js} +24 -37
  28. package/dist/core/pipeline/dispatch.js +103 -0
  29. package/dist/core/pipeline/drive-decide.js +227 -0
  30. package/dist/core/pipeline/error-feedback.js +161 -0
  31. package/dist/core/pipeline/loop-expansion.js +124 -0
  32. package/dist/{result-normalize.js → core/pipeline/result-normalize.js} +14 -37
  33. package/dist/core/pipeline/runner.js +230 -0
  34. package/dist/{contract-migration.js → core/state/contract-migration.js} +68 -92
  35. package/dist/{state-migrations.js → core/state/migrations.js} +103 -96
  36. package/dist/core/state/node-projection.js +95 -0
  37. package/dist/core/state/node-snapshot.js +230 -0
  38. package/dist/core/state/run-paths.js +93 -0
  39. package/dist/{schema-validate.js → core/state/schema-validate.js} +35 -28
  40. package/dist/core/state/schema.js +50 -0
  41. package/dist/core/state/state-explosion/digest.js +243 -0
  42. package/dist/core/state/state-explosion/graph.js +527 -0
  43. package/dist/{state-explosion → core/state/state-explosion}/helpers.js +34 -3
  44. package/dist/core/state/state-explosion/report.js +187 -0
  45. package/dist/{state-explosion → core/state/state-explosion}/size.js +25 -7
  46. package/dist/{state-node.js → core/state/state-node.js} +90 -113
  47. package/dist/core/state/types.js +19 -0
  48. package/dist/{validation.js → core/state/validation.js} +64 -131
  49. package/dist/core/trust/evidence-grounding.js +134 -0
  50. package/dist/core/trust/ledger.js +199 -0
  51. package/dist/{telemetry-attestation.js → core/trust/telemetry-attestation.js} +94 -68
  52. package/dist/core/trust/telemetry-ledger.js +127 -0
  53. package/dist/core/types.js +20 -0
  54. package/dist/core/version.js +16 -0
  55. package/dist/{workflow-app-framework.js → core/workflow-apps/app-schema.js} +337 -426
  56. package/dist/mcp/dispatch.js +104 -0
  57. package/dist/mcp/server.js +144 -0
  58. package/dist/mcp-server.js +6 -84
  59. package/dist/{agent-config.js → shell/agent-config.js} +118 -71
  60. package/dist/shell/app-run-cli.js +88 -0
  61. package/dist/shell/audit-cli.js +259 -0
  62. package/dist/shell/audit-provenance.js +83 -0
  63. package/dist/shell/candidate-scoring-io.js +459 -0
  64. package/dist/shell/collaboration-io.js +264 -0
  65. package/dist/shell/commit-summary.js +104 -0
  66. package/dist/shell/commit.js +290 -0
  67. package/dist/shell/coordinator-io.js +476 -0
  68. package/dist/shell/demo-cli.js +19 -0
  69. package/dist/shell/dispatch.js +162 -0
  70. package/dist/{doctor.js → shell/doctor.js} +123 -56
  71. package/dist/shell/drive.js +873 -0
  72. package/dist/shell/error-feedback-io.js +305 -0
  73. package/dist/shell/eval-io.js +473 -0
  74. package/dist/{multi-agent-eval/format.js → shell/eval-text.js} +78 -49
  75. package/dist/{evidence-reasoning.js → shell/evidence-reasoning.js} +124 -255
  76. package/dist/shell/exec-backend-cli.js +88 -0
  77. package/dist/shell/execution-backend/agent.js +475 -0
  78. package/dist/shell/execution-backend/ci.js +15 -0
  79. package/dist/shell/execution-backend/container.js +69 -0
  80. package/dist/shell/execution-backend/envelopes.js +55 -0
  81. package/dist/shell/execution-backend/local.js +113 -0
  82. package/dist/shell/execution-backend/probes.js +175 -0
  83. package/dist/shell/execution-backend/registry.js +402 -0
  84. package/dist/shell/execution-backend/remote.js +128 -0
  85. package/dist/shell/execution-backend/types.js +11 -0
  86. package/dist/shell/feedback-cli.js +81 -0
  87. package/dist/shell/feedback-operations.js +48 -0
  88. package/dist/shell/fs-atomic.js +276 -0
  89. package/dist/shell/harness.js +98 -0
  90. package/dist/shell/ledger-cli.js +212 -0
  91. package/dist/shell/ledger-io.js +169 -0
  92. package/dist/shell/man-cli.js +89 -0
  93. package/dist/shell/metrics-cli.js +98 -0
  94. package/dist/shell/multi-agent-cli.js +1002 -0
  95. package/dist/shell/multi-agent-host.js +563 -0
  96. package/dist/shell/multi-agent-io.js +387 -0
  97. package/dist/{multi-agent-operator-ux.js → shell/multi-agent-operator-ux.js} +234 -191
  98. package/dist/shell/node-store.js +124 -0
  99. package/dist/{observability/format.js → shell/observability-format.js} +7 -1
  100. package/dist/{observability/intake.js → shell/observability-intake.js} +79 -56
  101. package/dist/{observability.js → shell/observability.js} +159 -332
  102. package/dist/{onramp.js → shell/onramp.js} +11 -0
  103. package/dist/{operator-ux/format.js → shell/operator-ux-text.js} +250 -239
  104. package/dist/shell/operator-ux.js +431 -0
  105. package/dist/shell/orchestrator.js +231 -0
  106. package/dist/shell/pipeline-cli.js +667 -0
  107. package/dist/shell/pipeline.js +217 -0
  108. package/dist/shell/reclamation-io.js +1366 -0
  109. package/dist/shell/registry-cli.js +329 -0
  110. package/dist/{remote-source.js → shell/remote-source.js} +12 -5
  111. package/dist/shell/report-cli.js +101 -0
  112. package/dist/shell/report-view-cli.js +117 -0
  113. package/dist/{orchestrator → shell}/report.js +289 -282
  114. package/dist/shell/reporter.js +62 -0
  115. package/dist/shell/run-export-cli.js +106 -0
  116. package/dist/shell/run-export.js +680 -0
  117. package/dist/shell/run-registry-io.js +1014 -0
  118. package/dist/shell/run-store.js +164 -0
  119. package/dist/{sandbox-profile.js → shell/sandbox-profile.js} +134 -95
  120. package/dist/{scheduler.js → shell/scheduler-io.js} +248 -48
  121. package/dist/shell/scheduling-io.js +311 -0
  122. package/dist/shell/state-cli.js +181 -0
  123. package/dist/shell/state-explosion-cli.js +197 -0
  124. package/dist/shell/telemetry-cli.js +85 -0
  125. package/dist/{telemetry-demo.js → shell/telemetry-demo.js} +149 -119
  126. package/dist/shell/telemetry-ledger-io.js +132 -0
  127. package/dist/{term.js → shell/term.js} +36 -46
  128. package/dist/shell/topology-io.js +361 -0
  129. package/dist/shell/trust-audit.js +471 -0
  130. package/dist/{multi-agent-trust.js → shell/trust-policy-io.js} +67 -205
  131. package/dist/shell/verifier.js +48 -0
  132. package/dist/shell/workbench-host.js +250 -0
  133. package/dist/shell/workbench-text.js +18 -0
  134. package/dist/shell/workbench.js +175 -0
  135. package/dist/shell/worker-cli.js +124 -0
  136. package/dist/shell/worker-isolation.js +852 -0
  137. package/dist/shell/workflow-app-loader.js +650 -0
  138. package/docs/agent-delegation-drive.7.md +4 -0
  139. package/docs/cli-mcp-parity.7.md +284 -211
  140. package/docs/contract-migration-tooling.7.md +4 -0
  141. package/docs/control-plane-scheduling.7.md +4 -0
  142. package/docs/cross-agent-ledger.7.md +217 -0
  143. package/docs/designs/handoff-ledger.md +145 -0
  144. package/docs/durable-state-and-locking.7.md +4 -0
  145. package/docs/evidence-adoption-reasoning-chain.7.md +4 -0
  146. package/docs/execution-backends.7.md +4 -0
  147. package/docs/handoff-setup.md +120 -0
  148. package/docs/multi-agent-cli-mcp-surface.7.md +4 -0
  149. package/docs/multi-agent-eval-replay-harness.7.md +4 -0
  150. package/docs/multi-agent-operator-ux.7.md +4 -0
  151. package/docs/node-snapshot-diff-replay.7.md +4 -0
  152. package/docs/observability-cost-accounting.7.md +4 -0
  153. package/docs/project-index.md +143 -71
  154. package/docs/real-execution-backends.7.md +4 -0
  155. package/docs/release-and-migration.7.md +4 -0
  156. package/docs/release-tooling.7.md +4 -0
  157. package/docs/run-registry-control-plane.7.md +4 -0
  158. package/docs/run-retention-reclamation.7.md +25 -0
  159. package/docs/state-explosion-management.7.md +4 -0
  160. package/docs/team-collaboration.7.md +4 -0
  161. package/docs/web-desktop-workbench.7.md +4 -0
  162. package/manifest/plugin.manifest.json +1 -1
  163. package/manifest/source-context-profiles.json +9 -13
  164. package/package.json +1 -1
  165. package/scripts/agents/codex-agent.js +34 -4
  166. package/scripts/agents/cw-attest-wrap.js +2 -2
  167. package/scripts/bump-version.js +4 -3
  168. package/scripts/canonical-apps.js +4 -4
  169. package/scripts/children/batch-delegate-child.js +30 -10
  170. package/scripts/dogfood-architecture-review.js +2 -3
  171. package/scripts/dogfood-release.js +3 -3
  172. package/scripts/gen-parity-doc.js +15 -2
  173. package/scripts/golden-path.js +4 -4
  174. package/scripts/onramp-check.js +1 -1
  175. package/scripts/parity-check.js +38 -21
  176. package/scripts/release-flow.js +9 -3
  177. package/scripts/sync-project-index.js +51 -27
  178. package/scripts/validate-run-state-schema.js +2 -2
  179. package/scripts/version-sync-check.js +30 -30
  180. package/dist/candidate-scoring.js +0 -729
  181. package/dist/capability-core.js +0 -1186
  182. package/dist/capability-registry.js +0 -879
  183. package/dist/cli/command-surface.js +0 -490
  184. package/dist/cli/format.js +0 -56
  185. package/dist/cli/handlers/audit.js +0 -82
  186. package/dist/cli/handlers/blackboard.js +0 -81
  187. package/dist/cli/handlers/candidate.js +0 -40
  188. package/dist/cli/handlers/clones.js +0 -34
  189. package/dist/cli/handlers/collaboration.js +0 -61
  190. package/dist/cli/handlers/eval.js +0 -40
  191. package/dist/cli/handlers/maintenance.js +0 -107
  192. package/dist/cli/handlers/multi-agent.js +0 -165
  193. package/dist/cli/handlers/node.js +0 -41
  194. package/dist/cli/handlers/operational.js +0 -155
  195. package/dist/cli/handlers/operator.js +0 -146
  196. package/dist/cli/handlers/registry.js +0 -68
  197. package/dist/cli/handlers/run.js +0 -153
  198. package/dist/cli/handlers/scheduling.js +0 -132
  199. package/dist/cli/handlers/workbench.js +0 -41
  200. package/dist/cli/handlers/worker.js +0 -45
  201. package/dist/cli/run-summary.js +0 -45
  202. package/dist/clones.js +0 -162
  203. package/dist/collaboration.js +0 -726
  204. package/dist/commit.js +0 -592
  205. package/dist/compare.js +0 -18
  206. package/dist/coordinator/classify.js +0 -45
  207. package/dist/coordinator/paths.js +0 -42
  208. package/dist/coordinator/util.js +0 -126
  209. package/dist/coordinator.js +0 -990
  210. package/dist/daemon.js +0 -44
  211. package/dist/dispatch.js +0 -250
  212. package/dist/drive.js +0 -827
  213. package/dist/error-feedback.js +0 -419
  214. package/dist/evidence-grounding.js +0 -184
  215. package/dist/execution-backend/agent.js +0 -294
  216. package/dist/execution-backend/probes.js +0 -112
  217. package/dist/execution-backend/util.js +0 -47
  218. package/dist/execution-backend.js +0 -961
  219. package/dist/gates.js +0 -48
  220. package/dist/harness.js +0 -61
  221. package/dist/loop-expansion.js +0 -60
  222. package/dist/mcp/tool-call.js +0 -434
  223. package/dist/mcp/tool-definitions.js +0 -1040
  224. package/dist/mcp-surface.js +0 -30
  225. package/dist/multi-agent/graph.js +0 -84
  226. package/dist/multi-agent/helpers.js +0 -141
  227. package/dist/multi-agent/ids.js +0 -20
  228. package/dist/multi-agent/paths.js +0 -22
  229. package/dist/multi-agent-eval/normalize.js +0 -51
  230. package/dist/multi-agent-eval.js +0 -678
  231. package/dist/multi-agent-host.js +0 -777
  232. package/dist/multi-agent.js +0 -984
  233. package/dist/node-projection.js +0 -59
  234. package/dist/node-snapshot.js +0 -260
  235. package/dist/operator-ux.js +0 -631
  236. package/dist/orchestrator/app-operations.js +0 -211
  237. package/dist/orchestrator/audit-operations.js +0 -182
  238. package/dist/orchestrator/candidate-operations.js +0 -117
  239. package/dist/orchestrator/cli-options.js +0 -294
  240. package/dist/orchestrator/collaboration-operations.js +0 -86
  241. package/dist/orchestrator/feedback-operations.js +0 -81
  242. package/dist/orchestrator/host-operations.js +0 -78
  243. package/dist/orchestrator/lifecycle-operations.js +0 -626
  244. package/dist/orchestrator/migration-operations.js +0 -44
  245. package/dist/orchestrator/multi-agent-operations.js +0 -362
  246. package/dist/orchestrator/topology-operations.js +0 -84
  247. package/dist/orchestrator.js +0 -917
  248. package/dist/pipeline-runner.js +0 -285
  249. package/dist/reclamation/hash.js +0 -72
  250. package/dist/reclamation.js +0 -812
  251. package/dist/reporter.js +0 -67
  252. package/dist/run-export.js +0 -784
  253. package/dist/run-registry/derive.js +0 -175
  254. package/dist/run-registry/format.js +0 -124
  255. package/dist/run-registry/gc.js +0 -251
  256. package/dist/run-registry/policy.js +0 -16
  257. package/dist/run-registry/queue.js +0 -115
  258. package/dist/run-registry.js +0 -850
  259. package/dist/run-state-schema.js +0 -68
  260. package/dist/scheduling.js +0 -184
  261. package/dist/state-explosion.js +0 -1014
  262. package/dist/state.js +0 -367
  263. package/dist/telemetry-ledger.js +0 -196
  264. package/dist/topology.js +0 -565
  265. package/dist/triggers.js +0 -184
  266. package/dist/trust-audit.js +0 -644
  267. package/dist/types/blackboard.js +0 -2
  268. package/dist/types/candidate.js +0 -2
  269. package/dist/types/collaboration.js +0 -2
  270. package/dist/types/core.js +0 -2
  271. package/dist/types/drive.js +0 -10
  272. package/dist/types/error-feedback.js +0 -2
  273. package/dist/types/evidence-reasoning.js +0 -2
  274. package/dist/types/execution-backend.js +0 -2
  275. package/dist/types/multi-agent.js +0 -2
  276. package/dist/types/observability.js +0 -2
  277. package/dist/types/pipeline.js +0 -2
  278. package/dist/types/reclamation.js +0 -8
  279. package/dist/types/report-bundle.js +0 -6
  280. package/dist/types/result.js +0 -2
  281. package/dist/types/run-registry.js +0 -2
  282. package/dist/types/run.js +0 -2
  283. package/dist/types/sandbox.js +0 -2
  284. package/dist/types/schedule.js +0 -2
  285. package/dist/types/state-node.js +0 -2
  286. package/dist/types/topology.js +0 -2
  287. package/dist/types/trust.js +0 -2
  288. package/dist/types/workbench.js +0 -2
  289. package/dist/types/worker.js +0 -2
  290. package/dist/types/workflow-app.js +0 -2
  291. package/dist/types.js +0 -44
  292. package/dist/util/fingerprint.js +0 -19
  293. package/dist/util/fingerprint.test.js +0 -27
  294. package/dist/verifier.js +0 -78
  295. package/dist/version.js +0 -8
  296. package/dist/workbench-host.js +0 -182
  297. package/dist/workbench.js +0 -192
  298. package/dist/worker-accept/acceptance.js +0 -114
  299. package/dist/worker-accept/blackboard-fanout.js +0 -80
  300. package/dist/worker-accept/blackboard-linkage.js +0 -19
  301. package/dist/worker-accept/context.js +0 -2
  302. package/dist/worker-accept/telemetry-ledger.js +0 -126
  303. package/dist/worker-accept/validation.js +0 -77
  304. package/dist/worker-accept/verifier-completion.js +0 -73
  305. package/dist/worker-isolation/helpers.js +0 -51
  306. package/dist/worker-isolation/paths.js +0 -46
  307. package/dist/worker-isolation.js +0 -656
  308. package/dist/workflow-api.js +0 -131
  309. /package/dist/{types → core/types}/boundary.js +0 -0
@@ -0,0 +1,459 @@
1
+ "use strict";
2
+ // shell/candidate-scoring-io.ts — the impure wrapper around
3
+ // core/multi-agent/candidate-scoring.ts's pure decision math:
4
+ // registerCandidate/scoreCandidate/rankCandidates/selectCandidate/
5
+ // rejectCandidate/summarizeCandidates.
6
+ //
7
+ // MILESTONE 9. Byte-exact port of the impure half of the old build's
8
+ // src/candidate-scoring.ts: disk reads/writes, trust-audit calls,
9
+ // feedback recording, review-gate stacking, and saveCheckpoint.
10
+ //
11
+ // BYTE-COMPAT / REBUILD RISK 8 [load-bearing]: the review gate STACKS on
12
+ // top of the verifier-gate failures built here — reviewGateErrors is
13
+ // appended, never replacing a verifier error. See
14
+ // reviewstack-verifier-error-precedence.case.js.
15
+ //
16
+ // Evidence: SPEC/multi-agent.md section E; plugins/cool-workflow/src/
17
+ // candidate-scoring.ts (byte-exact source for the wiring sequence).
18
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ var desc = Object.getOwnPropertyDescriptor(m, k);
21
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
22
+ desc = { enumerable: true, get: function() { return m[k]; } };
23
+ }
24
+ Object.defineProperty(o, k2, desc);
25
+ }) : (function(o, m, k, k2) {
26
+ if (k2 === undefined) k2 = k;
27
+ o[k2] = m[k];
28
+ }));
29
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
30
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
31
+ }) : function(o, v) {
32
+ o["default"] = v;
33
+ });
34
+ var __importStar = (this && this.__importStar) || (function () {
35
+ var ownKeys = function(o) {
36
+ ownKeys = Object.getOwnPropertyNames || function (o) {
37
+ var ar = [];
38
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
39
+ return ar;
40
+ };
41
+ return ownKeys(o);
42
+ };
43
+ return function (mod) {
44
+ if (mod && mod.__esModule) return mod;
45
+ var result = {};
46
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
47
+ __setModuleDefault(result, mod);
48
+ return result;
49
+ };
50
+ })();
51
+ Object.defineProperty(exports, "__esModule", { value: true });
52
+ exports.getCandidate = getCandidate;
53
+ exports.listCandidates = listCandidates;
54
+ exports.registerCandidate = registerCandidate;
55
+ exports.scoreCandidate = scoreCandidate;
56
+ exports.rankCandidates = rankCandidates;
57
+ exports.selectCandidate = selectCandidate;
58
+ exports.rejectCandidate = rejectCandidate;
59
+ exports.summarizeCandidates = summarizeCandidates;
60
+ const fs = __importStar(require("node:fs"));
61
+ const path = __importStar(require("node:path"));
62
+ const fs_atomic_1 = require("./fs-atomic");
63
+ const run_store_1 = require("./run-store");
64
+ const node_store_1 = require("./node-store");
65
+ const state_node_1 = require("../core/state/state-node");
66
+ const trust_audit_1 = require("./trust-audit");
67
+ const error_feedback_io_1 = require("./error-feedback-io");
68
+ const cs = __importStar(require("../core/multi-agent/candidate-scoring"));
69
+ const result_normalize_1 = require("../core/pipeline/result-normalize");
70
+ const collaboration_1 = require("../core/multi-agent/collaboration");
71
+ const collaboration_io_1 = require("./collaboration-io");
72
+ function now() {
73
+ return new Date().toISOString();
74
+ }
75
+ function ensureCandidateState(run) {
76
+ run.paths.candidatesDir = run.paths.candidatesDir || path.join(run.paths.runDir, "candidates");
77
+ fs.mkdirSync(run.paths.candidatesDir, { recursive: true });
78
+ run.candidates = run.candidates || [];
79
+ run.candidateSelections = run.candidateSelections || [];
80
+ }
81
+ function candidateRoot(run) {
82
+ ensureCandidateState(run);
83
+ return run.paths.candidatesDir;
84
+ }
85
+ function candidateDir(run, candidateId) {
86
+ return path.join(candidateRoot(run), (0, fs_atomic_1.safeFileName)(candidateId));
87
+ }
88
+ function candidateFile(run, candidateId) {
89
+ return path.join(candidateDir(run, candidateId), "candidate.json");
90
+ }
91
+ function indexPath(run) {
92
+ return path.join(candidateRoot(run), "index.json");
93
+ }
94
+ function rankingPath(run) {
95
+ return path.join(candidateRoot(run), "ranking.json");
96
+ }
97
+ function writeCandidate(run, candidate) {
98
+ (0, fs_atomic_1.writeJson)(candidateFile(run, candidate.id), candidate);
99
+ }
100
+ function writeScoreFile(run, candidateId, score) {
101
+ (0, fs_atomic_1.writeJson)(path.join(candidateDir(run, candidateId), "scores", `${(0, fs_atomic_1.safeFileName)(score.id)}.json`), score);
102
+ }
103
+ function writeSelectionFile(run, selection) {
104
+ (0, fs_atomic_1.writeJson)(path.join(candidateRoot(run), "selections", `${(0, fs_atomic_1.safeFileName)(selection.id)}.json`), selection);
105
+ }
106
+ function writeCandidateIndex(run) {
107
+ ensureCandidateState(run);
108
+ (0, fs_atomic_1.writeJson)(indexPath(run), {
109
+ schemaVersion: cs.CANDIDATE_SCHEMA_VERSION,
110
+ runId: run.id,
111
+ candidates: (run.candidates || []).map((candidate) => ({ id: candidate.id, kind: candidate.kind, status: candidate.status, workerId: candidate.workerId, taskId: candidate.taskId, resultNodeId: candidate.resultNodeId, verifierNodeId: candidate.verifierNodeId, resultPath: candidate.resultPath, scores: candidate.scores, feedbackIds: candidate.feedbackIds })),
112
+ selections: run.candidateSelections || [],
113
+ });
114
+ }
115
+ function upsertCandidate(run, candidate) {
116
+ ensureCandidateState(run);
117
+ const candidates = run.candidates || [];
118
+ const index = candidates.findIndex((entry) => entry.id === candidate.id);
119
+ run.candidates = (index >= 0 ? candidates.map((entry) => (entry.id === candidate.id ? candidate : entry)) : [...candidates, candidate]);
120
+ writeCandidate(run, candidate);
121
+ writeCandidateIndex(run);
122
+ return candidate;
123
+ }
124
+ function loadCandidatesFromDisk(run) {
125
+ ensureCandidateState(run);
126
+ const root = candidateRoot(run);
127
+ if (!fs.existsSync(root))
128
+ return [];
129
+ return fs
130
+ .readdirSync(root, { withFileTypes: true })
131
+ .filter((entry) => entry.isDirectory() && entry.name !== "selections")
132
+ .map((entry) => path.join(root, entry.name, "candidate.json"))
133
+ .filter((file) => fs.existsSync(file))
134
+ .map((file) => (0, fs_atomic_1.readJson)(file));
135
+ }
136
+ function mergeCandidates(left, right) {
137
+ const merged = [...left];
138
+ for (const candidate of right) {
139
+ const index = merged.findIndex((entry) => entry.id === candidate.id);
140
+ if (index >= 0)
141
+ merged[index] = candidate;
142
+ else
143
+ merged.push(candidate);
144
+ }
145
+ return merged;
146
+ }
147
+ function getCandidate(run, candidateId) {
148
+ ensureCandidateState(run);
149
+ const existing = (run.candidates || []).find((candidate) => candidate.id === candidateId);
150
+ if (existing)
151
+ return existing;
152
+ const file = candidateFile(run, candidateId);
153
+ if (!fs.existsSync(file))
154
+ return undefined;
155
+ const candidate = (0, fs_atomic_1.readJson)(file);
156
+ upsertCandidate(run, candidate);
157
+ return candidate;
158
+ }
159
+ function requireCandidate(run, candidateId) {
160
+ const candidate = getCandidate(run, candidateId);
161
+ if (!candidate)
162
+ throw new Error(`Unknown candidate for run ${run.id}: ${candidateId}`);
163
+ return candidate;
164
+ }
165
+ function listCandidates(run, options = {}) {
166
+ ensureCandidateState(run);
167
+ const loaded = loadCandidatesFromDisk(run);
168
+ run.candidates = mergeCandidates(run.candidates || [], loaded);
169
+ return (run.candidates || []).filter((candidate) => {
170
+ if (options.status && candidate.status !== options.status)
171
+ return false;
172
+ if (options.kind && candidate.kind !== options.kind)
173
+ return false;
174
+ return true;
175
+ });
176
+ }
177
+ function candidateArtifacts(run, candidate) {
178
+ return [{ id: "candidate", kind: "json", path: candidateFile(run, candidate.id) }, ...candidate.artifacts];
179
+ }
180
+ function appendCandidateNode(run, candidate, stage, score) {
181
+ const parents = [candidate.resultNodeId, candidate.verifierNodeId].filter(Boolean);
182
+ const outputs = {};
183
+ if (candidate.status !== undefined)
184
+ outputs.status = candidate.status;
185
+ if (score?.id !== undefined)
186
+ outputs.scoreId = score.id;
187
+ if (score?.normalized !== undefined)
188
+ outputs.normalized = score.normalized;
189
+ if (score?.verdict !== undefined)
190
+ outputs.verdict = score.verdict;
191
+ const node = (0, node_store_1.appendRunNode)(run, (0, state_node_1.createStateNode)({
192
+ id: `${run.id}:candidate:${(0, fs_atomic_1.safeFileName)(candidate.id)}:${stage}`,
193
+ kind: "candidate",
194
+ status: candidate.status === "failed" ? "failed" : candidate.status === "verified" ? "verified" : "completed",
195
+ loopStage: stage === "registered" ? "observe" : "adjust",
196
+ inputs: { candidateId: candidate.id, workerId: candidate.workerId, taskId: candidate.taskId },
197
+ outputs,
198
+ artifacts: candidateArtifacts(run, candidate),
199
+ evidence: candidate.evidence,
200
+ parents,
201
+ metadata: { candidateId: candidate.id, stage, kind: candidate.kind },
202
+ }));
203
+ for (const parentId of parents) {
204
+ const parent = (run.nodes || []).find((candidateNode) => candidateNode.id === parentId);
205
+ if (!parent)
206
+ continue;
207
+ const linked = (0, state_node_1.linkStateNodes)(parent, node);
208
+ (0, node_store_1.appendRunNode)(run, linked[0]);
209
+ (0, node_store_1.appendRunNode)(run, linked[1]);
210
+ }
211
+ }
212
+ function appendSelectionNode(run, candidate, selection) {
213
+ const parentIds = [candidate.verifierNodeId, `${run.id}:candidate:${(0, fs_atomic_1.safeFileName)(candidate.id)}:scored`].filter(Boolean);
214
+ const node = (0, node_store_1.appendRunNode)(run, (0, state_node_1.createStateNode)({
215
+ id: `${run.id}:candidate:${(0, fs_atomic_1.safeFileName)(candidate.id)}:selection:${(0, fs_atomic_1.safeFileName)(selection.id)}`,
216
+ kind: "candidate",
217
+ status: candidate.status === "verified" ? "verified" : "completed",
218
+ loopStage: "adjust",
219
+ inputs: { candidateId: candidate.id, selectionId: selection.id },
220
+ outputs: selection,
221
+ artifacts: selection.artifacts,
222
+ evidence: selection.evidence,
223
+ parents: parentIds,
224
+ metadata: { candidateId: candidate.id, selectionId: selection.id, selected: true },
225
+ }));
226
+ for (const parentId of parentIds) {
227
+ const parent = (run.nodes || []).find((candidateNode) => candidateNode.id === parentId);
228
+ if (!parent)
229
+ continue;
230
+ const linked = (0, state_node_1.linkStateNodes)(parent, node);
231
+ (0, node_store_1.appendRunNode)(run, linked[0]);
232
+ (0, node_store_1.appendRunNode)(run, linked[1]);
233
+ }
234
+ }
235
+ function recordCandidateFailure(run, candidate, code, options) {
236
+ return (0, error_feedback_io_1.recordFeedback)(run, {
237
+ source: "verifier",
238
+ error: { code, message: options.message, at: now(), retryable: options.retryable, details: { ...(options.details || {}), candidateId: candidate.id, workerId: candidate.workerId, taskId: candidate.taskId } },
239
+ taskId: candidate.taskId,
240
+ retryable: options.retryable,
241
+ evidence: candidate.evidence,
242
+ artifacts: candidateArtifacts(run, candidate),
243
+ metadata: { candidateId: candidate.id, workerId: candidate.workerId, resultNodeId: candidate.resultNodeId },
244
+ }, { persist: false });
245
+ }
246
+ function artifactsFromInput(input) {
247
+ const artifacts = [];
248
+ if (input.resultPath)
249
+ artifacts.push({ id: "result", kind: "markdown", path: path.resolve(input.resultPath) });
250
+ return artifacts;
251
+ }
252
+ function evidenceFromInput(run, input) {
253
+ const resultNode = input.resultNodeId ? (run.nodes || []).find((node) => node.id === input.resultNodeId) : undefined;
254
+ const verifierNode = input.verifierNodeId ? (run.nodes || []).find((node) => node.id === input.verifierNodeId) : undefined;
255
+ return cs.mergeById(resultNode?.evidence || [], verifierNode?.evidence || []);
256
+ }
257
+ function registerCandidate(run, input, options = {}) {
258
+ ensureCandidateState(run);
259
+ const existing = input.id ? getCandidate(run, input.id) : undefined;
260
+ if (existing)
261
+ return existing;
262
+ const stamp = now();
263
+ const id = input.id || cs.createCandidateId((run.candidates || []).length, input.kind || "manual", input.workerId || input.taskId || input.resultNodeId);
264
+ const candidate = {
265
+ schemaVersion: cs.CANDIDATE_SCHEMA_VERSION,
266
+ id,
267
+ runId: run.id,
268
+ kind: input.kind || cs.inferCandidateKind(input),
269
+ status: "registered",
270
+ createdAt: stamp,
271
+ updatedAt: stamp,
272
+ workerId: input.workerId,
273
+ taskId: input.taskId,
274
+ resultNodeId: input.resultNodeId,
275
+ verifierNodeId: input.verifierNodeId,
276
+ resultPath: input.resultPath,
277
+ artifacts: input.artifacts || artifactsFromInput(input),
278
+ evidence: (0, trust_audit_1.normalizeEvidence)(run, input.evidence || evidenceFromInput(run, input), { source: input.workerId ? "cw-validated" : "operator-recorded", workerId: input.workerId, taskId: input.taskId, resultNodeId: input.resultNodeId, verifierNodeId: input.verifierNodeId, candidateId: id }),
279
+ scores: [],
280
+ feedbackIds: [],
281
+ metadata: compactMetadata(input.metadata || {}),
282
+ };
283
+ upsertCandidate(run, candidate);
284
+ (0, trust_audit_1.recordTrustAuditEvent)(run, { kind: "candidate.register", decision: "recorded", source: input.workerId ? "cw-validated" : "operator-recorded", workerId: input.workerId, taskId: input.taskId, nodeId: input.resultNodeId, candidateId: candidate.id, evidence: candidate.evidence, metadata: { kind: candidate.kind, verifierNodeId: candidate.verifierNodeId } });
285
+ appendCandidateNode(run, candidate, "registered");
286
+ if (options.persist !== false)
287
+ (0, run_store_1.saveCheckpoint)(run);
288
+ return candidate;
289
+ }
290
+ function compactMetadata(value) {
291
+ const entries = Object.entries(value).filter(([, entry]) => entry !== undefined);
292
+ return entries.length ? Object.fromEntries(entries) : undefined;
293
+ }
294
+ function scoreCandidate(run, candidateId, input, options = {}) {
295
+ const candidate = requireCandidate(run, candidateId);
296
+ const scoreId = input.id || cs.createScoreId(candidate);
297
+ const evidence = (0, trust_audit_1.normalizeEvidence)(run, input.evidence || [], { source: "operator-recorded", candidateId, scoreId });
298
+ const policy = cs.mergePolicy(options.policy);
299
+ if (policy.requireEvidence && !evidence.length) {
300
+ const feedback = recordCandidateFailure(run, candidate, "candidate-score-missing-evidence", { message: `Candidate ${candidateId} score requires evidence`, retryable: true });
301
+ upsertCandidate(run, { ...candidate, updatedAt: now(), status: "failed", feedbackIds: cs.unique([...(candidate.feedbackIds || []), feedback.id]) });
302
+ throw new Error(`Candidate ${candidateId} score requires evidence`);
303
+ }
304
+ const math = cs.computeScoreMath(input.criteria, input.maxTotal, policy, input.verdict);
305
+ const score = {
306
+ schemaVersion: cs.CANDIDATE_SCHEMA_VERSION,
307
+ id: scoreId,
308
+ candidateId,
309
+ runId: run.id,
310
+ createdAt: now(),
311
+ scorer: input.scorer || "operator",
312
+ criteria: input.criteria,
313
+ total: math.total,
314
+ maxTotal: math.maxTotal,
315
+ normalized: math.normalized,
316
+ verdict: math.verdict,
317
+ evidence,
318
+ artifacts: input.artifacts || [],
319
+ notes: input.notes,
320
+ metadata: compactMetadata(input.metadata || {}),
321
+ };
322
+ writeScoreFile(run, candidateId, score);
323
+ const updated = upsertCandidate(run, { ...candidate, updatedAt: now(), status: score.verdict === "fail" ? "failed" : "scored", scores: cs.unique([...(candidate.scores || []), score.id]), evidence: cs.mergeById(candidate.evidence, evidence), artifacts: cs.mergeById(candidate.artifacts, score.artifacts) });
324
+ const scoreAudit = (0, trust_audit_1.recordTrustAuditEvent)(run, { kind: "candidate.score", decision: score.verdict === "fail" ? "rejected" : "accepted", source: "operator-recorded", candidateId, scoreId: score.id, workerId: candidate.workerId, taskId: candidate.taskId, nodeId: candidate.verifierNodeId || candidate.resultNodeId, evidence: score.evidence, metadata: { criteria: score.criteria, normalized: score.normalized, verdict: score.verdict } });
325
+ score.evidence = (0, trust_audit_1.normalizeEvidence)(run, score.evidence, { source: "operator-recorded", candidateId, scoreId: score.id, auditEventIds: [scoreAudit.id] });
326
+ writeScoreFile(run, candidateId, score);
327
+ appendCandidateNode(run, updated, "scored", score);
328
+ writeCandidateIndex(run);
329
+ if (options.persist !== false)
330
+ (0, run_store_1.saveCheckpoint)(run);
331
+ return score;
332
+ }
333
+ function readScores(run, candidateId) {
334
+ const dir = path.join(candidateDir(run, candidateId), "scores");
335
+ if (!fs.existsSync(dir))
336
+ return [];
337
+ return fs
338
+ .readdirSync(dir)
339
+ .filter((file) => file.endsWith(".json"))
340
+ .sort()
341
+ .map((file) => (0, fs_atomic_1.readJson)(path.join(dir, file)));
342
+ }
343
+ function rankCandidates(run, options = {}) {
344
+ const policy = cs.mergePolicy(options.policy);
345
+ const rankable = listCandidates(run);
346
+ const ranking = cs.rankCandidateRows(run.id, now(), rankable, (id) => readScores(run, id), policy, Boolean(options.includeRejected));
347
+ (0, fs_atomic_1.writeJson)(rankingPath(run), ranking);
348
+ return ranking;
349
+ }
350
+ function sandboxProfileForCandidate(run, candidate) {
351
+ const worker = candidate?.workerId ? (run.workers || []).find((entry) => entry.id === candidate.workerId) : undefined;
352
+ if (worker?.sandboxProfileId)
353
+ return worker.sandboxProfileId;
354
+ const task = candidate?.taskId ? run.tasks.find((entry) => entry.id === candidate.taskId) : undefined;
355
+ return task?.sandboxProfileId;
356
+ }
357
+ function buildAcceptanceRationale(input) {
358
+ return {
359
+ schemaVersion: 1,
360
+ selectedCandidateId: input.selectedCandidateId,
361
+ scoreId: input.scoreId,
362
+ scoreCriteria: input.scoreCriteria,
363
+ verifierNodeId: input.verifierNodeId,
364
+ evidenceCount: input.evidenceCount || 0,
365
+ sandboxProfileId: input.sandboxProfileId,
366
+ workerId: input.workerId,
367
+ commitGateResult: input.commitGateResult,
368
+ auditEventIds: cs.unique(input.auditEventIds || []).sort(),
369
+ };
370
+ }
371
+ /** Whether the verifier node's backing result was an empty capture: walk
372
+ * from the verifier node id (`<runId>:verifier:<taskId>`) to the task
373
+ * and its recorded result envelope. */
374
+ function verifierIsEmptyCapture(run, verifierNodeId) {
375
+ if (!verifierNodeId)
376
+ return false;
377
+ const marker = ":verifier:";
378
+ const idx = verifierNodeId.indexOf(marker);
379
+ const taskId = idx >= 0 ? verifierNodeId.slice(idx + marker.length) : undefined;
380
+ const task = taskId ? run.tasks.find((t) => t.id === taskId) : undefined;
381
+ const result = task?.result;
382
+ return result ? (0, result_normalize_1.isEmptyCapture)(result) : false;
383
+ }
384
+ function selectCandidate(run, candidateId, options = {}, scoringOptions = {}) {
385
+ const candidate = requireCandidate(run, candidateId);
386
+ const policy = cs.mergePolicy(scoringOptions.policy);
387
+ const ranking = rankCandidates(run, { policy });
388
+ const ranked = ranking.candidates.find((entry) => entry.candidateId === candidateId);
389
+ const verifierNode = candidate.verifierNodeId ? (run.nodes || []).find((node) => node.id === candidate.verifierNodeId) : undefined;
390
+ const bestScoreRecord = options.scoreId ? readScores(run, candidateId).find((score) => score.id === options.scoreId) : readScores(run, candidateId).find((score) => score.id === ranked?.bestScoreId);
391
+ const failures = cs.selectionGateFailures({
392
+ candidateId,
393
+ candidateStatus: candidate.status,
394
+ policy,
395
+ allowUnverified: options.allowUnverified,
396
+ verifierNode,
397
+ verifierNodeIsEmptyCapture: verifierNode ? verifierIsEmptyCapture(run, candidate.verifierNodeId) : false,
398
+ bestScoreNormalized: bestScoreRecord?.normalized,
399
+ }, now());
400
+ // REVIEW GATE — layered on top, never replacing the verifier failures above.
401
+ const collaborationState = (0, collaboration_io_1.ensureCollaborationState)(run);
402
+ const approvals = (collaborationState.approvals || []);
403
+ const reviewPolicy = collaborationState.policy;
404
+ const selfIds = (0, collaboration_1.selfActorIdsForCandidate)(candidate.workerId, (run.candidateSelections || []).filter((s) => s.candidateId === candidateId).map((s) => s.selectedBy).filter((x) => Boolean(x)));
405
+ for (const reviewError of (0, collaboration_1.reviewGateErrors)(run.id, approvals, { targetKind: "selection", candidateId, selfActorIds: selfIds, policy: reviewPolicy }, now())) {
406
+ failures.push(reviewError);
407
+ }
408
+ if (failures.length) {
409
+ const feedbackIds = failures.map((failure) => recordCandidateFailure(run, candidate, failure.code, { message: failure.message, retryable: false, details: failure.details }).id);
410
+ upsertCandidate(run, { ...candidate, updatedAt: now(), status: "failed", feedbackIds: cs.unique([...(candidate.feedbackIds || []), ...feedbackIds]) });
411
+ if (scoringOptions.persist !== false)
412
+ (0, run_store_1.saveCheckpoint)(run);
413
+ throw new Error(failures.map((failure) => failure.message).join("; "));
414
+ }
415
+ const stamp = now();
416
+ const selectionId = cs.createSelectionId((run.candidateSelections || []).length, candidateId);
417
+ const evidence = (0, trust_audit_1.normalizeEvidence)(run, cs.mergeEvidence(candidate.evidence, verifierNode?.evidence || []), { source: "cw-validated", workerId: candidate.workerId, taskId: candidate.taskId, resultNodeId: candidate.resultNodeId, verifierNodeId: candidate.verifierNodeId, candidateId, scoreId: bestScoreRecord?.id });
418
+ const selection = {
419
+ schemaVersion: cs.CANDIDATE_SCHEMA_VERSION,
420
+ id: selectionId,
421
+ runId: run.id,
422
+ candidateId,
423
+ selectedAt: stamp,
424
+ selectedBy: options.selectedBy || "operator",
425
+ verifierNodeId: candidate.verifierNodeId,
426
+ scoreId: bestScoreRecord?.id,
427
+ rankingPath: options.rankingPath || rankingPath(run),
428
+ reason: options.reason || "selected candidate",
429
+ evidence,
430
+ artifacts: candidate.artifacts,
431
+ feedbackIds: [],
432
+ acceptanceRationale: buildAcceptanceRationale({ selectedCandidateId: candidateId, scoreId: bestScoreRecord?.id, scoreCriteria: bestScoreRecord?.criteria, verifierNodeId: candidate.verifierNodeId, evidenceCount: evidence.length, sandboxProfileId: sandboxProfileForCandidate(run, candidate), workerId: candidate.workerId, commitGateResult: "passed" }),
433
+ metadata: compactMetadata({ ...(options.metadata || {}), rank: ranked?.rank, normalized: bestScoreRecord?.normalized }),
434
+ };
435
+ const selectionAudit = (0, trust_audit_1.recordTrustAuditEvent)(run, { kind: "candidate.selection", decision: "accepted", source: "cw-validated", workerId: candidate.workerId, taskId: candidate.taskId, nodeId: candidate.verifierNodeId, candidateId, scoreId: bestScoreRecord?.id, selectionId: selection.id, sandboxProfileId: selection.acceptanceRationale?.sandboxProfileId, evidence: selection.evidence, metadata: selection.acceptanceRationale });
436
+ selection.evidence = (0, trust_audit_1.normalizeEvidence)(run, selection.evidence, { source: "cw-validated", workerId: candidate.workerId, taskId: candidate.taskId, resultNodeId: candidate.resultNodeId, verifierNodeId: candidate.verifierNodeId, candidateId, scoreId: bestScoreRecord?.id, selectionId: selection.id, auditEventIds: [selectionAudit.id] });
437
+ selection.acceptanceRationale = buildAcceptanceRationale({ ...selection.acceptanceRationale, auditEventIds: [selectionAudit.id] });
438
+ run.candidateSelections = [...(run.candidateSelections || []), selection];
439
+ writeSelectionFile(run, selection);
440
+ const updated = upsertCandidate(run, { ...candidate, updatedAt: stamp, status: verifierNode?.status === "verified" ? "verified" : "selected", selectedAt: stamp, evidence: selection.evidence });
441
+ appendSelectionNode(run, updated, selection);
442
+ writeCandidateIndex(run);
443
+ if (scoringOptions.persist !== false)
444
+ (0, run_store_1.saveCheckpoint)(run);
445
+ return selection;
446
+ }
447
+ function rejectCandidate(run, candidateId, reason, options = {}) {
448
+ const candidate = requireCandidate(run, candidateId);
449
+ const feedback = recordCandidateFailure(run, candidate, "candidate-rejected", { message: reason || `Candidate ${candidateId} rejected`, retryable: false });
450
+ const updated = upsertCandidate(run, { ...candidate, updatedAt: now(), status: "rejected", rejectedAt: now(), feedbackIds: cs.unique([...(candidate.feedbackIds || []), feedback.id]) });
451
+ appendCandidateNode(run, updated, "rejected");
452
+ if (options.persist !== false)
453
+ (0, run_store_1.saveCheckpoint)(run);
454
+ return updated;
455
+ }
456
+ function summarizeCandidates(run) {
457
+ const candidates = listCandidates(run);
458
+ return { total: candidates.length, byStatus: cs.countBy(candidates, (candidate) => candidate.status), byKind: cs.countBy(candidates, (candidate) => candidate.kind), indexPath: indexPath(run), rankingPath: rankingPath(run), selections: (run.candidateSelections || []).length };
459
+ }