cool-workflow 0.1.98 → 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 (306) 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} +2 -2
  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 +2 -0
  139. package/docs/cli-mcp-parity.7.md +280 -219
  140. package/docs/contract-migration-tooling.7.md +2 -0
  141. package/docs/control-plane-scheduling.7.md +2 -0
  142. package/docs/durable-state-and-locking.7.md +2 -0
  143. package/docs/evidence-adoption-reasoning-chain.7.md +2 -0
  144. package/docs/execution-backends.7.md +2 -0
  145. package/docs/multi-agent-cli-mcp-surface.7.md +2 -0
  146. package/docs/multi-agent-eval-replay-harness.7.md +2 -0
  147. package/docs/multi-agent-operator-ux.7.md +2 -0
  148. package/docs/node-snapshot-diff-replay.7.md +2 -0
  149. package/docs/observability-cost-accounting.7.md +2 -0
  150. package/docs/project-index.md +132 -71
  151. package/docs/real-execution-backends.7.md +2 -0
  152. package/docs/release-and-migration.7.md +2 -0
  153. package/docs/release-tooling.7.md +2 -0
  154. package/docs/run-registry-control-plane.7.md +2 -0
  155. package/docs/run-retention-reclamation.7.md +23 -0
  156. package/docs/state-explosion-management.7.md +2 -0
  157. package/docs/team-collaboration.7.md +2 -0
  158. package/docs/web-desktop-workbench.7.md +2 -0
  159. package/manifest/plugin.manifest.json +1 -1
  160. package/manifest/source-context-profiles.json +9 -13
  161. package/package.json +1 -1
  162. package/scripts/agents/cw-attest-wrap.js +2 -2
  163. package/scripts/bump-version.js +4 -3
  164. package/scripts/canonical-apps.js +4 -4
  165. package/scripts/dogfood-architecture-review.js +2 -3
  166. package/scripts/dogfood-release.js +3 -3
  167. package/scripts/gen-parity-doc.js +15 -2
  168. package/scripts/golden-path.js +4 -4
  169. package/scripts/onramp-check.js +1 -1
  170. package/scripts/parity-check.js +38 -21
  171. package/scripts/release-flow.js +2 -2
  172. package/scripts/sync-project-index.js +51 -27
  173. package/scripts/validate-run-state-schema.js +2 -2
  174. package/scripts/version-sync-check.js +30 -30
  175. package/dist/candidate-scoring.js +0 -729
  176. package/dist/capability-core.js +0 -1189
  177. package/dist/capability-registry.js +0 -885
  178. package/dist/cli/command-surface.js +0 -494
  179. package/dist/cli/format.js +0 -56
  180. package/dist/cli/handlers/audit.js +0 -82
  181. package/dist/cli/handlers/blackboard.js +0 -81
  182. package/dist/cli/handlers/candidate.js +0 -40
  183. package/dist/cli/handlers/clones.js +0 -34
  184. package/dist/cli/handlers/collaboration.js +0 -61
  185. package/dist/cli/handlers/eval.js +0 -40
  186. package/dist/cli/handlers/ledger.js +0 -169
  187. package/dist/cli/handlers/maintenance.js +0 -107
  188. package/dist/cli/handlers/multi-agent.js +0 -165
  189. package/dist/cli/handlers/node.js +0 -41
  190. package/dist/cli/handlers/operational.js +0 -155
  191. package/dist/cli/handlers/operator.js +0 -146
  192. package/dist/cli/handlers/registry.js +0 -68
  193. package/dist/cli/handlers/run.js +0 -153
  194. package/dist/cli/handlers/scheduling.js +0 -132
  195. package/dist/cli/handlers/workbench.js +0 -41
  196. package/dist/cli/handlers/worker.js +0 -45
  197. package/dist/cli/run-summary.js +0 -45
  198. package/dist/clones.js +0 -162
  199. package/dist/collaboration.js +0 -726
  200. package/dist/commit.js +0 -592
  201. package/dist/compare.js +0 -18
  202. package/dist/coordinator/classify.js +0 -45
  203. package/dist/coordinator/paths.js +0 -42
  204. package/dist/coordinator/util.js +0 -126
  205. package/dist/coordinator.js +0 -990
  206. package/dist/daemon.js +0 -44
  207. package/dist/dispatch.js +0 -250
  208. package/dist/drive.js +0 -864
  209. package/dist/error-feedback.js +0 -419
  210. package/dist/evidence-grounding.js +0 -184
  211. package/dist/execution-backend/agent.js +0 -354
  212. package/dist/execution-backend/probes.js +0 -112
  213. package/dist/execution-backend/util.js +0 -47
  214. package/dist/execution-backend.js +0 -961
  215. package/dist/gates.js +0 -48
  216. package/dist/harness.js +0 -61
  217. package/dist/ledger.js +0 -313
  218. package/dist/loop-expansion.js +0 -60
  219. package/dist/mcp/tool-call.js +0 -470
  220. package/dist/mcp/tool-definitions.js +0 -1066
  221. package/dist/mcp-surface.js +0 -30
  222. package/dist/multi-agent/graph.js +0 -84
  223. package/dist/multi-agent/helpers.js +0 -141
  224. package/dist/multi-agent/ids.js +0 -20
  225. package/dist/multi-agent/paths.js +0 -22
  226. package/dist/multi-agent-eval/normalize.js +0 -51
  227. package/dist/multi-agent-eval.js +0 -678
  228. package/dist/multi-agent-host.js +0 -777
  229. package/dist/multi-agent.js +0 -984
  230. package/dist/node-projection.js +0 -59
  231. package/dist/node-snapshot.js +0 -260
  232. package/dist/operator-ux.js +0 -631
  233. package/dist/orchestrator/app-operations.js +0 -211
  234. package/dist/orchestrator/audit-operations.js +0 -182
  235. package/dist/orchestrator/candidate-operations.js +0 -117
  236. package/dist/orchestrator/cli-options.js +0 -294
  237. package/dist/orchestrator/collaboration-operations.js +0 -86
  238. package/dist/orchestrator/feedback-operations.js +0 -81
  239. package/dist/orchestrator/host-operations.js +0 -78
  240. package/dist/orchestrator/lifecycle-operations.js +0 -650
  241. package/dist/orchestrator/migration-operations.js +0 -44
  242. package/dist/orchestrator/multi-agent-operations.js +0 -362
  243. package/dist/orchestrator/topology-operations.js +0 -84
  244. package/dist/orchestrator.js +0 -925
  245. package/dist/pipeline-runner.js +0 -285
  246. package/dist/reclamation/hash.js +0 -72
  247. package/dist/reclamation.js +0 -812
  248. package/dist/reporter.js +0 -67
  249. package/dist/run-export.js +0 -815
  250. package/dist/run-registry/derive.js +0 -175
  251. package/dist/run-registry/format.js +0 -124
  252. package/dist/run-registry/gc.js +0 -251
  253. package/dist/run-registry/policy.js +0 -16
  254. package/dist/run-registry/queue.js +0 -115
  255. package/dist/run-registry.js +0 -850
  256. package/dist/run-state-schema.js +0 -68
  257. package/dist/scheduling.js +0 -184
  258. package/dist/state-explosion.js +0 -1014
  259. package/dist/state.js +0 -367
  260. package/dist/telemetry-ledger.js +0 -196
  261. package/dist/topology.js +0 -565
  262. package/dist/triggers.js +0 -184
  263. package/dist/trust-audit.js +0 -644
  264. package/dist/types/blackboard.js +0 -2
  265. package/dist/types/candidate.js +0 -2
  266. package/dist/types/collaboration.js +0 -2
  267. package/dist/types/core.js +0 -2
  268. package/dist/types/drive.js +0 -10
  269. package/dist/types/error-feedback.js +0 -2
  270. package/dist/types/evidence-reasoning.js +0 -2
  271. package/dist/types/execution-backend.js +0 -2
  272. package/dist/types/multi-agent.js +0 -2
  273. package/dist/types/observability.js +0 -2
  274. package/dist/types/pipeline.js +0 -2
  275. package/dist/types/reclamation.js +0 -8
  276. package/dist/types/report-bundle.js +0 -6
  277. package/dist/types/result.js +0 -2
  278. package/dist/types/run-registry.js +0 -2
  279. package/dist/types/run.js +0 -2
  280. package/dist/types/sandbox.js +0 -2
  281. package/dist/types/schedule.js +0 -2
  282. package/dist/types/state-node.js +0 -2
  283. package/dist/types/topology.js +0 -2
  284. package/dist/types/trust.js +0 -2
  285. package/dist/types/workbench.js +0 -2
  286. package/dist/types/worker.js +0 -2
  287. package/dist/types/workflow-app.js +0 -2
  288. package/dist/types.js +0 -44
  289. package/dist/util/fingerprint.js +0 -19
  290. package/dist/util/fingerprint.test.js +0 -27
  291. package/dist/verifier.js +0 -78
  292. package/dist/version.js +0 -8
  293. package/dist/workbench-host.js +0 -192
  294. package/dist/workbench.js +0 -192
  295. package/dist/worker-accept/acceptance.js +0 -114
  296. package/dist/worker-accept/blackboard-fanout.js +0 -80
  297. package/dist/worker-accept/blackboard-linkage.js +0 -19
  298. package/dist/worker-accept/context.js +0 -2
  299. package/dist/worker-accept/telemetry-ledger.js +0 -126
  300. package/dist/worker-accept/validation.js +0 -77
  301. package/dist/worker-accept/verifier-completion.js +0 -73
  302. package/dist/worker-isolation/helpers.js +0 -51
  303. package/dist/worker-isolation/paths.js +0 -46
  304. package/dist/worker-isolation.js +0 -656
  305. package/dist/workflow-api.js +0 -131
  306. /package/dist/{types → core/types}/boundary.js +0 -0
@@ -1,30 +1,75 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
2
+ // shell/scheduler-io.ts Scheduler (cw schedule/loop), the daemon tick
3
+ // (cw schedule daemon), and routine triggers (cw routine).
4
+ //
5
+ // MILESTONE 10 (v2/PLAN.md build order, step 10). Byte-exact port of the
6
+ // old build's src/scheduler.ts + src/daemon.ts + src/triggers.ts. Reuses
7
+ // shell/fs-atomic.ts's `withFileLock`/`readJson`/`writeJson`/`safeFileName`
8
+ // directly (no reimplementation).
9
+ //
10
+ // Two separate systems, never merged (SPEC/scheduling-registry.md
11
+ // "Rebuild risks" #4): `Scheduler`/`DesktopSchedulerDaemon`/
12
+ // `RoutineTriggerBridge` here are WALL-CLOCK tasks under
13
+ // `<cwd>/.cw/schedules/` and `<cwd>/.cw/routines/`; `cw sched` (leases
14
+ // over `$CW_HOME/registry/queue.json`) is a completely different system
15
+ // — see shell/scheduling-io.ts. `cw loop` is only sugar for
16
+ // `schedule create --kind loop`.
17
+ //
18
+ // Evidence: SPEC/scheduling-registry.md sections A, B;
19
+ // plugins/cool-workflow/src/scheduler.ts, src/daemon.ts, src/triggers.ts
20
+ // (byte-exact source).
21
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ var desc = Object.getOwnPropertyDescriptor(m, k);
24
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
25
+ desc = { enumerable: true, get: function() { return m[k]; } };
26
+ }
27
+ Object.defineProperty(o, k2, desc);
28
+ }) : (function(o, m, k, k2) {
29
+ if (k2 === undefined) k2 = k;
30
+ o[k2] = m[k];
31
+ }));
32
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
33
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
34
+ }) : function(o, v) {
35
+ o["default"] = v;
36
+ });
37
+ var __importStar = (this && this.__importStar) || (function () {
38
+ var ownKeys = function(o) {
39
+ ownKeys = Object.getOwnPropertyNames || function (o) {
40
+ var ar = [];
41
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
42
+ return ar;
43
+ };
44
+ return ownKeys(o);
45
+ };
46
+ return function (mod) {
47
+ if (mod && mod.__esModule) return mod;
48
+ var result = {};
49
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
50
+ __setModuleDefault(result, mod);
51
+ return result;
52
+ };
53
+ })();
5
54
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.Scheduler = void 0;
7
- const node_crypto_1 = __importDefault(require("node:crypto"));
8
- const node_fs_1 = __importDefault(require("node:fs"));
9
- const node_path_1 = __importDefault(require("node:path"));
10
- const state_1 = require("./state");
55
+ exports.RoutineTriggerBridge = exports.DesktopSchedulerDaemon = exports.Scheduler = void 0;
56
+ const crypto = __importStar(require("node:crypto"));
57
+ const fs = __importStar(require("node:fs"));
58
+ const path = __importStar(require("node:path"));
59
+ const fs_atomic_1 = require("./fs-atomic");
11
60
  const DEFAULT_TTL_DAYS = 7;
61
+ // ---------------------------------------------------------------------------
62
+ // Scheduler — cw schedule / cw loop
63
+ // ---------------------------------------------------------------------------
12
64
  class Scheduler {
13
65
  cwd;
14
66
  storePath;
15
67
  constructor(cwd = process.cwd()) {
16
- this.cwd = node_path_1.default.resolve(cwd);
17
- this.storePath = node_path_1.default.join(this.cwd, ".cw", "schedules", "tasks.json");
18
- }
19
- // Every mutation is a cross-process read-modify-write of the one store file
20
- // (the daemon polls `due` while CLI calls create/complete/delete concurrently).
21
- // Without serialization two writers both load, both atomically rename their
22
- // copy back, and the second silently clobbers the first's new task / status /
23
- // history record. `locked` holds the same advisory lock the queue and
24
- // reclamation stores already use. Reads (list/history) need no lock: the atomic
25
- // rename means a reader always sees a whole old-or-new store.
68
+ this.cwd = path.resolve(cwd);
69
+ this.storePath = path.join(this.cwd, ".cw", "schedules", "tasks.json");
70
+ }
26
71
  locked(fn) {
27
- return (0, state_1.withFileLock)(this.storePath, fn);
72
+ return (0, fs_atomic_1.withFileLock)(this.storePath, fn);
28
73
  }
29
74
  create(options) {
30
75
  const kind = normalizeKind(options.kind);
@@ -51,7 +96,7 @@ class Scheduler {
51
96
  cron,
52
97
  jitterSeconds,
53
98
  maxRuns: numberOption(options.maxRuns),
54
- runCount: 0
99
+ runCount: 0,
55
100
  };
56
101
  return this.locked(() => {
57
102
  const store = this.load();
@@ -171,19 +216,17 @@ class Scheduler {
171
216
  });
172
217
  }
173
218
  load() {
174
- if (!node_fs_1.default.existsSync(this.storePath))
219
+ if (!fs.existsSync(this.storePath))
175
220
  return { schemaVersion: 1, tasks: [], history: [] };
176
- const value = (0, state_1.readJson)(this.storePath);
221
+ const value = (0, fs_atomic_1.readJson)(this.storePath);
177
222
  return {
178
223
  schemaVersion: 1,
179
224
  tasks: Array.isArray(value.tasks) ? value.tasks : [],
180
- history: Array.isArray(value.history) ? value.history : []
225
+ history: Array.isArray(value.history) ? value.history : [],
181
226
  };
182
227
  }
183
228
  save(store) {
184
- // Authoritative scheduler store atomic + durable (v0.1.40). writeJson is now
185
- // always atomic (temp → rename), so a crash mid-write can never truncate it.
186
- (0, state_1.writeJson)(this.storePath, store, { durable: true });
229
+ (0, fs_atomic_1.writeJson)(this.storePath, store, { durable: true });
187
230
  }
188
231
  }
189
232
  exports.Scheduler = Scheduler;
@@ -203,7 +246,7 @@ function createHistoryRecord(task, status, cwd, now) {
203
246
  prompt: task.prompt,
204
247
  cwd,
205
248
  workflowId: task.workflowId,
206
- runId: task.runId
249
+ runId: task.runId,
207
250
  };
208
251
  }
209
252
  function normalizeKind(value) {
@@ -259,47 +302,38 @@ function matchesCron(value, expr, min, max) {
259
302
  return Number.isInteger(parsed) && parsed >= min && parsed <= max && parsed === value;
260
303
  });
261
304
  }
262
- // Deterministic jitter (replay-determinism self-audit): the jittered Date is NOT a
263
- // runtime-only sleep it lands in persisted/replayed state (task.nextRunAt and,
264
- // transitively, the schedule store), so a Math.random() offset broke replay
265
- // determinism. The spread (0..jitterSeconds) is now derived from a content hash of
266
- // the base instant, so the same base time + jitter window always yields the same
267
- // offset; distinct base times still spread out across the window. The base Date is
268
- // itself an edge timestamp that is recorded once.
305
+ /** Deterministic jitter: `sha256(baseMs) mod (jitterSeconds+1)` seconds
306
+ * a pure function of the base time, no randomness, so it stays replay-
307
+ * determinstic even though it lands in persisted state. */
269
308
  function addJitter(date, jitterSeconds) {
270
309
  if (!jitterSeconds)
271
310
  return date;
272
- const digest = node_crypto_1.default.createHash("sha256").update(`${date.getTime()}`).digest();
311
+ const digest = crypto.createHash("sha256").update(`${date.getTime()}`).digest();
273
312
  const seconds = digest.readUInt32BE(0) % (jitterSeconds + 1);
274
313
  return new Date(date.getTime() + seconds * 1000);
275
314
  }
276
- // Deterministic schedule id (replay-determinism self-audit): the stamp is an edge
277
- // timestamp (recorded once). Set CW_DETERMINISTIC_RUN_IDS=1 to use a
278
- // content-hash-based id without wall-clock, so re-deriving the id for a recorded
279
- // schedule yields the byte-identical value. Distinct instants still get distinct
280
- // ids via the monotonic counter.
281
315
  let scheduleIdSequence = 0;
282
316
  function createScheduleId(kind) {
283
317
  const stamp = new Date().toISOString().replace(/[-:]/g, "").replace(/\..+/, "Z");
284
318
  scheduleIdSequence += 1;
285
319
  const deterministic = /^(1|true|yes|on)$/i.test(process.env.CW_DETERMINISTIC_RUN_IDS || "");
286
- const suffix = node_crypto_1.default.createHash("sha256")
320
+ const suffix = crypto
321
+ .createHash("sha256")
287
322
  .update(deterministic ? `${kind}:${process.pid}:${scheduleIdSequence}` : `${kind}:${stamp}:${process.pid}:${scheduleIdSequence}`)
288
- .digest("hex").slice(0, 6);
323
+ .digest("hex")
324
+ .slice(0, 6);
289
325
  return deterministic ? `${kind}-${suffix}` : `${kind}-${stamp}-${suffix}`;
290
326
  }
291
- // Deterministic schedule-run (history) id — same rationale as createScheduleId. The
292
- // history record stamp differs from the owning schedule's, so the hashed identity
293
- // (kind + run stamp) stays distinct from the schedule id while remaining a pure
294
- // function of already-recorded state.
295
327
  let scheduleRunIdSequence = 0;
296
328
  function createScheduleRunId(kind) {
297
329
  const stamp = new Date().toISOString().replace(/[-:]/g, "").replace(/\..+/, "Z");
298
330
  scheduleRunIdSequence += 1;
299
331
  const deterministic = /^(1|true|yes|on)$/i.test(process.env.CW_DETERMINISTIC_RUN_IDS || "");
300
- const suffix = node_crypto_1.default.createHash("sha256")
332
+ const suffix = crypto
333
+ .createHash("sha256")
301
334
  .update(deterministic ? `run:${kind}:${process.pid}:${scheduleRunIdSequence}` : `run:${kind}:${stamp}:${process.pid}:${scheduleRunIdSequence}`)
302
- .digest("hex").slice(0, 6);
335
+ .digest("hex")
336
+ .slice(0, 6);
303
337
  return deterministic ? `run-${kind}-${suffix}` : `run-${kind}-${stamp}-${suffix}`;
304
338
  }
305
339
  function requiredString(value, name) {
@@ -319,3 +353,169 @@ function numberOption(value) {
319
353
  const parsed = Number(value);
320
354
  return Number.isFinite(parsed) ? parsed : undefined;
321
355
  }
356
+ class DesktopSchedulerDaemon {
357
+ cwd;
358
+ intervalSeconds;
359
+ scheduler;
360
+ constructor(options = {}) {
361
+ this.cwd = path.resolve(String(options.cwd || process.cwd()));
362
+ this.intervalSeconds = Number(options.intervalSeconds || 60);
363
+ this.scheduler = new Scheduler(this.cwd);
364
+ }
365
+ tick() {
366
+ const due = this.scheduler.due();
367
+ const checkedAt = new Date().toISOString();
368
+ const inboxPath = path.join(this.cwd, ".cw", "schedules", "due-inbox.json");
369
+ (0, fs_atomic_1.writeJson)(inboxPath, { schemaVersion: 1, checkedAt, due });
370
+ return { checkedAt, dueCount: due.length, dueIds: due.map((task) => task.id), inboxPath };
371
+ }
372
+ async run() {
373
+ fs.mkdirSync(path.join(this.cwd, ".cw", "schedules"), { recursive: true });
374
+ process.stdout.write(`${JSON.stringify(this.tick())}\n`);
375
+ setInterval(() => {
376
+ process.stdout.write(`${JSON.stringify(this.tick())}\n`);
377
+ }, Math.max(1, this.intervalSeconds) * 1000);
378
+ }
379
+ }
380
+ exports.DesktopSchedulerDaemon = DesktopSchedulerDaemon;
381
+ class RoutineTriggerBridge {
382
+ cwd;
383
+ storePath;
384
+ payloadsDir;
385
+ constructor(cwd = process.cwd()) {
386
+ this.cwd = path.resolve(cwd);
387
+ this.storePath = path.join(this.cwd, ".cw", "routines", "triggers.json");
388
+ this.payloadsDir = path.join(this.cwd, ".cw", "routines", "payloads");
389
+ }
390
+ create(options) {
391
+ const now = new Date().toISOString();
392
+ const store = this.load();
393
+ // Monotonic id, NOT triggers.length: delete shrinks the collection, so
394
+ // a length-based seq would reuse a live id after delete+create.
395
+ const seq = (store.nextTriggerSeq || 0) + 1;
396
+ store.nextTriggerSeq = seq;
397
+ const trigger = {
398
+ id: createTriggerId(normalizeTriggerKind(options.kind), seq),
399
+ kind: normalizeTriggerKind(options.kind),
400
+ createdAt: now,
401
+ updatedAt: now,
402
+ source: String(options.source || options.kind || "api"),
403
+ prompt: requiredString(options.prompt, "prompt"),
404
+ workflowId: stringOption(options.workflowId),
405
+ runId: stringOption(options.runId),
406
+ match: parseJsonObject(options.match),
407
+ metadata: parseJsonObject(options.metadata),
408
+ };
409
+ store.triggers.push(trigger);
410
+ this.save(store);
411
+ return trigger;
412
+ }
413
+ list(kind) {
414
+ const store = this.load();
415
+ return kind ? store.triggers.filter((trigger) => trigger.kind === kind) : store.triggers;
416
+ }
417
+ delete(id) {
418
+ const store = this.load();
419
+ const before = store.triggers.length;
420
+ store.triggers = store.triggers.filter((trigger) => trigger.id !== id);
421
+ this.save(store);
422
+ return { deleted: store.triggers.length !== before, id };
423
+ }
424
+ fire(kind, payload) {
425
+ const normalizedKind = normalizeTriggerKind(kind);
426
+ const store = this.load();
427
+ const now = new Date().toISOString();
428
+ const base = store.events.length;
429
+ const events = store.triggers
430
+ .filter((trigger) => trigger.kind === normalizedKind)
431
+ .map((trigger, index) => this.createEvent(trigger, payload, now, base + index + 1));
432
+ store.events.push(...events);
433
+ this.save(store);
434
+ return events;
435
+ }
436
+ events(triggerId) {
437
+ const store = this.load();
438
+ return triggerId ? store.events.filter((event) => event.triggerId === triggerId) : store.events;
439
+ }
440
+ createEvent(trigger, payload, receivedAt, seq) {
441
+ const matched = matchesTrigger(trigger.match, payload);
442
+ const eventId = createEventId(trigger.kind, seq);
443
+ const payloadPath = path.join(this.payloadsDir, `${(0, fs_atomic_1.safeFileName)(eventId)}.json`);
444
+ (0, fs_atomic_1.writeJson)(payloadPath, { schemaVersion: 1, trigger, receivedAt, matched, payload });
445
+ return {
446
+ id: eventId,
447
+ triggerId: trigger.id,
448
+ kind: trigger.kind,
449
+ receivedAt,
450
+ matched,
451
+ prompt: matched ? renderPrompt(trigger, payload) : undefined,
452
+ payloadPath,
453
+ };
454
+ }
455
+ load() {
456
+ if (!fs.existsSync(this.storePath))
457
+ return { schemaVersion: 1, triggers: [], events: [], nextTriggerSeq: 0 };
458
+ const value = (0, fs_atomic_1.readJson)(this.storePath);
459
+ const triggers = Array.isArray(value.triggers) ? value.triggers : [];
460
+ const maxExisting = triggers.reduce((max, trigger) => {
461
+ const n = Number((String(trigger.id).match(/(\d+)$/) || [])[1] || 0);
462
+ return Number.isFinite(n) && n > max ? n : max;
463
+ }, 0);
464
+ return {
465
+ schemaVersion: 1,
466
+ triggers,
467
+ events: Array.isArray(value.events) ? value.events : [],
468
+ nextTriggerSeq: Math.max(typeof value.nextTriggerSeq === "number" ? value.nextTriggerSeq : 0, maxExisting),
469
+ };
470
+ }
471
+ save(store) {
472
+ (0, fs_atomic_1.writeJson)(this.storePath, store);
473
+ }
474
+ }
475
+ exports.RoutineTriggerBridge = RoutineTriggerBridge;
476
+ function normalizeTriggerKind(value) {
477
+ const kind = String(value || "api");
478
+ if (kind === "api" || kind === "github")
479
+ return kind;
480
+ throw new Error(`Unsupported routine trigger kind: ${kind}`);
481
+ }
482
+ function matchesTrigger(match, payload) {
483
+ if (!match || !Object.keys(match).length)
484
+ return true;
485
+ if (!payload || typeof payload !== "object")
486
+ return false;
487
+ return Object.entries(match).every(([key, expected]) => deepValue(payload, key) === expected);
488
+ }
489
+ function deepValue(value, key) {
490
+ return key.split(".").reduce((current, part) => {
491
+ if (!current || typeof current !== "object")
492
+ return undefined;
493
+ return current[part];
494
+ }, value);
495
+ }
496
+ function renderPrompt(trigger, payload) {
497
+ return `${trigger.prompt}\n\ncw:routine\n${JSON.stringify({ triggerId: trigger.id, kind: trigger.kind, source: trigger.source, workflowId: trigger.workflowId, runId: trigger.runId, payload }, null, 2)}`;
498
+ }
499
+ function parseJsonObject(value) {
500
+ if (!value || value === true)
501
+ return undefined;
502
+ if (typeof value === "object")
503
+ return value;
504
+ let parsed;
505
+ try {
506
+ parsed = JSON.parse(String(value));
507
+ }
508
+ catch {
509
+ throw new Error("Expected a JSON object, got invalid JSON");
510
+ }
511
+ if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {
512
+ throw new Error("Expected JSON object");
513
+ }
514
+ return parsed;
515
+ }
516
+ function createTriggerId(kind, seq) {
517
+ return `${kind}-${String(seq).padStart(4, "0")}`;
518
+ }
519
+ function createEventId(kind, seq) {
520
+ return `event-${kind}-${String(seq).padStart(4, "0")}`;
521
+ }
@@ -0,0 +1,311 @@
1
+ "use strict";
2
+ // shell/scheduling-io.ts — Control-Plane Scheduling (`cw sched`): pure
3
+ // lease-plan mechanism over the run-registry-io.ts queue store, plus the
4
+ // policy file IO.
5
+ //
6
+ // MILESTONE 10 (v2/PLAN.md build order, step 10). Byte-exact port of the
7
+ // old build's src/scheduling.ts + the sched-specific slice of
8
+ // src/capability-core.ts. `sched` is a DIFFERENT system from `schedule`
9
+ // (see scheduler-io.ts's file header) — this operates on
10
+ // `$CW_HOME/registry/queue.json` leases, not wall-clock tasks.
11
+ //
12
+ // Evidence: SPEC/scheduling-registry.md section D;
13
+ // plugins/cool-workflow/src/scheduling.ts (byte-exact source).
14
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15
+ if (k2 === undefined) k2 = k;
16
+ var desc = Object.getOwnPropertyDescriptor(m, k);
17
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
18
+ desc = { enumerable: true, get: function() { return m[k]; } };
19
+ }
20
+ Object.defineProperty(o, k2, desc);
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || (function () {
31
+ var ownKeys = function(o) {
32
+ ownKeys = Object.getOwnPropertyNames || function (o) {
33
+ var ar = [];
34
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
35
+ return ar;
36
+ };
37
+ return ownKeys(o);
38
+ };
39
+ return function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
43
+ __setModuleDefault(result, mod);
44
+ return result;
45
+ };
46
+ })();
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ exports.DEFAULT_SCHEDULING_POLICY = exports.SCHEDULING_SCHEMA_VERSION = void 0;
49
+ exports.normalizeSchedulingPolicy = normalizeSchedulingPolicy;
50
+ exports.backoffMs = backoffMs;
51
+ exports.planSchedule = planSchedule;
52
+ exports.applyLease = applyLease;
53
+ exports.retryOrPark = retryOrPark;
54
+ exports.reclaimExpired = reclaimExpired;
55
+ exports.leaseComplete = leaseComplete;
56
+ exports.leaseRelease = leaseRelease;
57
+ exports.resetEntry = resetEntry;
58
+ exports.schedPlanCli = schedPlanCli;
59
+ exports.schedLeaseCli = schedLeaseCli;
60
+ exports.schedReleaseCli = schedReleaseCli;
61
+ exports.schedCompleteCli = schedCompleteCli;
62
+ exports.schedReclaimCli = schedReclaimCli;
63
+ exports.schedResetCli = schedResetCli;
64
+ exports.schedPolicyShowCli = schedPolicyShowCli;
65
+ exports.schedPolicySetCli = schedPolicySetCli;
66
+ const fs = __importStar(require("node:fs"));
67
+ const path = __importStar(require("node:path"));
68
+ const fs_atomic_1 = require("./fs-atomic");
69
+ const run_registry_io_1 = require("./run-registry-io");
70
+ exports.SCHEDULING_SCHEMA_VERSION = 1;
71
+ /** Conservative fail-closed defaults: serial, bounded retries, exponential backoff. */
72
+ exports.DEFAULT_SCHEDULING_POLICY = {
73
+ schemaVersion: 1,
74
+ maxConcurrent: 1,
75
+ maxAttempts: 3,
76
+ leaseTtlMs: 300_000,
77
+ backoffBaseMs: 1_000,
78
+ backoffFactor: 2,
79
+ backoffCapMs: 60_000,
80
+ };
81
+ function normalizeSchedulingPolicy(input) {
82
+ const base = exports.DEFAULT_SCHEDULING_POLICY;
83
+ const num = (value, fallback, min) => (typeof value === "number" && Number.isFinite(value) && value >= min ? value : fallback);
84
+ return {
85
+ schemaVersion: 1,
86
+ maxConcurrent: num(input?.maxConcurrent, base.maxConcurrent, 1),
87
+ maxAttempts: num(input?.maxAttempts, base.maxAttempts, 1),
88
+ leaseTtlMs: num(input?.leaseTtlMs, base.leaseTtlMs, 1),
89
+ backoffBaseMs: num(input?.backoffBaseMs, base.backoffBaseMs, 0),
90
+ backoffFactor: num(input?.backoffFactor, base.backoffFactor, 1),
91
+ backoffCapMs: num(input?.backoffCapMs, base.backoffCapMs, 0),
92
+ };
93
+ }
94
+ /** Deterministic backoff: baseMs * factor^(attempts-1), capped. No jitter. */
95
+ function backoffMs(policy, attempts) {
96
+ const raw = policy.backoffBaseMs * Math.pow(policy.backoffFactor, Math.max(0, attempts - 1));
97
+ return Math.min(Math.round(raw), policy.backoffCapMs);
98
+ }
99
+ function addMs(now, ms) {
100
+ return new Date(new Date(now).getTime() + ms).toISOString();
101
+ }
102
+ function leaseActive(entry, now) {
103
+ return entry.status === "leased" && Boolean(entry.leaseExpiresAt) && entry.leaseExpiresAt > now;
104
+ }
105
+ function leaseExpired(entry, now) {
106
+ return entry.status === "leased" && (!entry.leaseExpiresAt || entry.leaseExpiresAt <= now);
107
+ }
108
+ function eligible(entry, now) {
109
+ if (entry.status !== "pending" && entry.status !== "ready")
110
+ return false;
111
+ if (entry.nextEligibleAt && entry.nextEligibleAt > now)
112
+ return false;
113
+ return true;
114
+ }
115
+ /** Read-only lease plan for the current queue + policy + now. Pure: no mutation. */
116
+ function planSchedule(entries, policy, now) {
117
+ const sorted = [...entries].sort(run_registry_io_1.compareQueue);
118
+ const inFlight = sorted.filter((entry) => leaseActive(entry, now)).length;
119
+ const available = Math.max(0, policy.maxConcurrent - inFlight);
120
+ const leases = [];
121
+ const skipped = [];
122
+ for (const entry of sorted) {
123
+ if (leaseActive(entry, now))
124
+ continue;
125
+ if (entry.status === "parked") {
126
+ skipped.push({ id: entry.id, reason: "parked" });
127
+ continue;
128
+ }
129
+ if (entry.status === "drained" || entry.status === "cancelled") {
130
+ skipped.push({ id: entry.id, reason: "terminal" });
131
+ continue;
132
+ }
133
+ if (!eligible(entry, now)) {
134
+ skipped.push({ id: entry.id, reason: leaseExpired(entry, now) ? "leased" : "backoff" });
135
+ continue;
136
+ }
137
+ if (leases.length >= available) {
138
+ skipped.push({ id: entry.id, reason: "concurrency-ceiling" });
139
+ continue;
140
+ }
141
+ leases.push({
142
+ id: entry.id,
143
+ leaseId: `lease-${entry.id}-${(entry.attempts || 0) + 1}-${now.replace(/[^0-9]/g, "")}`,
144
+ leaseExpiresAt: addMs(now, policy.leaseTtlMs),
145
+ attempts: entry.attempts || 0,
146
+ priority: entry.priority,
147
+ });
148
+ }
149
+ return { schemaVersion: 1, now, maxConcurrent: policy.maxConcurrent, inFlight, available, leases, skipped };
150
+ }
151
+ function applyLease(entries, policy, now, limit) {
152
+ const plan = planSchedule(entries, policy, now);
153
+ const granted = typeof limit === "number" ? plan.leases.slice(0, Math.max(0, limit)) : plan.leases;
154
+ const byId = new Map(granted.map((lease) => [lease.id, lease]));
155
+ const next = entries.map((entry) => {
156
+ const lease = byId.get(entry.id);
157
+ if (!lease)
158
+ return entry;
159
+ return { ...entry, status: "leased", leaseId: lease.leaseId, leaseExpiresAt: lease.leaseExpiresAt };
160
+ });
161
+ return { entries: next, leases: granted };
162
+ }
163
+ /** A failed/expired attempt: increment attempts, then park (at budget) or
164
+ * set ready with backoff. Fail closed — parked is terminal until reset. */
165
+ function retryOrPark(entry, policy, now, reason) {
166
+ const attempts = (entry.attempts || 0) + 1;
167
+ const cleared = { ...entry, attempts, leaseId: undefined, leaseExpiresAt: undefined };
168
+ if (attempts >= policy.maxAttempts) {
169
+ return { ...cleared, status: "parked", parkedReason: `${reason} (attempt ${attempts}/${policy.maxAttempts})` };
170
+ }
171
+ return { ...cleared, status: "ready", nextEligibleAt: addMs(now, backoffMs(policy, attempts)) };
172
+ }
173
+ function reclaimExpired(entries, policy, now) {
174
+ const reclaimed = [];
175
+ const next = entries.map((entry) => {
176
+ if (!leaseExpired(entry, now))
177
+ return entry;
178
+ reclaimed.push(entry.id);
179
+ return retryOrPark(entry, policy, now, "lease expired (host did not complete)");
180
+ });
181
+ return { entries: next, reclaimed };
182
+ }
183
+ function leaseComplete(entries, leaseId, now) {
184
+ let matched = false;
185
+ const next = entries.map((entry) => {
186
+ if (entry.leaseId !== leaseId || entry.status !== "leased")
187
+ return entry;
188
+ matched = true;
189
+ return { ...entry, status: "drained", drainedAt: now, leaseId: undefined, leaseExpiresAt: undefined };
190
+ });
191
+ return { entries: next, matched };
192
+ }
193
+ function leaseRelease(entries, leaseId, policy, now, options = {}) {
194
+ let matched = false;
195
+ const next = entries.map((entry) => {
196
+ if (entry.leaseId !== leaseId || entry.status !== "leased")
197
+ return entry;
198
+ matched = true;
199
+ if (options.failed)
200
+ return retryOrPark(entry, policy, now, options.reason || "released as failed");
201
+ return { ...entry, status: "ready", leaseId: undefined, leaseExpiresAt: undefined };
202
+ });
203
+ return { entries: next, matched };
204
+ }
205
+ function resetEntry(entries, id) {
206
+ let matched = false;
207
+ const next = entries.map((entry) => {
208
+ if (entry.id !== id || entry.status !== "parked")
209
+ return entry;
210
+ matched = true;
211
+ return { ...entry, status: "ready", attempts: 0, nextEligibleAt: undefined, parkedReason: undefined };
212
+ });
213
+ return { entries: next, matched };
214
+ }
215
+ // ---------------------------------------------------------------------------
216
+ // Impure CLI-facing ops: policy file IO + the queue read-modify-write.
217
+ // Byte-exact port of the `sched`-specific slice of src/capability-core.ts.
218
+ // ---------------------------------------------------------------------------
219
+ function resolveCwd(options) {
220
+ return path.resolve(String(options.cwd || process.cwd()));
221
+ }
222
+ function nowIso(options) {
223
+ return typeof options.now === "string" ? options.now : new Date().toISOString();
224
+ }
225
+ /** Loads the scheduling policy: absent = default; present-but-corrupt
226
+ * FAILS CLOSED (SPEC "Rebuild risks" #1 — this store is authoritative). */
227
+ function loadSchedulingPolicy(registry) {
228
+ const file = registry.schedulingPolicyPath();
229
+ if (!fs.existsSync(file))
230
+ return { schemaVersion: 1, policy: exports.DEFAULT_SCHEDULING_POLICY, source: "default" };
231
+ const parsed = (0, fs_atomic_1.readJson)(file);
232
+ return { schemaVersion: 1, policy: normalizeSchedulingPolicy(parsed), source: "file" };
233
+ }
234
+ function numericFlag(options, key) {
235
+ if (!(key in options))
236
+ return undefined;
237
+ const raw = options[key];
238
+ const n = Number(raw);
239
+ if (!Number.isFinite(n)) {
240
+ throw new Error(`Invalid --${key} "${raw}": expected a number (e.g. --${key} 4)`);
241
+ }
242
+ return n;
243
+ }
244
+ function schedPlanCli(options = {}) {
245
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
246
+ const { policy } = loadSchedulingPolicy(registry);
247
+ return planSchedule(registry.loadQueueEntries(), policy, nowIso(options));
248
+ }
249
+ function schedLeaseCli(options = {}) {
250
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
251
+ const now = nowIso(options);
252
+ const policy = loadSchedulingPolicy(registry).policy;
253
+ const limit = options.limit === undefined ? undefined : Number(options.limit);
254
+ const { entries, leases } = applyLease(registry.loadQueueEntries(), policy, now, limit);
255
+ registry.saveQueueEntries(entries);
256
+ return { schemaVersion: 1, now, granted: leases.length, leases };
257
+ }
258
+ function schedReleaseCli(leaseId, options = {}) {
259
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
260
+ const now = nowIso(options);
261
+ const failed = isTrue(options.failed);
262
+ const reason = typeof options.reason === "string" ? options.reason : undefined;
263
+ const { entries, matched } = leaseRelease(registry.loadQueueEntries(), leaseId, loadSchedulingPolicy(registry).policy, now, { failed, reason });
264
+ if (!matched)
265
+ throw new Error(`No active lease to release: ${leaseId}`);
266
+ registry.saveQueueEntries(entries);
267
+ return { schemaVersion: 1, released: leaseId, failed };
268
+ }
269
+ function schedCompleteCli(leaseId, options = {}) {
270
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
271
+ const { entries, matched } = leaseComplete(registry.loadQueueEntries(), leaseId, nowIso(options));
272
+ if (!matched)
273
+ throw new Error(`No active lease to complete: ${leaseId}`);
274
+ registry.saveQueueEntries(entries);
275
+ return { schemaVersion: 1, completed: leaseId };
276
+ }
277
+ function schedReclaimCli(options = {}) {
278
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
279
+ const now = nowIso(options);
280
+ const { entries, reclaimed } = reclaimExpired(registry.loadQueueEntries(), loadSchedulingPolicy(registry).policy, now);
281
+ registry.saveQueueEntries(entries);
282
+ return { schemaVersion: 1, now, reclaimed };
283
+ }
284
+ function schedResetCli(id, options = {}) {
285
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
286
+ const { entries, matched } = resetEntry(registry.loadQueueEntries(), id);
287
+ if (!matched)
288
+ throw new Error(`No parked entry to reset: ${id}`);
289
+ registry.saveQueueEntries(entries);
290
+ return { schemaVersion: 1, reset: id };
291
+ }
292
+ function schedPolicyShowCli(options = {}) {
293
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
294
+ return loadSchedulingPolicy(registry);
295
+ }
296
+ function schedPolicySetCli(options = {}) {
297
+ const registry = new run_registry_io_1.RunRegistry(resolveCwd(options));
298
+ const current = loadSchedulingPolicy(registry).policy;
299
+ const patch = {};
300
+ for (const key of ["maxConcurrent", "maxAttempts", "leaseTtlMs", "backoffBaseMs", "backoffFactor", "backoffCapMs"]) {
301
+ const value = numericFlag(options, key);
302
+ if (value !== undefined)
303
+ patch[key] = value;
304
+ }
305
+ const policy = normalizeSchedulingPolicy({ ...current, ...patch });
306
+ (0, fs_atomic_1.writeJson)(registry.schedulingPolicyPath(), policy);
307
+ return { schemaVersion: 1, policy, source: "file" };
308
+ }
309
+ function isTrue(value) {
310
+ return value === true || value === "true" || value === "1";
311
+ }