@petepetrash/circuit 0.1.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 (1993) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +246 -0
  3. package/bin/circuit +44 -0
  4. package/bin/node-version-guard.d.ts +12 -0
  5. package/bin/node-version-guard.js +65 -0
  6. package/dist/app/checkpoints/discover.d.ts +63 -0
  7. package/dist/app/checkpoints/discover.d.ts.map +1 -0
  8. package/dist/app/checkpoints/discover.js +121 -0
  9. package/dist/app/checkpoints/discover.js.map +1 -0
  10. package/dist/app/checkpoints/render.d.ts +4 -0
  11. package/dist/app/checkpoints/render.d.ts.map +1 -0
  12. package/dist/app/checkpoints/render.js +68 -0
  13. package/dist/app/checkpoints/render.js.map +1 -0
  14. package/dist/app/continuity/brief.d.ts +140 -0
  15. package/dist/app/continuity/brief.d.ts.map +1 -0
  16. package/dist/app/continuity/brief.js +557 -0
  17. package/dist/app/continuity/brief.js.map +1 -0
  18. package/dist/app/continuity/harvest.d.ts +65 -0
  19. package/dist/app/continuity/harvest.d.ts.map +1 -0
  20. package/dist/app/continuity/harvest.js +658 -0
  21. package/dist/app/continuity/harvest.js.map +1 -0
  22. package/dist/app/continuity/records.d.ts +39 -0
  23. package/dist/app/continuity/records.d.ts.map +1 -0
  24. package/dist/app/continuity/records.js +210 -0
  25. package/dist/app/continuity/records.js.map +1 -0
  26. package/dist/app/history/extract.d.ts +8 -0
  27. package/dist/app/history/extract.d.ts.map +1 -0
  28. package/dist/app/history/extract.js +716 -0
  29. package/dist/app/history/extract.js.map +1 -0
  30. package/dist/app/history/indexer.d.ts +107 -0
  31. package/dist/app/history/indexer.d.ts.map +1 -0
  32. package/dist/app/history/indexer.js +234 -0
  33. package/dist/app/history/indexer.js.map +1 -0
  34. package/dist/app/history/memory-effect-read.d.ts +8 -0
  35. package/dist/app/history/memory-effect-read.d.ts.map +1 -0
  36. package/dist/app/history/memory-effect-read.js +40 -0
  37. package/dist/app/history/memory-effect-read.js.map +1 -0
  38. package/dist/app/history/memory-effect.d.ts +34 -0
  39. package/dist/app/history/memory-effect.d.ts.map +1 -0
  40. package/dist/app/history/memory-effect.js +234 -0
  41. package/dist/app/history/memory-effect.js.map +1 -0
  42. package/dist/app/history/memory-identity.d.ts +7 -0
  43. package/dist/app/history/memory-identity.d.ts.map +1 -0
  44. package/dist/app/history/memory-identity.js +39 -0
  45. package/dist/app/history/memory-identity.js.map +1 -0
  46. package/dist/app/history/memory-merge.d.ts +16 -0
  47. package/dist/app/history/memory-merge.d.ts.map +1 -0
  48. package/dist/app/history/memory-merge.js +224 -0
  49. package/dist/app/history/memory-merge.js.map +1 -0
  50. package/dist/app/history/memory-preview.d.ts +10 -0
  51. package/dist/app/history/memory-preview.d.ts.map +1 -0
  52. package/dist/app/history/memory-preview.js +103 -0
  53. package/dist/app/history/memory-preview.js.map +1 -0
  54. package/dist/app/history/pull-log.d.ts +13 -0
  55. package/dist/app/history/pull-log.d.ts.map +1 -0
  56. package/dist/app/history/pull-log.js +91 -0
  57. package/dist/app/history/pull-log.js.map +1 -0
  58. package/dist/app/history/pull-suppression.d.ts +12 -0
  59. package/dist/app/history/pull-suppression.d.ts.map +1 -0
  60. package/dist/app/history/pull-suppression.js +40 -0
  61. package/dist/app/history/pull-suppression.js.map +1 -0
  62. package/dist/app/history/query.d.ts +19 -0
  63. package/dist/app/history/query.d.ts.map +1 -0
  64. package/dist/app/history/query.js +342 -0
  65. package/dist/app/history/query.js.map +1 -0
  66. package/dist/app/history/recall-precision.d.ts +15 -0
  67. package/dist/app/history/recall-precision.d.ts.map +1 -0
  68. package/dist/app/history/recall-precision.js +116 -0
  69. package/dist/app/history/recall-precision.js.map +1 -0
  70. package/dist/app/history/run-source-files.d.ts +23 -0
  71. package/dist/app/history/run-source-files.d.ts.map +1 -0
  72. package/dist/app/history/run-source-files.js +82 -0
  73. package/dist/app/history/run-source-files.js.map +1 -0
  74. package/dist/app/history/run-start-recall.d.ts +18 -0
  75. package/dist/app/history/run-start-recall.d.ts.map +1 -0
  76. package/dist/app/history/run-start-recall.js +156 -0
  77. package/dist/app/history/run-start-recall.js.map +1 -0
  78. package/dist/app/inbox/discover.d.ts +63 -0
  79. package/dist/app/inbox/discover.d.ts.map +1 -0
  80. package/dist/app/inbox/discover.js +120 -0
  81. package/dist/app/inbox/discover.js.map +1 -0
  82. package/dist/app/inbox/render.d.ts +4 -0
  83. package/dist/app/inbox/render.d.ts.map +1 -0
  84. package/dist/app/inbox/render.js +66 -0
  85. package/dist/app/inbox/render.js.map +1 -0
  86. package/dist/app/operator-summary/writer.d.ts +41 -0
  87. package/dist/app/operator-summary/writer.d.ts.map +1 -0
  88. package/dist/app/operator-summary/writer.js +1667 -0
  89. package/dist/app/operator-summary/writer.js.map +1 -0
  90. package/dist/app/process-evidence/projection.d.ts +36 -0
  91. package/dist/app/process-evidence/projection.d.ts.map +1 -0
  92. package/dist/app/process-evidence/projection.js +137 -0
  93. package/dist/app/process-evidence/projection.js.map +1 -0
  94. package/dist/app/run-envelope/autonomous-run.d.ts +17 -0
  95. package/dist/app/run-envelope/autonomous-run.d.ts.map +1 -0
  96. package/dist/app/run-envelope/autonomous-run.js +59 -0
  97. package/dist/app/run-envelope/autonomous-run.js.map +1 -0
  98. package/dist/app/run-envelope/continuation-loop.d.ts +24 -0
  99. package/dist/app/run-envelope/continuation-loop.d.ts.map +1 -0
  100. package/dist/app/run-envelope/continuation-loop.js +72 -0
  101. package/dist/app/run-envelope/continuation-loop.js.map +1 -0
  102. package/dist/app/run-envelope/contract-lock.d.ts +15 -0
  103. package/dist/app/run-envelope/contract-lock.d.ts.map +1 -0
  104. package/dist/app/run-envelope/contract-lock.js +44 -0
  105. package/dist/app/run-envelope/contract-lock.js.map +1 -0
  106. package/dist/app/run-envelope/contract-quality.d.ts +15 -0
  107. package/dist/app/run-envelope/contract-quality.d.ts.map +1 -0
  108. package/dist/app/run-envelope/contract-quality.js +48 -0
  109. package/dist/app/run-envelope/contract-quality.js.map +1 -0
  110. package/dist/app/run-envelope/no-progress.d.ts +11 -0
  111. package/dist/app/run-envelope/no-progress.d.ts.map +1 -0
  112. package/dist/app/run-envelope/no-progress.js +40 -0
  113. package/dist/app/run-envelope/no-progress.js.map +1 -0
  114. package/dist/app/run-envelope/shadow-record.d.ts +40 -0
  115. package/dist/app/run-envelope/shadow-record.d.ts.map +1 -0
  116. package/dist/app/run-envelope/shadow-record.js +108 -0
  117. package/dist/app/run-envelope/shadow-record.js.map +1 -0
  118. package/dist/app/run-envelope/source-record.d.ts +62 -0
  119. package/dist/app/run-envelope/source-record.d.ts.map +1 -0
  120. package/dist/app/run-envelope/source-record.js +648 -0
  121. package/dist/app/run-envelope/source-record.js.map +1 -0
  122. package/dist/app/run-status/projection-common.d.ts +57 -0
  123. package/dist/app/run-status/projection-common.d.ts.map +1 -0
  124. package/dist/app/run-status/projection-common.js +90 -0
  125. package/dist/app/run-status/projection-common.js.map +1 -0
  126. package/dist/app/run-status/run-folder-projector.d.ts +9 -0
  127. package/dist/app/run-status/run-folder-projector.d.ts.map +1 -0
  128. package/dist/app/run-status/run-folder-projector.js +68 -0
  129. package/dist/app/run-status/run-folder-projector.js.map +1 -0
  130. package/dist/app/run-status/runtime-run-folder.d.ts +4 -0
  131. package/dist/app/run-status/runtime-run-folder.d.ts.map +1 -0
  132. package/dist/app/run-status/runtime-run-folder.js +461 -0
  133. package/dist/app/run-status/runtime-run-folder.js.map +1 -0
  134. package/dist/cli/checkpoints.d.ts +7 -0
  135. package/dist/cli/checkpoints.d.ts.map +1 -0
  136. package/dist/cli/checkpoints.js +60 -0
  137. package/dist/cli/checkpoints.js.map +1 -0
  138. package/dist/cli/chosen-connectors.d.ts +14 -0
  139. package/dist/cli/chosen-connectors.d.ts.map +1 -0
  140. package/dist/cli/chosen-connectors.js +85 -0
  141. package/dist/cli/chosen-connectors.js.map +1 -0
  142. package/dist/cli/circuit.d.ts +9 -0
  143. package/dist/cli/circuit.d.ts.map +1 -0
  144. package/dist/cli/circuit.js +218 -0
  145. package/dist/cli/circuit.js.map +1 -0
  146. package/dist/cli/command-vocabulary.d.ts +3 -0
  147. package/dist/cli/command-vocabulary.d.ts.map +1 -0
  148. package/dist/cli/command-vocabulary.js +26 -0
  149. package/dist/cli/command-vocabulary.js.map +1 -0
  150. package/dist/cli/commander-support.d.ts +6 -0
  151. package/dist/cli/commander-support.d.ts.map +1 -0
  152. package/dist/cli/commander-support.js +61 -0
  153. package/dist/cli/commander-support.js.map +1 -0
  154. package/dist/cli/compiled-flow-loading.d.ts +21 -0
  155. package/dist/cli/compiled-flow-loading.d.ts.map +1 -0
  156. package/dist/cli/compiled-flow-loading.js +84 -0
  157. package/dist/cli/compiled-flow-loading.js.map +1 -0
  158. package/dist/cli/config-command.d.ts +33 -0
  159. package/dist/cli/config-command.d.ts.map +1 -0
  160. package/dist/cli/config-command.js +367 -0
  161. package/dist/cli/config-command.js.map +1 -0
  162. package/dist/cli/create.d.ts +12 -0
  163. package/dist/cli/create.d.ts.map +1 -0
  164. package/dist/cli/create.js +229 -0
  165. package/dist/cli/create.js.map +1 -0
  166. package/dist/cli/custom-flow-package.d.ts +62 -0
  167. package/dist/cli/custom-flow-package.d.ts.map +1 -0
  168. package/dist/cli/custom-flow-package.js +294 -0
  169. package/dist/cli/custom-flow-package.js.map +1 -0
  170. package/dist/cli/doctor.d.ts +9 -0
  171. package/dist/cli/doctor.d.ts.map +1 -0
  172. package/dist/cli/doctor.js +147 -0
  173. package/dist/cli/doctor.js.map +1 -0
  174. package/dist/cli/flow-selection-preview.d.ts +784 -0
  175. package/dist/cli/flow-selection-preview.d.ts.map +1 -0
  176. package/dist/cli/flow-selection-preview.js +248 -0
  177. package/dist/cli/flow-selection-preview.js.map +1 -0
  178. package/dist/cli/front-door.d.ts +3 -0
  179. package/dist/cli/front-door.d.ts.map +1 -0
  180. package/dist/cli/front-door.js +41 -0
  181. package/dist/cli/front-door.js.map +1 -0
  182. package/dist/cli/generate.d.ts +8 -0
  183. package/dist/cli/generate.d.ts.map +1 -0
  184. package/dist/cli/generate.js +346 -0
  185. package/dist/cli/generate.js.map +1 -0
  186. package/dist/cli/handoff-codex-hooks.d.ts +25 -0
  187. package/dist/cli/handoff-codex-hooks.d.ts.map +1 -0
  188. package/dist/cli/handoff-codex-hooks.js +555 -0
  189. package/dist/cli/handoff-codex-hooks.js.map +1 -0
  190. package/dist/cli/handoff.d.ts +8 -0
  191. package/dist/cli/handoff.d.ts.map +1 -0
  192. package/dist/cli/handoff.js +634 -0
  193. package/dist/cli/handoff.js.map +1 -0
  194. package/dist/cli/help.d.ts +15 -0
  195. package/dist/cli/help.d.ts.map +1 -0
  196. package/dist/cli/help.js +312 -0
  197. package/dist/cli/help.js.map +1 -0
  198. package/dist/cli/history.d.ts +2 -0
  199. package/dist/cli/history.d.ts.map +1 -0
  200. package/dist/cli/history.js +384 -0
  201. package/dist/cli/history.js.map +1 -0
  202. package/dist/cli/inbox.d.ts +7 -0
  203. package/dist/cli/inbox.d.ts.map +1 -0
  204. package/dist/cli/inbox.js +58 -0
  205. package/dist/cli/inbox.js.map +1 -0
  206. package/dist/cli/interactive/app.d.ts +11 -0
  207. package/dist/cli/interactive/app.d.ts.map +1 -0
  208. package/dist/cli/interactive/app.js +220 -0
  209. package/dist/cli/interactive/app.js.map +1 -0
  210. package/dist/cli/interactive/index.d.ts +2 -0
  211. package/dist/cli/interactive/index.d.ts.map +1 -0
  212. package/dist/cli/interactive/index.js +51 -0
  213. package/dist/cli/interactive/index.js.map +1 -0
  214. package/dist/cli/interactive/state.d.ts +122 -0
  215. package/dist/cli/interactive/state.d.ts.map +1 -0
  216. package/dist/cli/interactive/state.js +413 -0
  217. package/dist/cli/interactive/state.js.map +1 -0
  218. package/dist/cli/memory.d.ts +5 -0
  219. package/dist/cli/memory.d.ts.map +1 -0
  220. package/dist/cli/memory.js +327 -0
  221. package/dist/cli/memory.js.map +1 -0
  222. package/dist/cli/post-run-artifacts.d.ts +45 -0
  223. package/dist/cli/post-run-artifacts.d.ts.map +1 -0
  224. package/dist/cli/post-run-artifacts.js +100 -0
  225. package/dist/cli/post-run-artifacts.js.map +1 -0
  226. package/dist/cli/preview.d.ts +9 -0
  227. package/dist/cli/preview.d.ts.map +1 -0
  228. package/dist/cli/preview.js +326 -0
  229. package/dist/cli/preview.js.map +1 -0
  230. package/dist/cli/reclaim.d.ts +2 -0
  231. package/dist/cli/reclaim.d.ts.map +1 -0
  232. package/dist/cli/reclaim.js +67 -0
  233. package/dist/cli/reclaim.js.map +1 -0
  234. package/dist/cli/recovery-attempt-runner.d.ts +25 -0
  235. package/dist/cli/recovery-attempt-runner.d.ts.map +1 -0
  236. package/dist/cli/recovery-attempt-runner.js +98 -0
  237. package/dist/cli/recovery-attempt-runner.js.map +1 -0
  238. package/dist/cli/resume-input.d.ts +27 -0
  239. package/dist/cli/resume-input.d.ts.map +1 -0
  240. package/dist/cli/resume-input.js +58 -0
  241. package/dist/cli/resume-input.js.map +1 -0
  242. package/dist/cli/routed-connectors.d.ts +14 -0
  243. package/dist/cli/routed-connectors.d.ts.map +1 -0
  244. package/dist/cli/routed-connectors.js +85 -0
  245. package/dist/cli/routed-connectors.js.map +1 -0
  246. package/dist/cli/run-flag-vocabulary.d.ts +14 -0
  247. package/dist/cli/run-flag-vocabulary.d.ts.map +1 -0
  248. package/dist/cli/run-flag-vocabulary.js +38 -0
  249. package/dist/cli/run-flag-vocabulary.js.map +1 -0
  250. package/dist/cli/run-output.d.ts +32 -0
  251. package/dist/cli/run-output.d.ts.map +1 -0
  252. package/dist/cli/run-output.js +47 -0
  253. package/dist/cli/run-output.js.map +1 -0
  254. package/dist/cli/run-stdout-envelope.d.ts +47 -0
  255. package/dist/cli/run-stdout-envelope.d.ts.map +1 -0
  256. package/dist/cli/run-stdout-envelope.js +98 -0
  257. package/dist/cli/run-stdout-envelope.js.map +1 -0
  258. package/dist/cli/run.d.ts +59 -0
  259. package/dist/cli/run.d.ts.map +1 -0
  260. package/dist/cli/run.js +1182 -0
  261. package/dist/cli/run.js.map +1 -0
  262. package/dist/cli/runs.d.ts +2 -0
  263. package/dist/cli/runs.d.ts.map +1 -0
  264. package/dist/cli/runs.js +88 -0
  265. package/dist/cli/runs.js.map +1 -0
  266. package/dist/cli/runtime-routing-policy.d.ts +51 -0
  267. package/dist/cli/runtime-routing-policy.d.ts.map +1 -0
  268. package/dist/cli/runtime-routing-policy.js +143 -0
  269. package/dist/cli/runtime-routing-policy.js.map +1 -0
  270. package/dist/cli/styled-table.d.ts +11 -0
  271. package/dist/cli/styled-table.d.ts.map +1 -0
  272. package/dist/cli/styled-table.js +40 -0
  273. package/dist/cli/styled-table.js.map +1 -0
  274. package/dist/cli/terminal-style.d.ts +26 -0
  275. package/dist/cli/terminal-style.d.ts.map +1 -0
  276. package/dist/cli/terminal-style.js +75 -0
  277. package/dist/cli/terminal-style.js.map +1 -0
  278. package/dist/cli/tty-notice.d.ts +21 -0
  279. package/dist/cli/tty-notice.d.ts.map +1 -0
  280. package/dist/cli/tty-notice.js +35 -0
  281. package/dist/cli/tty-notice.js.map +1 -0
  282. package/dist/cli/uninstall.d.ts +22 -0
  283. package/dist/cli/uninstall.d.ts.map +1 -0
  284. package/dist/cli/uninstall.js +277 -0
  285. package/dist/cli/uninstall.js.map +1 -0
  286. package/dist/cli/utility-progress.d.ts +14 -0
  287. package/dist/cli/utility-progress.d.ts.map +1 -0
  288. package/dist/cli/utility-progress.js +23 -0
  289. package/dist/cli/utility-progress.js.map +1 -0
  290. package/dist/cli/version-info.d.ts +2 -0
  291. package/dist/cli/version-info.d.ts.map +1 -0
  292. package/dist/cli/version-info.js +32 -0
  293. package/dist/cli/version-info.js.map +1 -0
  294. package/dist/connectors/claude-code.d.ts +16 -0
  295. package/dist/connectors/claude-code.d.ts.map +1 -0
  296. package/dist/connectors/claude-code.js +492 -0
  297. package/dist/connectors/claude-code.js.map +1 -0
  298. package/dist/connectors/codex-default-model.d.ts +10 -0
  299. package/dist/connectors/codex-default-model.d.ts.map +1 -0
  300. package/dist/connectors/codex-default-model.js +142 -0
  301. package/dist/connectors/codex-default-model.js.map +1 -0
  302. package/dist/connectors/codex.d.ts +21 -0
  303. package/dist/connectors/codex.d.ts.map +1 -0
  304. package/dist/connectors/codex.js +709 -0
  305. package/dist/connectors/codex.js.map +1 -0
  306. package/dist/connectors/connector.d.ts +7 -0
  307. package/dist/connectors/connector.d.ts.map +1 -0
  308. package/dist/connectors/connector.js +2 -0
  309. package/dist/connectors/connector.js.map +1 -0
  310. package/dist/connectors/cursor-agent.d.ts +10 -0
  311. package/dist/connectors/cursor-agent.d.ts.map +1 -0
  312. package/dist/connectors/cursor-agent.js +156 -0
  313. package/dist/connectors/cursor-agent.js.map +1 -0
  314. package/dist/connectors/custom.d.ts +7 -0
  315. package/dist/connectors/custom.d.ts.map +1 -0
  316. package/dist/connectors/custom.js +135 -0
  317. package/dist/connectors/custom.js.map +1 -0
  318. package/dist/connectors/health.d.ts +35 -0
  319. package/dist/connectors/health.d.ts.map +1 -0
  320. package/dist/connectors/health.js +169 -0
  321. package/dist/connectors/health.js.map +1 -0
  322. package/dist/connectors/remediation.d.ts +3 -0
  323. package/dist/connectors/remediation.d.ts.map +1 -0
  324. package/dist/connectors/remediation.js +16 -0
  325. package/dist/connectors/remediation.js.map +1 -0
  326. package/dist/connectors/resolver.d.ts +44 -0
  327. package/dist/connectors/resolver.d.ts.map +1 -0
  328. package/dist/connectors/resolver.js +204 -0
  329. package/dist/connectors/resolver.js.map +1 -0
  330. package/dist/connectors/subprocess.d.ts +59 -0
  331. package/dist/connectors/subprocess.d.ts.map +1 -0
  332. package/dist/connectors/subprocess.js +375 -0
  333. package/dist/connectors/subprocess.js.map +1 -0
  334. package/dist/flows/accommodation-ledger.d.ts +49 -0
  335. package/dist/flows/accommodation-ledger.d.ts.map +1 -0
  336. package/dist/flows/accommodation-ledger.js +277 -0
  337. package/dist/flows/accommodation-ledger.js.map +1 -0
  338. package/dist/flows/assemble-flow-schematic.d.ts +30 -0
  339. package/dist/flows/assemble-flow-schematic.d.ts.map +1 -0
  340. package/dist/flows/assemble-flow-schematic.js +58 -0
  341. package/dist/flows/assemble-flow-schematic.js.map +1 -0
  342. package/dist/flows/axis-selections.d.ts +4 -0
  343. package/dist/flows/axis-selections.d.ts.map +1 -0
  344. package/dist/flows/axis-selections.js +34 -0
  345. package/dist/flows/axis-selections.js.map +1 -0
  346. package/dist/flows/block-step-expansion.d.ts +69 -0
  347. package/dist/flows/block-step-expansion.d.ts.map +1 -0
  348. package/dist/flows/block-step-expansion.js +219 -0
  349. package/dist/flows/block-step-expansion.js.map +1 -0
  350. package/dist/flows/build/assembly-spec.d.ts +5 -0
  351. package/dist/flows/build/assembly-spec.d.ts.map +1 -0
  352. package/dist/flows/build/assembly-spec.js +287 -0
  353. package/dist/flows/build/assembly-spec.js.map +1 -0
  354. package/dist/flows/build/data.d.ts +848 -0
  355. package/dist/flows/build/data.d.ts.map +1 -0
  356. package/dist/flows/build/data.js +163 -0
  357. package/dist/flows/build/data.js.map +1 -0
  358. package/dist/flows/build/flow.d.ts +2 -0
  359. package/dist/flows/build/flow.d.ts.map +1 -0
  360. package/dist/flows/build/flow.js +4 -0
  361. package/dist/flows/build/flow.js.map +1 -0
  362. package/dist/flows/build/index.d.ts +4 -0
  363. package/dist/flows/build/index.d.ts.map +1 -0
  364. package/dist/flows/build/index.js +8 -0
  365. package/dist/flows/build/index.js.map +1 -0
  366. package/dist/flows/build/relay-hints.d.ts +5 -0
  367. package/dist/flows/build/relay-hints.d.ts.map +1 -0
  368. package/dist/flows/build/relay-hints.js +51 -0
  369. package/dist/flows/build/relay-hints.js.map +1 -0
  370. package/dist/flows/build/reports.d.ts +577 -0
  371. package/dist/flows/build/reports.d.ts.map +1 -0
  372. package/dist/flows/build/reports.js +698 -0
  373. package/dist/flows/build/reports.js.map +1 -0
  374. package/dist/flows/build/writers/baseline-snapshot.d.ts +4 -0
  375. package/dist/flows/build/writers/baseline-snapshot.d.ts.map +1 -0
  376. package/dist/flows/build/writers/baseline-snapshot.js +76 -0
  377. package/dist/flows/build/writers/baseline-snapshot.js.map +1 -0
  378. package/dist/flows/build/writers/checkpoint-brief-projection.d.ts +29 -0
  379. package/dist/flows/build/writers/checkpoint-brief-projection.d.ts.map +1 -0
  380. package/dist/flows/build/writers/checkpoint-brief-projection.js +145 -0
  381. package/dist/flows/build/writers/checkpoint-brief-projection.js.map +1 -0
  382. package/dist/flows/build/writers/checkpoint-brief.d.ts +3 -0
  383. package/dist/flows/build/writers/checkpoint-brief.d.ts.map +1 -0
  384. package/dist/flows/build/writers/checkpoint-brief.js +55 -0
  385. package/dist/flows/build/writers/checkpoint-brief.js.map +1 -0
  386. package/dist/flows/build/writers/checkpoint-html.d.ts +3 -0
  387. package/dist/flows/build/writers/checkpoint-html.d.ts.map +1 -0
  388. package/dist/flows/build/writers/checkpoint-html.js +106 -0
  389. package/dist/flows/build/writers/checkpoint-html.js.map +1 -0
  390. package/dist/flows/build/writers/close.d.ts +3 -0
  391. package/dist/flows/build/writers/close.d.ts.map +1 -0
  392. package/dist/flows/build/writers/close.js +72 -0
  393. package/dist/flows/build/writers/close.js.map +1 -0
  394. package/dist/flows/build/writers/plan.d.ts +3 -0
  395. package/dist/flows/build/writers/plan.d.ts.map +1 -0
  396. package/dist/flows/build/writers/plan.js +74 -0
  397. package/dist/flows/build/writers/plan.js.map +1 -0
  398. package/dist/flows/build/writers/result-projection.d.ts +13 -0
  399. package/dist/flows/build/writers/result-projection.d.ts.map +1 -0
  400. package/dist/flows/build/writers/result-projection.js +105 -0
  401. package/dist/flows/build/writers/result-projection.js.map +1 -0
  402. package/dist/flows/build/writers/touch-area-projection.d.ts +9 -0
  403. package/dist/flows/build/writers/touch-area-projection.d.ts.map +1 -0
  404. package/dist/flows/build/writers/touch-area-projection.js +120 -0
  405. package/dist/flows/build/writers/touch-area-projection.js.map +1 -0
  406. package/dist/flows/build/writers/touch-area.d.ts +3 -0
  407. package/dist/flows/build/writers/touch-area.d.ts.map +1 -0
  408. package/dist/flows/build/writers/touch-area.js +130 -0
  409. package/dist/flows/build/writers/touch-area.js.map +1 -0
  410. package/dist/flows/build/writers/verification-projection.d.ts +4 -0
  411. package/dist/flows/build/writers/verification-projection.d.ts.map +1 -0
  412. package/dist/flows/build/writers/verification-projection.js +21 -0
  413. package/dist/flows/build/writers/verification-projection.js.map +1 -0
  414. package/dist/flows/build/writers/verification.d.ts +3 -0
  415. package/dist/flows/build/writers/verification.d.ts.map +1 -0
  416. package/dist/flows/build/writers/verification.js +31 -0
  417. package/dist/flows/build/writers/verification.js.map +1 -0
  418. package/dist/flows/canonical-stage-policy.d.ts +14 -0
  419. package/dist/flows/canonical-stage-policy.d.ts.map +1 -0
  420. package/dist/flows/canonical-stage-policy.js +31 -0
  421. package/dist/flows/canonical-stage-policy.js.map +1 -0
  422. package/dist/flows/catalog-derivations.d.ts +34 -0
  423. package/dist/flows/catalog-derivations.d.ts.map +1 -0
  424. package/dist/flows/catalog-derivations.js +144 -0
  425. package/dist/flows/catalog-derivations.js.map +1 -0
  426. package/dist/flows/catalog.d.ts +16 -0
  427. package/dist/flows/catalog.d.ts.map +1 -0
  428. package/dist/flows/catalog.js +87 -0
  429. package/dist/flows/catalog.js.map +1 -0
  430. package/dist/flows/compile-schematic-to-flow.d.ts +16 -0
  431. package/dist/flows/compile-schematic-to-flow.d.ts.map +1 -0
  432. package/dist/flows/compile-schematic-to-flow.js +651 -0
  433. package/dist/flows/compile-schematic-to-flow.js.map +1 -0
  434. package/dist/flows/compiled-flow-file-plan.d.ts +8 -0
  435. package/dist/flows/compiled-flow-file-plan.d.ts.map +1 -0
  436. package/dist/flows/compiled-flow-file-plan.js +50 -0
  437. package/dist/flows/compiled-flow-file-plan.js.map +1 -0
  438. package/dist/flows/composition/actual-menu.d.ts +30 -0
  439. package/dist/flows/composition/actual-menu.d.ts.map +1 -0
  440. package/dist/flows/composition/actual-menu.js +131 -0
  441. package/dist/flows/composition/actual-menu.js.map +1 -0
  442. package/dist/flows/composition/composer.d.ts +73 -0
  443. package/dist/flows/composition/composer.d.ts.map +1 -0
  444. package/dist/flows/composition/composer.js +1339 -0
  445. package/dist/flows/composition/composer.js.map +1 -0
  446. package/dist/flows/composition/equipment-profiles.d.ts +21 -0
  447. package/dist/flows/composition/equipment-profiles.d.ts.map +1 -0
  448. package/dist/flows/composition/equipment-profiles.js +82 -0
  449. package/dist/flows/composition/equipment-profiles.js.map +1 -0
  450. package/dist/flows/composition/evaluate.d.ts +76 -0
  451. package/dist/flows/composition/evaluate.d.ts.map +1 -0
  452. package/dist/flows/composition/evaluate.js +373 -0
  453. package/dist/flows/composition/evaluate.js.map +1 -0
  454. package/dist/flows/composition/index.d.ts +8 -0
  455. package/dist/flows/composition/index.d.ts.map +1 -0
  456. package/dist/flows/composition/index.js +16 -0
  457. package/dist/flows/composition/index.js.map +1 -0
  458. package/dist/flows/composition/intent.d.ts +10 -0
  459. package/dist/flows/composition/intent.d.ts.map +1 -0
  460. package/dist/flows/composition/intent.js +125 -0
  461. package/dist/flows/composition/intent.js.map +1 -0
  462. package/dist/flows/composition/propose-prompts.d.ts +3 -0
  463. package/dist/flows/composition/propose-prompts.d.ts.map +1 -0
  464. package/dist/flows/composition/propose-prompts.js +196 -0
  465. package/dist/flows/composition/propose-prompts.js.map +1 -0
  466. package/dist/flows/composition/propose.d.ts +36 -0
  467. package/dist/flows/composition/propose.d.ts.map +1 -0
  468. package/dist/flows/composition/propose.js +275 -0
  469. package/dist/flows/composition/propose.js.map +1 -0
  470. package/dist/flows/contract-body-signature.d.ts +4 -0
  471. package/dist/flows/contract-body-signature.d.ts.map +1 -0
  472. package/dist/flows/contract-body-signature.js +166 -0
  473. package/dist/flows/contract-body-signature.js.map +1 -0
  474. package/dist/flows/converge-proof/assembly-spec.d.ts +5 -0
  475. package/dist/flows/converge-proof/assembly-spec.d.ts.map +1 -0
  476. package/dist/flows/converge-proof/assembly-spec.js +115 -0
  477. package/dist/flows/converge-proof/assembly-spec.js.map +1 -0
  478. package/dist/flows/converge-proof/data.d.ts +412 -0
  479. package/dist/flows/converge-proof/data.d.ts.map +1 -0
  480. package/dist/flows/converge-proof/data.js +23 -0
  481. package/dist/flows/converge-proof/data.js.map +1 -0
  482. package/dist/flows/converge-proof/flow.d.ts +2 -0
  483. package/dist/flows/converge-proof/flow.d.ts.map +1 -0
  484. package/dist/flows/converge-proof/flow.js +4 -0
  485. package/dist/flows/converge-proof/flow.js.map +1 -0
  486. package/dist/flows/cross-tool-build/assembly-spec.d.ts +5 -0
  487. package/dist/flows/cross-tool-build/assembly-spec.d.ts.map +1 -0
  488. package/dist/flows/cross-tool-build/assembly-spec.js +183 -0
  489. package/dist/flows/cross-tool-build/assembly-spec.js.map +1 -0
  490. package/dist/flows/cross-tool-build/data.d.ts +570 -0
  491. package/dist/flows/cross-tool-build/data.d.ts.map +1 -0
  492. package/dist/flows/cross-tool-build/data.js +94 -0
  493. package/dist/flows/cross-tool-build/data.js.map +1 -0
  494. package/dist/flows/cross-tool-build/flow.d.ts +2 -0
  495. package/dist/flows/cross-tool-build/flow.d.ts.map +1 -0
  496. package/dist/flows/cross-tool-build/flow.js +4 -0
  497. package/dist/flows/cross-tool-build/flow.js.map +1 -0
  498. package/dist/flows/cross-tool-build/relay-hints.d.ts +7 -0
  499. package/dist/flows/cross-tool-build/relay-hints.d.ts.map +1 -0
  500. package/dist/flows/cross-tool-build/relay-hints.js +76 -0
  501. package/dist/flows/cross-tool-build/relay-hints.js.map +1 -0
  502. package/dist/flows/cross-tool-build/reports.d.ts +161 -0
  503. package/dist/flows/cross-tool-build/reports.d.ts.map +1 -0
  504. package/dist/flows/cross-tool-build/reports.js +196 -0
  505. package/dist/flows/cross-tool-build/reports.js.map +1 -0
  506. package/dist/flows/cross-tool-build/writers/close.d.ts +3 -0
  507. package/dist/flows/cross-tool-build/writers/close.d.ts.map +1 -0
  508. package/dist/flows/cross-tool-build/writers/close.js +49 -0
  509. package/dist/flows/cross-tool-build/writers/close.js.map +1 -0
  510. package/dist/flows/cross-tool-build/writers/plan.d.ts +3 -0
  511. package/dist/flows/cross-tool-build/writers/plan.d.ts.map +1 -0
  512. package/dist/flows/cross-tool-build/writers/plan.js +27 -0
  513. package/dist/flows/cross-tool-build/writers/plan.js.map +1 -0
  514. package/dist/flows/cross-tool-build/writers/verification.d.ts +3 -0
  515. package/dist/flows/cross-tool-build/writers/verification.d.ts.map +1 -0
  516. package/dist/flows/cross-tool-build/writers/verification.js +46 -0
  517. package/dist/flows/cross-tool-build/writers/verification.js.map +1 -0
  518. package/dist/flows/equipment-reshape.d.ts +18 -0
  519. package/dist/flows/equipment-reshape.d.ts.map +1 -0
  520. package/dist/flows/equipment-reshape.js +119 -0
  521. package/dist/flows/equipment-reshape.js.map +1 -0
  522. package/dist/flows/explainer/data.d.ts +1032 -0
  523. package/dist/flows/explainer/data.d.ts.map +1 -0
  524. package/dist/flows/explainer/data.js +712 -0
  525. package/dist/flows/explainer/data.js.map +1 -0
  526. package/dist/flows/explainer/flow.d.ts +2 -0
  527. package/dist/flows/explainer/flow.d.ts.map +1 -0
  528. package/dist/flows/explainer/flow.js +4 -0
  529. package/dist/flows/explainer/flow.js.map +1 -0
  530. package/dist/flows/explainer/relay-hints.d.ts +4 -0
  531. package/dist/flows/explainer/relay-hints.d.ts.map +1 -0
  532. package/dist/flows/explainer/relay-hints.js +28 -0
  533. package/dist/flows/explainer/relay-hints.js.map +1 -0
  534. package/dist/flows/explainer/reports.d.ts +394 -0
  535. package/dist/flows/explainer/reports.d.ts.map +1 -0
  536. package/dist/flows/explainer/reports.js +296 -0
  537. package/dist/flows/explainer/reports.js.map +1 -0
  538. package/dist/flows/explainer/writers/close.d.ts +3 -0
  539. package/dist/flows/explainer/writers/close.d.ts.map +1 -0
  540. package/dist/flows/explainer/writers/close.js +67 -0
  541. package/dist/flows/explainer/writers/close.js.map +1 -0
  542. package/dist/flows/explainer/writers/digest.d.ts +3 -0
  543. package/dist/flows/explainer/writers/digest.d.ts.map +1 -0
  544. package/dist/flows/explainer/writers/digest.js +47 -0
  545. package/dist/flows/explainer/writers/digest.js.map +1 -0
  546. package/dist/flows/explainer/writers/ideas.d.ts +3 -0
  547. package/dist/flows/explainer/writers/ideas.d.ts.map +1 -0
  548. package/dist/flows/explainer/writers/ideas.js +65 -0
  549. package/dist/flows/explainer/writers/ideas.js.map +1 -0
  550. package/dist/flows/explainer/writers/intake.d.ts +3 -0
  551. package/dist/flows/explainer/writers/intake.d.ts.map +1 -0
  552. package/dist/flows/explainer/writers/intake.js +33 -0
  553. package/dist/flows/explainer/writers/intake.js.map +1 -0
  554. package/dist/flows/explainer/writers/spec.d.ts +3 -0
  555. package/dist/flows/explainer/writers/spec.d.ts.map +1 -0
  556. package/dist/flows/explainer/writers/spec.js +77 -0
  557. package/dist/flows/explainer/writers/spec.js.map +1 -0
  558. package/dist/flows/explainer/writers/verification.d.ts +3 -0
  559. package/dist/flows/explainer/writers/verification.d.ts.map +1 -0
  560. package/dist/flows/explainer/writers/verification.js +43 -0
  561. package/dist/flows/explainer/writers/verification.js.map +1 -0
  562. package/dist/flows/explore/assembly-spec.d.ts +5 -0
  563. package/dist/flows/explore/assembly-spec.d.ts.map +1 -0
  564. package/dist/flows/explore/assembly-spec.js +344 -0
  565. package/dist/flows/explore/assembly-spec.js.map +1 -0
  566. package/dist/flows/explore/data.d.ts +734 -0
  567. package/dist/flows/explore/data.d.ts.map +1 -0
  568. package/dist/flows/explore/data.js +174 -0
  569. package/dist/flows/explore/data.js.map +1 -0
  570. package/dist/flows/explore/flow.d.ts +2 -0
  571. package/dist/flows/explore/flow.d.ts.map +1 -0
  572. package/dist/flows/explore/flow.js +4 -0
  573. package/dist/flows/explore/flow.js.map +1 -0
  574. package/dist/flows/explore/index.d.ts +4 -0
  575. package/dist/flows/explore/index.d.ts.map +1 -0
  576. package/dist/flows/explore/index.js +8 -0
  577. package/dist/flows/explore/index.js.map +1 -0
  578. package/dist/flows/explore/relay-hints.d.ts +6 -0
  579. package/dist/flows/explore/relay-hints.d.ts.map +1 -0
  580. package/dist/flows/explore/relay-hints.js +53 -0
  581. package/dist/flows/explore/relay-hints.js.map +1 -0
  582. package/dist/flows/explore/reports.d.ts +483 -0
  583. package/dist/flows/explore/reports.d.ts.map +1 -0
  584. package/dist/flows/explore/reports.js +359 -0
  585. package/dist/flows/explore/reports.js.map +1 -0
  586. package/dist/flows/explore/writers/analysis.d.ts +3 -0
  587. package/dist/flows/explore/writers/analysis.d.ts.map +1 -0
  588. package/dist/flows/explore/writers/analysis.js +55 -0
  589. package/dist/flows/explore/writers/analysis.js.map +1 -0
  590. package/dist/flows/explore/writers/brief.d.ts +3 -0
  591. package/dist/flows/explore/writers/brief.d.ts.map +1 -0
  592. package/dist/flows/explore/writers/brief.js +24 -0
  593. package/dist/flows/explore/writers/brief.js.map +1 -0
  594. package/dist/flows/explore/writers/close.d.ts +3 -0
  595. package/dist/flows/explore/writers/close.d.ts.map +1 -0
  596. package/dist/flows/explore/writers/close.js +86 -0
  597. package/dist/flows/explore/writers/close.js.map +1 -0
  598. package/dist/flows/explore/writers/decision-options-projection.d.ts +10 -0
  599. package/dist/flows/explore/writers/decision-options-projection.d.ts.map +1 -0
  600. package/dist/flows/explore/writers/decision-options-projection.js +108 -0
  601. package/dist/flows/explore/writers/decision-options-projection.js.map +1 -0
  602. package/dist/flows/explore/writers/decision-options.d.ts +3 -0
  603. package/dist/flows/explore/writers/decision-options.d.ts.map +1 -0
  604. package/dist/flows/explore/writers/decision-options.js +25 -0
  605. package/dist/flows/explore/writers/decision-options.js.map +1 -0
  606. package/dist/flows/explore/writers/decision.d.ts +3 -0
  607. package/dist/flows/explore/writers/decision.d.ts.map +1 -0
  608. package/dist/flows/explore/writers/decision.js +80 -0
  609. package/dist/flows/explore/writers/decision.js.map +1 -0
  610. package/dist/flows/explore/writers/result-projection.d.ts +17 -0
  611. package/dist/flows/explore/writers/result-projection.d.ts.map +1 -0
  612. package/dist/flows/explore/writers/result-projection.js +41 -0
  613. package/dist/flows/explore/writers/result-projection.js.map +1 -0
  614. package/dist/flows/explore/writers/tournament-html.d.ts +3 -0
  615. package/dist/flows/explore/writers/tournament-html.d.ts.map +1 -0
  616. package/dist/flows/explore/writers/tournament-html.js +119 -0
  617. package/dist/flows/explore/writers/tournament-html.js.map +1 -0
  618. package/dist/flows/fix/assembly-spec.d.ts +5 -0
  619. package/dist/flows/fix/assembly-spec.d.ts.map +1 -0
  620. package/dist/flows/fix/assembly-spec.js +405 -0
  621. package/dist/flows/fix/assembly-spec.js.map +1 -0
  622. package/dist/flows/fix/data.d.ts +921 -0
  623. package/dist/flows/fix/data.d.ts.map +1 -0
  624. package/dist/flows/fix/data.js +207 -0
  625. package/dist/flows/fix/data.js.map +1 -0
  626. package/dist/flows/fix/flow.d.ts +2 -0
  627. package/dist/flows/fix/flow.d.ts.map +1 -0
  628. package/dist/flows/fix/flow.js +4 -0
  629. package/dist/flows/fix/flow.js.map +1 -0
  630. package/dist/flows/fix/index.d.ts +3 -0
  631. package/dist/flows/fix/index.d.ts.map +1 -0
  632. package/dist/flows/fix/index.js +5 -0
  633. package/dist/flows/fix/index.js.map +1 -0
  634. package/dist/flows/fix/relay-hints.d.ts +6 -0
  635. package/dist/flows/fix/relay-hints.d.ts.map +1 -0
  636. package/dist/flows/fix/relay-hints.js +52 -0
  637. package/dist/flows/fix/relay-hints.js.map +1 -0
  638. package/dist/flows/fix/reports.d.ts +562 -0
  639. package/dist/flows/fix/reports.d.ts.map +1 -0
  640. package/dist/flows/fix/reports.js +822 -0
  641. package/dist/flows/fix/reports.js.map +1 -0
  642. package/dist/flows/fix/writers/baseline-snapshot.d.ts +3 -0
  643. package/dist/flows/fix/writers/baseline-snapshot.d.ts.map +1 -0
  644. package/dist/flows/fix/writers/baseline-snapshot.js +45 -0
  645. package/dist/flows/fix/writers/baseline-snapshot.js.map +1 -0
  646. package/dist/flows/fix/writers/brief-projection.d.ts +8 -0
  647. package/dist/flows/fix/writers/brief-projection.d.ts.map +1 -0
  648. package/dist/flows/fix/writers/brief-projection.js +149 -0
  649. package/dist/flows/fix/writers/brief-projection.js.map +1 -0
  650. package/dist/flows/fix/writers/brief.d.ts +3 -0
  651. package/dist/flows/fix/writers/brief.d.ts.map +1 -0
  652. package/dist/flows/fix/writers/brief.js +29 -0
  653. package/dist/flows/fix/writers/brief.js.map +1 -0
  654. package/dist/flows/fix/writers/change-set-projection.d.ts +10 -0
  655. package/dist/flows/fix/writers/change-set-projection.d.ts.map +1 -0
  656. package/dist/flows/fix/writers/change-set-projection.js +62 -0
  657. package/dist/flows/fix/writers/change-set-projection.js.map +1 -0
  658. package/dist/flows/fix/writers/change-set.d.ts +3 -0
  659. package/dist/flows/fix/writers/change-set.d.ts.map +1 -0
  660. package/dist/flows/fix/writers/change-set.js +93 -0
  661. package/dist/flows/fix/writers/change-set.js.map +1 -0
  662. package/dist/flows/fix/writers/close.d.ts +3 -0
  663. package/dist/flows/fix/writers/close.d.ts.map +1 -0
  664. package/dist/flows/fix/writers/close.js +86 -0
  665. package/dist/flows/fix/writers/close.js.map +1 -0
  666. package/dist/flows/fix/writers/regression-baseline.d.ts +3 -0
  667. package/dist/flows/fix/writers/regression-baseline.d.ts.map +1 -0
  668. package/dist/flows/fix/writers/regression-baseline.js +39 -0
  669. package/dist/flows/fix/writers/regression-baseline.js.map +1 -0
  670. package/dist/flows/fix/writers/regression-projection.d.ts +5 -0
  671. package/dist/flows/fix/writers/regression-projection.d.ts.map +1 -0
  672. package/dist/flows/fix/writers/regression-projection.js +71 -0
  673. package/dist/flows/fix/writers/regression-projection.js.map +1 -0
  674. package/dist/flows/fix/writers/regression-rerun.d.ts +3 -0
  675. package/dist/flows/fix/writers/regression-rerun.d.ts.map +1 -0
  676. package/dist/flows/fix/writers/regression-rerun.js +51 -0
  677. package/dist/flows/fix/writers/regression-rerun.js.map +1 -0
  678. package/dist/flows/fix/writers/result-projection.d.ts +15 -0
  679. package/dist/flows/fix/writers/result-projection.d.ts.map +1 -0
  680. package/dist/flows/fix/writers/result-projection.js +58 -0
  681. package/dist/flows/fix/writers/result-projection.js.map +1 -0
  682. package/dist/flows/fix/writers/verification-projection.d.ts +4 -0
  683. package/dist/flows/fix/writers/verification-projection.d.ts.map +1 -0
  684. package/dist/flows/fix/writers/verification-projection.js +24 -0
  685. package/dist/flows/fix/writers/verification-projection.js.map +1 -0
  686. package/dist/flows/fix/writers/verification.d.ts +3 -0
  687. package/dist/flows/fix/writers/verification.d.ts.map +1 -0
  688. package/dist/flows/fix/writers/verification.js +32 -0
  689. package/dist/flows/fix/writers/verification.js.map +1 -0
  690. package/dist/flows/fix-until-green/assembly-spec.d.ts +5 -0
  691. package/dist/flows/fix-until-green/assembly-spec.d.ts.map +1 -0
  692. package/dist/flows/fix-until-green/assembly-spec.js +141 -0
  693. package/dist/flows/fix-until-green/assembly-spec.js.map +1 -0
  694. package/dist/flows/fix-until-green/data.d.ts +462 -0
  695. package/dist/flows/fix-until-green/data.d.ts.map +1 -0
  696. package/dist/flows/fix-until-green/data.js +49 -0
  697. package/dist/flows/fix-until-green/data.js.map +1 -0
  698. package/dist/flows/fix-until-green/flow.d.ts +2 -0
  699. package/dist/flows/fix-until-green/flow.d.ts.map +1 -0
  700. package/dist/flows/fix-until-green/flow.js +4 -0
  701. package/dist/flows/fix-until-green/flow.js.map +1 -0
  702. package/dist/flows/fix-until-green/relay-hints.d.ts +3 -0
  703. package/dist/flows/fix-until-green/relay-hints.d.ts.map +1 -0
  704. package/dist/flows/fix-until-green/relay-hints.js +37 -0
  705. package/dist/flows/fix-until-green/relay-hints.js.map +1 -0
  706. package/dist/flows/fix-until-green/reports.d.ts +38 -0
  707. package/dist/flows/fix-until-green/reports.d.ts.map +1 -0
  708. package/dist/flows/fix-until-green/reports.js +28 -0
  709. package/dist/flows/fix-until-green/reports.js.map +1 -0
  710. package/dist/flows/fix-until-green/writers/plan.d.ts +3 -0
  711. package/dist/flows/fix-until-green/writers/plan.d.ts.map +1 -0
  712. package/dist/flows/fix-until-green/writers/plan.js +27 -0
  713. package/dist/flows/fix-until-green/writers/plan.js.map +1 -0
  714. package/dist/flows/fix-until-green/writers/verification.d.ts +3 -0
  715. package/dist/flows/fix-until-green/writers/verification.d.ts.map +1 -0
  716. package/dist/flows/fix-until-green/writers/verification.js +46 -0
  717. package/dist/flows/fix-until-green/writers/verification.js.map +1 -0
  718. package/dist/flows/flow-definition.d.ts +81 -0
  719. package/dist/flows/flow-definition.d.ts.map +1 -0
  720. package/dist/flows/flow-definition.js +258 -0
  721. package/dist/flows/flow-definition.js.map +1 -0
  722. package/dist/flows/goal/assembly-spec.d.ts +5 -0
  723. package/dist/flows/goal/assembly-spec.d.ts.map +1 -0
  724. package/dist/flows/goal/assembly-spec.js +352 -0
  725. package/dist/flows/goal/assembly-spec.js.map +1 -0
  726. package/dist/flows/goal/data.d.ts +795 -0
  727. package/dist/flows/goal/data.d.ts.map +1 -0
  728. package/dist/flows/goal/data.js +181 -0
  729. package/dist/flows/goal/data.js.map +1 -0
  730. package/dist/flows/goal/flow.d.ts +2 -0
  731. package/dist/flows/goal/flow.d.ts.map +1 -0
  732. package/dist/flows/goal/flow.js +4 -0
  733. package/dist/flows/goal/flow.js.map +1 -0
  734. package/dist/flows/goal/relay-hints.d.ts +5 -0
  735. package/dist/flows/goal/relay-hints.d.ts.map +1 -0
  736. package/dist/flows/goal/relay-hints.js +48 -0
  737. package/dist/flows/goal/relay-hints.js.map +1 -0
  738. package/dist/flows/goal/reports.d.ts +442 -0
  739. package/dist/flows/goal/reports.d.ts.map +1 -0
  740. package/dist/flows/goal/reports.js +510 -0
  741. package/dist/flows/goal/reports.js.map +1 -0
  742. package/dist/flows/goal/writers/attempt.d.ts +3 -0
  743. package/dist/flows/goal/writers/attempt.d.ts.map +1 -0
  744. package/dist/flows/goal/writers/attempt.js +52 -0
  745. package/dist/flows/goal/writers/attempt.js.map +1 -0
  746. package/dist/flows/goal/writers/close.d.ts +3 -0
  747. package/dist/flows/goal/writers/close.d.ts.map +1 -0
  748. package/dist/flows/goal/writers/close.js +80 -0
  749. package/dist/flows/goal/writers/close.js.map +1 -0
  750. package/dist/flows/goal/writers/contract.d.ts +3 -0
  751. package/dist/flows/goal/writers/contract.d.ts.map +1 -0
  752. package/dist/flows/goal/writers/contract.js +137 -0
  753. package/dist/flows/goal/writers/contract.js.map +1 -0
  754. package/dist/flows/goal/writers/evidence-evaluation.d.ts +3 -0
  755. package/dist/flows/goal/writers/evidence-evaluation.d.ts.map +1 -0
  756. package/dist/flows/goal/writers/evidence-evaluation.js +91 -0
  757. package/dist/flows/goal/writers/evidence-evaluation.js.map +1 -0
  758. package/dist/flows/goal/writers/recovery.d.ts +3 -0
  759. package/dist/flows/goal/writers/recovery.d.ts.map +1 -0
  760. package/dist/flows/goal/writers/recovery.js +67 -0
  761. package/dist/flows/goal/writers/recovery.js.map +1 -0
  762. package/dist/flows/prototype/assembly-spec.d.ts +5 -0
  763. package/dist/flows/prototype/assembly-spec.d.ts.map +1 -0
  764. package/dist/flows/prototype/assembly-spec.js +408 -0
  765. package/dist/flows/prototype/assembly-spec.js.map +1 -0
  766. package/dist/flows/prototype/data.d.ts +947 -0
  767. package/dist/flows/prototype/data.d.ts.map +1 -0
  768. package/dist/flows/prototype/data.js +212 -0
  769. package/dist/flows/prototype/data.js.map +1 -0
  770. package/dist/flows/prototype/flow.d.ts +2 -0
  771. package/dist/flows/prototype/flow.d.ts.map +1 -0
  772. package/dist/flows/prototype/flow.js +4 -0
  773. package/dist/flows/prototype/flow.js.map +1 -0
  774. package/dist/flows/prototype/index.d.ts +4 -0
  775. package/dist/flows/prototype/index.d.ts.map +1 -0
  776. package/dist/flows/prototype/index.js +8 -0
  777. package/dist/flows/prototype/index.js.map +1 -0
  778. package/dist/flows/prototype/relay-hints.d.ts +5 -0
  779. package/dist/flows/prototype/relay-hints.d.ts.map +1 -0
  780. package/dist/flows/prototype/relay-hints.js +46 -0
  781. package/dist/flows/prototype/relay-hints.js.map +1 -0
  782. package/dist/flows/prototype/reports.d.ts +909 -0
  783. package/dist/flows/prototype/reports.d.ts.map +1 -0
  784. package/dist/flows/prototype/reports.js +721 -0
  785. package/dist/flows/prototype/reports.js.map +1 -0
  786. package/dist/flows/prototype/writers/brief.d.ts +3 -0
  787. package/dist/flows/prototype/writers/brief.d.ts.map +1 -0
  788. package/dist/flows/prototype/writers/brief.js +51 -0
  789. package/dist/flows/prototype/writers/brief.js.map +1 -0
  790. package/dist/flows/prototype/writers/checkpoint-html.d.ts +3 -0
  791. package/dist/flows/prototype/writers/checkpoint-html.d.ts.map +1 -0
  792. package/dist/flows/prototype/writers/checkpoint-html.js +247 -0
  793. package/dist/flows/prototype/writers/checkpoint-html.js.map +1 -0
  794. package/dist/flows/prototype/writers/close.d.ts +3 -0
  795. package/dist/flows/prototype/writers/close.d.ts.map +1 -0
  796. package/dist/flows/prototype/writers/close.js +358 -0
  797. package/dist/flows/prototype/writers/close.js.map +1 -0
  798. package/dist/flows/prototype/writers/plan.d.ts +3 -0
  799. package/dist/flows/prototype/writers/plan.d.ts.map +1 -0
  800. package/dist/flows/prototype/writers/plan.js +31 -0
  801. package/dist/flows/prototype/writers/plan.js.map +1 -0
  802. package/dist/flows/prototype/writers/variant-choice-options.d.ts +3 -0
  803. package/dist/flows/prototype/writers/variant-choice-options.d.ts.map +1 -0
  804. package/dist/flows/prototype/writers/variant-choice-options.js +58 -0
  805. package/dist/flows/prototype/writers/variant-choice-options.js.map +1 -0
  806. package/dist/flows/prototype/writers/variant-options.d.ts +3 -0
  807. package/dist/flows/prototype/writers/variant-options.d.ts.map +1 -0
  808. package/dist/flows/prototype/writers/variant-options.js +74 -0
  809. package/dist/flows/prototype/writers/variant-options.js.map +1 -0
  810. package/dist/flows/prototype/writers/variant-provider-evidence.d.ts +3 -0
  811. package/dist/flows/prototype/writers/variant-provider-evidence.d.ts.map +1 -0
  812. package/dist/flows/prototype/writers/variant-provider-evidence.js +79 -0
  813. package/dist/flows/prototype/writers/variant-provider-evidence.js.map +1 -0
  814. package/dist/flows/prototype/writers/variant-verification.d.ts +3 -0
  815. package/dist/flows/prototype/writers/variant-verification.d.ts.map +1 -0
  816. package/dist/flows/prototype/writers/variant-verification.js +149 -0
  817. package/dist/flows/prototype/writers/variant-verification.js.map +1 -0
  818. package/dist/flows/prototype/writers/verification.d.ts +3 -0
  819. package/dist/flows/prototype/writers/verification.d.ts.map +1 -0
  820. package/dist/flows/prototype/writers/verification.js +105 -0
  821. package/dist/flows/prototype/writers/verification.js.map +1 -0
  822. package/dist/flows/pursue/assembly-spec.d.ts +6 -0
  823. package/dist/flows/pursue/assembly-spec.d.ts.map +1 -0
  824. package/dist/flows/pursue/assembly-spec.js +181 -0
  825. package/dist/flows/pursue/assembly-spec.js.map +1 -0
  826. package/dist/flows/pursue/data.d.ts +740 -0
  827. package/dist/flows/pursue/data.d.ts.map +1 -0
  828. package/dist/flows/pursue/data.js +125 -0
  829. package/dist/flows/pursue/data.js.map +1 -0
  830. package/dist/flows/pursue/flow.d.ts +2 -0
  831. package/dist/flows/pursue/flow.d.ts.map +1 -0
  832. package/dist/flows/pursue/flow.js +4 -0
  833. package/dist/flows/pursue/flow.js.map +1 -0
  834. package/dist/flows/pursue/relay-hints.d.ts +4 -0
  835. package/dist/flows/pursue/relay-hints.d.ts.map +1 -0
  836. package/dist/flows/pursue/relay-hints.js +34 -0
  837. package/dist/flows/pursue/relay-hints.js.map +1 -0
  838. package/dist/flows/pursue/reports.d.ts +383 -0
  839. package/dist/flows/pursue/reports.d.ts.map +1 -0
  840. package/dist/flows/pursue/reports.js +404 -0
  841. package/dist/flows/pursue/reports.js.map +1 -0
  842. package/dist/flows/pursue/writers/close.d.ts +3 -0
  843. package/dist/flows/pursue/writers/close.d.ts.map +1 -0
  844. package/dist/flows/pursue/writers/close.js +41 -0
  845. package/dist/flows/pursue/writers/close.js.map +1 -0
  846. package/dist/flows/pursue/writers/contract-projection.d.ts +7 -0
  847. package/dist/flows/pursue/writers/contract-projection.d.ts.map +1 -0
  848. package/dist/flows/pursue/writers/contract-projection.js +125 -0
  849. package/dist/flows/pursue/writers/contract-projection.js.map +1 -0
  850. package/dist/flows/pursue/writers/contract.d.ts +3 -0
  851. package/dist/flows/pursue/writers/contract.d.ts.map +1 -0
  852. package/dist/flows/pursue/writers/contract.js +17 -0
  853. package/dist/flows/pursue/writers/contract.js.map +1 -0
  854. package/dist/flows/pursue/writers/graph.d.ts +3 -0
  855. package/dist/flows/pursue/writers/graph.d.ts.map +1 -0
  856. package/dist/flows/pursue/writers/graph.js +76 -0
  857. package/dist/flows/pursue/writers/graph.js.map +1 -0
  858. package/dist/flows/pursue/writers/result-projection.d.ts +11 -0
  859. package/dist/flows/pursue/writers/result-projection.d.ts.map +1 -0
  860. package/dist/flows/pursue/writers/result-projection.js +85 -0
  861. package/dist/flows/pursue/writers/result-projection.js.map +1 -0
  862. package/dist/flows/pursue/writers/verification-projection.d.ts +4 -0
  863. package/dist/flows/pursue/writers/verification-projection.d.ts.map +1 -0
  864. package/dist/flows/pursue/writers/verification-projection.js +20 -0
  865. package/dist/flows/pursue/writers/verification-projection.js.map +1 -0
  866. package/dist/flows/pursue/writers/verification.d.ts +3 -0
  867. package/dist/flows/pursue/writers/verification.d.ts.map +1 -0
  868. package/dist/flows/pursue/writers/verification.js +24 -0
  869. package/dist/flows/pursue/writers/verification.js.map +1 -0
  870. package/dist/flows/pursue/writers/wave-plan.d.ts +3 -0
  871. package/dist/flows/pursue/writers/wave-plan.d.ts.map +1 -0
  872. package/dist/flows/pursue/writers/wave-plan.js +36 -0
  873. package/dist/flows/pursue/writers/wave-plan.js.map +1 -0
  874. package/dist/flows/registries/checkpoint-writers/registry.d.ts +3 -0
  875. package/dist/flows/registries/checkpoint-writers/registry.d.ts.map +1 -0
  876. package/dist/flows/registries/checkpoint-writers/registry.js +12 -0
  877. package/dist/flows/registries/checkpoint-writers/registry.js.map +1 -0
  878. package/dist/flows/registries/checkpoint-writers/types.d.ts +22 -0
  879. package/dist/flows/registries/checkpoint-writers/types.d.ts.map +1 -0
  880. package/dist/flows/registries/checkpoint-writers/types.js +24 -0
  881. package/dist/flows/registries/checkpoint-writers/types.js.map +1 -0
  882. package/dist/flows/registries/close-writers/generic-close-builder.d.ts +3 -0
  883. package/dist/flows/registries/close-writers/generic-close-builder.d.ts.map +1 -0
  884. package/dist/flows/registries/close-writers/generic-close-builder.js +45 -0
  885. package/dist/flows/registries/close-writers/generic-close-builder.js.map +1 -0
  886. package/dist/flows/registries/close-writers/registry.d.ts +5 -0
  887. package/dist/flows/registries/close-writers/registry.d.ts.map +1 -0
  888. package/dist/flows/registries/close-writers/registry.js +48 -0
  889. package/dist/flows/registries/close-writers/registry.js.map +1 -0
  890. package/dist/flows/registries/close-writers/types.d.ts +19 -0
  891. package/dist/flows/registries/close-writers/types.d.ts.map +1 -0
  892. package/dist/flows/registries/close-writers/types.js +19 -0
  893. package/dist/flows/registries/close-writers/types.js.map +1 -0
  894. package/dist/flows/registries/compose-writers/registry.d.ts +6 -0
  895. package/dist/flows/registries/compose-writers/registry.d.ts.map +1 -0
  896. package/dist/flows/registries/compose-writers/registry.js +46 -0
  897. package/dist/flows/registries/compose-writers/registry.js.map +1 -0
  898. package/dist/flows/registries/compose-writers/types.d.ts +30 -0
  899. package/dist/flows/registries/compose-writers/types.d.ts.map +1 -0
  900. package/dist/flows/registries/compose-writers/types.js +22 -0
  901. package/dist/flows/registries/compose-writers/types.js.map +1 -0
  902. package/dist/flows/registries/cross-report-validators.d.ts +10 -0
  903. package/dist/flows/registries/cross-report-validators.d.ts.map +1 -0
  904. package/dist/flows/registries/cross-report-validators.js +31 -0
  905. package/dist/flows/registries/cross-report-validators.js.map +1 -0
  906. package/dist/flows/registries/report-schemas.d.ts +10 -0
  907. package/dist/flows/registries/report-schemas.d.ts.map +1 -0
  908. package/dist/flows/registries/report-schemas.js +77 -0
  909. package/dist/flows/registries/report-schemas.js.map +1 -0
  910. package/dist/flows/registries/runtime-index.d.ts +100 -0
  911. package/dist/flows/registries/runtime-index.d.ts.map +1 -0
  912. package/dist/flows/registries/runtime-index.js +27 -0
  913. package/dist/flows/registries/runtime-index.js.map +1 -0
  914. package/dist/flows/registries/shape-hints/from-zod.d.ts +6 -0
  915. package/dist/flows/registries/shape-hints/from-zod.d.ts.map +1 -0
  916. package/dist/flows/registries/shape-hints/from-zod.js +354 -0
  917. package/dist/flows/registries/shape-hints/from-zod.js.map +1 -0
  918. package/dist/flows/registries/shape-hints/instruction-helpers.d.ts +3 -0
  919. package/dist/flows/registries/shape-hints/instruction-helpers.d.ts.map +1 -0
  920. package/dist/flows/registries/shape-hints/instruction-helpers.js +28 -0
  921. package/dist/flows/registries/shape-hints/instruction-helpers.js.map +1 -0
  922. package/dist/flows/registries/shape-hints/registry.d.ts +5 -0
  923. package/dist/flows/registries/shape-hints/registry.d.ts.map +1 -0
  924. package/dist/flows/registries/shape-hints/registry.js +33 -0
  925. package/dist/flows/registries/shape-hints/registry.js.map +1 -0
  926. package/dist/flows/registries/shape-hints/types.d.ts +14 -0
  927. package/dist/flows/registries/shape-hints/types.d.ts.map +1 -0
  928. package/dist/flows/registries/shape-hints/types.js +25 -0
  929. package/dist/flows/registries/shape-hints/types.js.map +1 -0
  930. package/dist/flows/registries/verification-writers/registry.d.ts +6 -0
  931. package/dist/flows/registries/verification-writers/registry.d.ts.map +1 -0
  932. package/dist/flows/registries/verification-writers/registry.js +37 -0
  933. package/dist/flows/registries/verification-writers/registry.js.map +1 -0
  934. package/dist/flows/registries/verification-writers/types.d.ts +37 -0
  935. package/dist/flows/registries/verification-writers/types.d.ts.map +1 -0
  936. package/dist/flows/registries/verification-writers/types.js +22 -0
  937. package/dist/flows/registries/verification-writers/types.js.map +1 -0
  938. package/dist/flows/report-declarations.d.ts +23 -0
  939. package/dist/flows/report-declarations.d.ts.map +1 -0
  940. package/dist/flows/report-declarations.js +46 -0
  941. package/dist/flows/report-declarations.js.map +1 -0
  942. package/dist/flows/report-schema-kit.d.ts +22 -0
  943. package/dist/flows/report-schema-kit.d.ts.map +1 -0
  944. package/dist/flows/report-schema-kit.js +59 -0
  945. package/dist/flows/report-schema-kit.js.map +1 -0
  946. package/dist/flows/resolvers/archetype.d.ts +14 -0
  947. package/dist/flows/resolvers/archetype.d.ts.map +1 -0
  948. package/dist/flows/resolvers/archetype.js +125 -0
  949. package/dist/flows/resolvers/archetype.js.map +1 -0
  950. package/dist/flows/resolvers/equipment.d.ts +32 -0
  951. package/dist/flows/resolvers/equipment.d.ts.map +1 -0
  952. package/dist/flows/resolvers/equipment.js +101 -0
  953. package/dist/flows/resolvers/equipment.js.map +1 -0
  954. package/dist/flows/resolvers/signals.d.ts +27 -0
  955. package/dist/flows/resolvers/signals.d.ts.map +1 -0
  956. package/dist/flows/resolvers/signals.js +273 -0
  957. package/dist/flows/resolvers/signals.js.map +1 -0
  958. package/dist/flows/resolvers/structure.d.ts +23 -0
  959. package/dist/flows/resolvers/structure.d.ts.map +1 -0
  960. package/dist/flows/resolvers/structure.js +112 -0
  961. package/dist/flows/resolvers/structure.js.map +1 -0
  962. package/dist/flows/review/assembly-spec.d.ts +5 -0
  963. package/dist/flows/review/assembly-spec.d.ts.map +1 -0
  964. package/dist/flows/review/assembly-spec.js +90 -0
  965. package/dist/flows/review/assembly-spec.js.map +1 -0
  966. package/dist/flows/review/data.d.ts +555 -0
  967. package/dist/flows/review/data.d.ts.map +1 -0
  968. package/dist/flows/review/data.js +75 -0
  969. package/dist/flows/review/data.js.map +1 -0
  970. package/dist/flows/review/flow.d.ts +2 -0
  971. package/dist/flows/review/flow.d.ts.map +1 -0
  972. package/dist/flows/review/flow.js +4 -0
  973. package/dist/flows/review/flow.js.map +1 -0
  974. package/dist/flows/review/index.d.ts +4 -0
  975. package/dist/flows/review/index.d.ts.map +1 -0
  976. package/dist/flows/review/index.js +8 -0
  977. package/dist/flows/review/index.js.map +1 -0
  978. package/dist/flows/review/relay-hints.d.ts +3 -0
  979. package/dist/flows/review/relay-hints.d.ts.map +1 -0
  980. package/dist/flows/review/relay-hints.js +31 -0
  981. package/dist/flows/review/relay-hints.js.map +1 -0
  982. package/dist/flows/review/reports.d.ts +247 -0
  983. package/dist/flows/review/reports.d.ts.map +1 -0
  984. package/dist/flows/review/reports.js +176 -0
  985. package/dist/flows/review/reports.js.map +1 -0
  986. package/dist/flows/review/writers/intake-projection.d.ts +13 -0
  987. package/dist/flows/review/writers/intake-projection.d.ts.map +1 -0
  988. package/dist/flows/review/writers/intake-projection.js +90 -0
  989. package/dist/flows/review/writers/intake-projection.js.map +1 -0
  990. package/dist/flows/review/writers/intake.d.ts +3 -0
  991. package/dist/flows/review/writers/intake.d.ts.map +1 -0
  992. package/dist/flows/review/writers/intake.js +186 -0
  993. package/dist/flows/review/writers/intake.js.map +1 -0
  994. package/dist/flows/review/writers/result-html.d.ts +3 -0
  995. package/dist/flows/review/writers/result-html.d.ts.map +1 -0
  996. package/dist/flows/review/writers/result-html.js +78 -0
  997. package/dist/flows/review/writers/result-html.js.map +1 -0
  998. package/dist/flows/review/writers/result-projection.d.ts +6 -0
  999. package/dist/flows/review/writers/result-projection.d.ts.map +1 -0
  1000. package/dist/flows/review/writers/result-projection.js +29 -0
  1001. package/dist/flows/review/writers/result-projection.js.map +1 -0
  1002. package/dist/flows/review/writers/result.d.ts +3 -0
  1003. package/dist/flows/review/writers/result.d.ts.map +1 -0
  1004. package/dist/flows/review/writers/result.js +50 -0
  1005. package/dist/flows/review/writers/result.js.map +1 -0
  1006. package/dist/flows/runtime-proof/assembly-spec.d.ts +5 -0
  1007. package/dist/flows/runtime-proof/assembly-spec.d.ts.map +1 -0
  1008. package/dist/flows/runtime-proof/assembly-spec.js +54 -0
  1009. package/dist/flows/runtime-proof/assembly-spec.js.map +1 -0
  1010. package/dist/flows/runtime-proof/data.d.ts +423 -0
  1011. package/dist/flows/runtime-proof/data.d.ts.map +1 -0
  1012. package/dist/flows/runtime-proof/data.js +36 -0
  1013. package/dist/flows/runtime-proof/data.js.map +1 -0
  1014. package/dist/flows/runtime-proof/flow.d.ts +2 -0
  1015. package/dist/flows/runtime-proof/flow.d.ts.map +1 -0
  1016. package/dist/flows/runtime-proof/flow.js +4 -0
  1017. package/dist/flows/runtime-proof/flow.js.map +1 -0
  1018. package/dist/flows/runtime-proof/reports.d.ts +6 -0
  1019. package/dist/flows/runtime-proof/reports.d.ts.map +1 -0
  1020. package/dist/flows/runtime-proof/reports.js +7 -0
  1021. package/dist/flows/runtime-proof/reports.js.map +1 -0
  1022. package/dist/flows/runtime-proof/writers/compose.d.ts +3 -0
  1023. package/dist/flows/runtime-proof/writers/compose.d.ts.map +1 -0
  1024. package/dist/flows/runtime-proof/writers/compose.js +10 -0
  1025. package/dist/flows/runtime-proof/writers/compose.js.map +1 -0
  1026. package/dist/flows/schematic-catalog-check.d.ts +3 -0
  1027. package/dist/flows/schematic-catalog-check.d.ts.map +1 -0
  1028. package/dist/flows/schematic-catalog-check.js +73 -0
  1029. package/dist/flows/schematic-catalog-check.js.map +1 -0
  1030. package/dist/flows/stage-policy.d.ts +22 -0
  1031. package/dist/flows/stage-policy.d.ts.map +1 -0
  1032. package/dist/flows/stage-policy.js +27 -0
  1033. package/dist/flows/stage-policy.js.map +1 -0
  1034. package/dist/flows/sweep/assembly-spec.d.ts +5 -0
  1035. package/dist/flows/sweep/assembly-spec.d.ts.map +1 -0
  1036. package/dist/flows/sweep/assembly-spec.js +170 -0
  1037. package/dist/flows/sweep/assembly-spec.js.map +1 -0
  1038. package/dist/flows/sweep/data.d.ts +552 -0
  1039. package/dist/flows/sweep/data.d.ts.map +1 -0
  1040. package/dist/flows/sweep/data.js +70 -0
  1041. package/dist/flows/sweep/data.js.map +1 -0
  1042. package/dist/flows/sweep/flow.d.ts +2 -0
  1043. package/dist/flows/sweep/flow.d.ts.map +1 -0
  1044. package/dist/flows/sweep/flow.js +4 -0
  1045. package/dist/flows/sweep/flow.js.map +1 -0
  1046. package/dist/flows/sweep/paths.d.ts +11 -0
  1047. package/dist/flows/sweep/paths.d.ts.map +1 -0
  1048. package/dist/flows/sweep/paths.js +18 -0
  1049. package/dist/flows/sweep/paths.js.map +1 -0
  1050. package/dist/flows/sweep/relay-hints.d.ts +3 -0
  1051. package/dist/flows/sweep/relay-hints.d.ts.map +1 -0
  1052. package/dist/flows/sweep/relay-hints.js +27 -0
  1053. package/dist/flows/sweep/relay-hints.js.map +1 -0
  1054. package/dist/flows/sweep/reports.d.ts +172 -0
  1055. package/dist/flows/sweep/reports.d.ts.map +1 -0
  1056. package/dist/flows/sweep/reports.js +179 -0
  1057. package/dist/flows/sweep/reports.js.map +1 -0
  1058. package/dist/flows/sweep/writers/census.d.ts +3 -0
  1059. package/dist/flows/sweep/writers/census.d.ts.map +1 -0
  1060. package/dist/flows/sweep/writers/census.js +67 -0
  1061. package/dist/flows/sweep/writers/census.js.map +1 -0
  1062. package/dist/flows/sweep/writers/partition.d.ts +3 -0
  1063. package/dist/flows/sweep/writers/partition.d.ts.map +1 -0
  1064. package/dist/flows/sweep/writers/partition.js +130 -0
  1065. package/dist/flows/sweep/writers/partition.js.map +1 -0
  1066. package/dist/flows/sweep/writers/scan.d.ts +5 -0
  1067. package/dist/flows/sweep/writers/scan.d.ts.map +1 -0
  1068. package/dist/flows/sweep/writers/scan.js +89 -0
  1069. package/dist/flows/sweep/writers/scan.js.map +1 -0
  1070. package/dist/flows/sweep/writers/verification.d.ts +3 -0
  1071. package/dist/flows/sweep/writers/verification.d.ts.map +1 -0
  1072. package/dist/flows/sweep/writers/verification.js +55 -0
  1073. package/dist/flows/sweep/writers/verification.js.map +1 -0
  1074. package/dist/flows/types.d.ts +111 -0
  1075. package/dist/flows/types.d.ts.map +1 -0
  1076. package/dist/flows/types.js +14 -0
  1077. package/dist/flows/types.js.map +1 -0
  1078. package/dist/history/run-corpus.d.ts +16 -0
  1079. package/dist/history/run-corpus.d.ts.map +1 -0
  1080. package/dist/history/run-corpus.js +55 -0
  1081. package/dist/history/run-corpus.js.map +1 -0
  1082. package/dist/index.d.ts +2 -0
  1083. package/dist/index.d.ts.map +1 -0
  1084. package/dist/index.js +2 -0
  1085. package/dist/index.js.map +1 -0
  1086. package/dist/memory/project-distill.d.ts +18 -0
  1087. package/dist/memory/project-distill.d.ts.map +1 -0
  1088. package/dist/memory/project-distill.js +244 -0
  1089. package/dist/memory/project-distill.js.map +1 -0
  1090. package/dist/memory/project-identity.d.ts +25 -0
  1091. package/dist/memory/project-identity.d.ts.map +1 -0
  1092. package/dist/memory/project-identity.js +125 -0
  1093. package/dist/memory/project-identity.js.map +1 -0
  1094. package/dist/memory/project-injection.d.ts +12 -0
  1095. package/dist/memory/project-injection.d.ts.map +1 -0
  1096. package/dist/memory/project-injection.js +56 -0
  1097. package/dist/memory/project-injection.js.map +1 -0
  1098. package/dist/memory/project-store.d.ts +35 -0
  1099. package/dist/memory/project-store.d.ts.map +1 -0
  1100. package/dist/memory/project-store.js +150 -0
  1101. package/dist/memory/project-store.js.map +1 -0
  1102. package/dist/policy/fanout-join-policy.d.ts +26 -0
  1103. package/dist/policy/fanout-join-policy.d.ts.map +1 -0
  1104. package/dist/policy/fanout-join-policy.js +87 -0
  1105. package/dist/policy/fanout-join-policy.js.map +1 -0
  1106. package/dist/policy/flow-kind-policy-core.d.ts +50 -0
  1107. package/dist/policy/flow-kind-policy-core.d.ts.map +1 -0
  1108. package/dist/policy/flow-kind-policy-core.js +250 -0
  1109. package/dist/policy/flow-kind-policy-core.js.map +1 -0
  1110. package/dist/policy/flow-kind-policy.d.ts +19 -0
  1111. package/dist/policy/flow-kind-policy.d.ts.map +1 -0
  1112. package/dist/policy/flow-kind-policy.js +41 -0
  1113. package/dist/policy/flow-kind-policy.js.map +1 -0
  1114. package/dist/policy/policy-envelope.d.ts +28 -0
  1115. package/dist/policy/policy-envelope.d.ts.map +1 -0
  1116. package/dist/policy/policy-envelope.js +317 -0
  1117. package/dist/policy/policy-envelope.js.map +1 -0
  1118. package/dist/policy/recovery-route-policy.d.ts +165 -0
  1119. package/dist/policy/recovery-route-policy.d.ts.map +1 -0
  1120. package/dist/policy/recovery-route-policy.js +112 -0
  1121. package/dist/policy/recovery-route-policy.js.map +1 -0
  1122. package/dist/policy/rubric.d.ts +28 -0
  1123. package/dist/policy/rubric.d.ts.map +1 -0
  1124. package/dist/policy/rubric.js +139 -0
  1125. package/dist/policy/rubric.js.map +1 -0
  1126. package/dist/release/checks.d.ts +45 -0
  1127. package/dist/release/checks.d.ts.map +1 -0
  1128. package/dist/release/checks.js +382 -0
  1129. package/dist/release/checks.js.map +1 -0
  1130. package/dist/release/schemas.d.ts +590 -0
  1131. package/dist/release/schemas.d.ts.map +1 -0
  1132. package/dist/release/schemas.js +369 -0
  1133. package/dist/release/schemas.js.map +1 -0
  1134. package/dist/runtime/acceptance-criteria.d.ts +41 -0
  1135. package/dist/runtime/acceptance-criteria.d.ts.map +1 -0
  1136. package/dist/runtime/acceptance-criteria.js +282 -0
  1137. package/dist/runtime/acceptance-criteria.js.map +1 -0
  1138. package/dist/runtime/domain/flow.d.ts +11 -0
  1139. package/dist/runtime/domain/flow.d.ts.map +1 -0
  1140. package/dist/runtime/domain/flow.js +2 -0
  1141. package/dist/runtime/domain/flow.js.map +1 -0
  1142. package/dist/runtime/domain/route.d.ts +13 -0
  1143. package/dist/runtime/domain/route.d.ts.map +1 -0
  1144. package/dist/runtime/domain/route.js +7 -0
  1145. package/dist/runtime/domain/route.js.map +1 -0
  1146. package/dist/runtime/domain/run-file.d.ts +5 -0
  1147. package/dist/runtime/domain/run-file.d.ts.map +1 -0
  1148. package/dist/runtime/domain/run-file.js +2 -0
  1149. package/dist/runtime/domain/run-file.js.map +1 -0
  1150. package/dist/runtime/domain/run.d.ts +4 -0
  1151. package/dist/runtime/domain/run.d.ts.map +1 -0
  1152. package/dist/runtime/domain/run.js +2 -0
  1153. package/dist/runtime/domain/run.js.map +1 -0
  1154. package/dist/runtime/domain/selection.d.ts +11 -0
  1155. package/dist/runtime/domain/selection.d.ts.map +1 -0
  1156. package/dist/runtime/domain/selection.js +2 -0
  1157. package/dist/runtime/domain/selection.js.map +1 -0
  1158. package/dist/runtime/domain/step.d.ts +19 -0
  1159. package/dist/runtime/domain/step.d.ts.map +1 -0
  1160. package/dist/runtime/domain/step.js +4 -0
  1161. package/dist/runtime/domain/step.js.map +1 -0
  1162. package/dist/runtime/domain/trace.d.ts +21 -0
  1163. package/dist/runtime/domain/trace.d.ts.map +1 -0
  1164. package/dist/runtime/domain/trace.js +2 -0
  1165. package/dist/runtime/domain/trace.js.map +1 -0
  1166. package/dist/runtime/executors/checkpoint.d.ts +18 -0
  1167. package/dist/runtime/executors/checkpoint.d.ts.map +1 -0
  1168. package/dist/runtime/executors/checkpoint.js +463 -0
  1169. package/dist/runtime/executors/checkpoint.js.map +1 -0
  1170. package/dist/runtime/executors/compose.d.ts +11 -0
  1171. package/dist/runtime/executors/compose.d.ts.map +1 -0
  1172. package/dist/runtime/executors/compose.js +124 -0
  1173. package/dist/runtime/executors/compose.js.map +1 -0
  1174. package/dist/runtime/executors/fanout.d.ts +8 -0
  1175. package/dist/runtime/executors/fanout.d.ts.map +1 -0
  1176. package/dist/runtime/executors/fanout.js +312 -0
  1177. package/dist/runtime/executors/fanout.js.map +1 -0
  1178. package/dist/runtime/executors/index.d.ts +11 -0
  1179. package/dist/runtime/executors/index.d.ts.map +1 -0
  1180. package/dist/runtime/executors/index.js +32 -0
  1181. package/dist/runtime/executors/index.js.map +1 -0
  1182. package/dist/runtime/executors/relay.d.ts +73 -0
  1183. package/dist/runtime/executors/relay.d.ts.map +1 -0
  1184. package/dist/runtime/executors/relay.js +788 -0
  1185. package/dist/runtime/executors/relay.js.map +1 -0
  1186. package/dist/runtime/executors/result.d.ts +14 -0
  1187. package/dist/runtime/executors/result.d.ts.map +1 -0
  1188. package/dist/runtime/executors/result.js +19 -0
  1189. package/dist/runtime/executors/result.js.map +1 -0
  1190. package/dist/runtime/executors/shared.d.ts +17 -0
  1191. package/dist/runtime/executors/shared.d.ts.map +1 -0
  1192. package/dist/runtime/executors/shared.js +49 -0
  1193. package/dist/runtime/executors/shared.js.map +1 -0
  1194. package/dist/runtime/executors/sub-run.d.ts +8 -0
  1195. package/dist/runtime/executors/sub-run.d.ts.map +1 -0
  1196. package/dist/runtime/executors/sub-run.js +275 -0
  1197. package/dist/runtime/executors/sub-run.js.map +1 -0
  1198. package/dist/runtime/executors/verification.d.ts +7 -0
  1199. package/dist/runtime/executors/verification.d.ts.map +1 -0
  1200. package/dist/runtime/executors/verification.js +374 -0
  1201. package/dist/runtime/executors/verification.js.map +1 -0
  1202. package/dist/runtime/fanout/branch-execution.d.ts +17 -0
  1203. package/dist/runtime/fanout/branch-execution.d.ts.map +1 -0
  1204. package/dist/runtime/fanout/branch-execution.js +576 -0
  1205. package/dist/runtime/fanout/branch-execution.js.map +1 -0
  1206. package/dist/runtime/fanout/branch-expansion.d.ts +6 -0
  1207. package/dist/runtime/fanout/branch-expansion.d.ts.map +1 -0
  1208. package/dist/runtime/fanout/branch-expansion.js +64 -0
  1209. package/dist/runtime/fanout/branch-expansion.js.map +1 -0
  1210. package/dist/runtime/fanout/run-owner-lock.d.ts +28 -0
  1211. package/dist/runtime/fanout/run-owner-lock.d.ts.map +1 -0
  1212. package/dist/runtime/fanout/run-owner-lock.js +98 -0
  1213. package/dist/runtime/fanout/run-owner-lock.js.map +1 -0
  1214. package/dist/runtime/fanout/types.d.ts +38 -0
  1215. package/dist/runtime/fanout/types.d.ts.map +1 -0
  1216. package/dist/runtime/fanout/types.js +2 -0
  1217. package/dist/runtime/fanout/types.js.map +1 -0
  1218. package/dist/runtime/fanout/worktree-reaper.d.ts +108 -0
  1219. package/dist/runtime/fanout/worktree-reaper.d.ts.map +1 -0
  1220. package/dist/runtime/fanout/worktree-reaper.js +195 -0
  1221. package/dist/runtime/fanout/worktree-reaper.js.map +1 -0
  1222. package/dist/runtime/fanout/worktree.d.ts +3 -0
  1223. package/dist/runtime/fanout/worktree.d.ts.map +1 -0
  1224. package/dist/runtime/fanout/worktree.js +35 -0
  1225. package/dist/runtime/fanout/worktree.js.map +1 -0
  1226. package/dist/runtime/manifest/executable-flow.d.ts +100 -0
  1227. package/dist/runtime/manifest/executable-flow.d.ts.map +1 -0
  1228. package/dist/runtime/manifest/executable-flow.js +2 -0
  1229. package/dist/runtime/manifest/executable-flow.js.map +1 -0
  1230. package/dist/runtime/manifest/from-compiled-flow.d.ts +4 -0
  1231. package/dist/runtime/manifest/from-compiled-flow.d.ts.map +1 -0
  1232. package/dist/runtime/manifest/from-compiled-flow.js +169 -0
  1233. package/dist/runtime/manifest/from-compiled-flow.js.map +1 -0
  1234. package/dist/runtime/manifest/runtime-package-index.d.ts +4 -0
  1235. package/dist/runtime/manifest/runtime-package-index.d.ts.map +1 -0
  1236. package/dist/runtime/manifest/runtime-package-index.js +98 -0
  1237. package/dist/runtime/manifest/runtime-package-index.js.map +1 -0
  1238. package/dist/runtime/manifest/validate-executable-flow.d.ts +8 -0
  1239. package/dist/runtime/manifest/validate-executable-flow.d.ts.map +1 -0
  1240. package/dist/runtime/manifest/validate-executable-flow.js +143 -0
  1241. package/dist/runtime/manifest/validate-executable-flow.js.map +1 -0
  1242. package/dist/runtime/projections/progress.d.ts +16 -0
  1243. package/dist/runtime/projections/progress.d.ts.map +1 -0
  1244. package/dist/runtime/projections/progress.js +679 -0
  1245. package/dist/runtime/projections/progress.js.map +1 -0
  1246. package/dist/runtime/projections/status.d.ts +4 -0
  1247. package/dist/runtime/projections/status.d.ts.map +1 -0
  1248. package/dist/runtime/projections/status.js +14 -0
  1249. package/dist/runtime/projections/status.js.map +1 -0
  1250. package/dist/runtime/projections/tournament-checkpoint-context.d.ts +18 -0
  1251. package/dist/runtime/projections/tournament-checkpoint-context.d.ts.map +1 -0
  1252. package/dist/runtime/projections/tournament-checkpoint-context.js +106 -0
  1253. package/dist/runtime/projections/tournament-checkpoint-context.js.map +1 -0
  1254. package/dist/runtime/run/binding-legibility.d.ts +71 -0
  1255. package/dist/runtime/run/binding-legibility.d.ts.map +1 -0
  1256. package/dist/runtime/run/binding-legibility.js +61 -0
  1257. package/dist/runtime/run/binding-legibility.js.map +1 -0
  1258. package/dist/runtime/run/capabilities.d.ts +34 -0
  1259. package/dist/runtime/run/capabilities.d.ts.map +1 -0
  1260. package/dist/runtime/run/capabilities.js +22 -0
  1261. package/dist/runtime/run/capabilities.js.map +1 -0
  1262. package/dist/runtime/run/carried-notes.d.ts +13 -0
  1263. package/dist/runtime/run/carried-notes.d.ts.map +1 -0
  1264. package/dist/runtime/run/carried-notes.js +53 -0
  1265. package/dist/runtime/run/carried-notes.js.map +1 -0
  1266. package/dist/runtime/run/checkpoint-resume.d.ts +44 -0
  1267. package/dist/runtime/run/checkpoint-resume.d.ts.map +1 -0
  1268. package/dist/runtime/run/checkpoint-resume.js +549 -0
  1269. package/dist/runtime/run/checkpoint-resume.js.map +1 -0
  1270. package/dist/runtime/run/child-runner.d.ts +57 -0
  1271. package/dist/runtime/run/child-runner.d.ts.map +1 -0
  1272. package/dist/runtime/run/child-runner.js +2 -0
  1273. package/dist/runtime/run/child-runner.js.map +1 -0
  1274. package/dist/runtime/run/commit-containment.d.ts +11 -0
  1275. package/dist/runtime/run/commit-containment.d.ts.map +1 -0
  1276. package/dist/runtime/run/commit-containment.js +46 -0
  1277. package/dist/runtime/run/commit-containment.js.map +1 -0
  1278. package/dist/runtime/run/compiled-flow-runner.d.ts +26 -0
  1279. package/dist/runtime/run/compiled-flow-runner.d.ts.map +1 -0
  1280. package/dist/runtime/run/compiled-flow-runner.js +137 -0
  1281. package/dist/runtime/run/compiled-flow-runner.js.map +1 -0
  1282. package/dist/runtime/run/connector-planning.d.ts +3 -0
  1283. package/dist/runtime/run/connector-planning.d.ts.map +1 -0
  1284. package/dist/runtime/run/connector-planning.js +29 -0
  1285. package/dist/runtime/run/connector-planning.js.map +1 -0
  1286. package/dist/runtime/run/context-delivery.d.ts +24 -0
  1287. package/dist/runtime/run/context-delivery.d.ts.map +1 -0
  1288. package/dist/runtime/run/context-delivery.js +92 -0
  1289. package/dist/runtime/run/context-delivery.js.map +1 -0
  1290. package/dist/runtime/run/context-pull.d.ts +22 -0
  1291. package/dist/runtime/run/context-pull.d.ts.map +1 -0
  1292. package/dist/runtime/run/context-pull.js +112 -0
  1293. package/dist/runtime/run/context-pull.js.map +1 -0
  1294. package/dist/runtime/run/engine-flags.d.ts +7 -0
  1295. package/dist/runtime/run/engine-flags.d.ts.map +1 -0
  1296. package/dist/runtime/run/engine-flags.js +89 -0
  1297. package/dist/runtime/run/engine-flags.js.map +1 -0
  1298. package/dist/runtime/run/equipment-reshape.d.ts +24 -0
  1299. package/dist/runtime/run/equipment-reshape.d.ts.map +1 -0
  1300. package/dist/runtime/run/equipment-reshape.js +156 -0
  1301. package/dist/runtime/run/equipment-reshape.js.map +1 -0
  1302. package/dist/runtime/run/external-files.d.ts +5 -0
  1303. package/dist/runtime/run/external-files.d.ts.map +1 -0
  1304. package/dist/runtime/run/external-files.js +7 -0
  1305. package/dist/runtime/run/external-files.js.map +1 -0
  1306. package/dist/runtime/run/frozen-eval.d.ts +8 -0
  1307. package/dist/runtime/run/frozen-eval.d.ts.map +1 -0
  1308. package/dist/runtime/run/frozen-eval.js +60 -0
  1309. package/dist/runtime/run/frozen-eval.js.map +1 -0
  1310. package/dist/runtime/run/graph-runner.d.ts +67 -0
  1311. package/dist/runtime/run/graph-runner.d.ts.map +1 -0
  1312. package/dist/runtime/run/graph-runner.js +1755 -0
  1313. package/dist/runtime/run/graph-runner.js.map +1 -0
  1314. package/dist/runtime/run/guidance.d.ts +49 -0
  1315. package/dist/runtime/run/guidance.d.ts.map +1 -0
  1316. package/dist/runtime/run/guidance.js +227 -0
  1317. package/dist/runtime/run/guidance.js.map +1 -0
  1318. package/dist/runtime/run/honesty-ledger.d.ts +21 -0
  1319. package/dist/runtime/run/honesty-ledger.d.ts.map +1 -0
  1320. package/dist/runtime/run/honesty-ledger.js +75 -0
  1321. package/dist/runtime/run/honesty-ledger.js.map +1 -0
  1322. package/dist/runtime/run/iteration-ledger.d.ts +15 -0
  1323. package/dist/runtime/run/iteration-ledger.d.ts.map +1 -0
  1324. package/dist/runtime/run/iteration-ledger.js +91 -0
  1325. package/dist/runtime/run/iteration-ledger.js.map +1 -0
  1326. package/dist/runtime/run/manifest-snapshot.d.ts +27 -0
  1327. package/dist/runtime/run/manifest-snapshot.d.ts.map +1 -0
  1328. package/dist/runtime/run/manifest-snapshot.js +58 -0
  1329. package/dist/runtime/run/manifest-snapshot.js.map +1 -0
  1330. package/dist/runtime/run/oracle-command-pin.d.ts +20 -0
  1331. package/dist/runtime/run/oracle-command-pin.d.ts.map +1 -0
  1332. package/dist/runtime/run/oracle-command-pin.js +94 -0
  1333. package/dist/runtime/run/oracle-command-pin.js.map +1 -0
  1334. package/dist/runtime/run/recovery-binding-verdict.d.ts +40 -0
  1335. package/dist/runtime/run/recovery-binding-verdict.d.ts.map +1 -0
  1336. package/dist/runtime/run/recovery-binding-verdict.js +70 -0
  1337. package/dist/runtime/run/recovery-binding-verdict.js.map +1 -0
  1338. package/dist/runtime/run/recovery-corridor.d.ts +103 -0
  1339. package/dist/runtime/run/recovery-corridor.d.ts.map +1 -0
  1340. package/dist/runtime/run/recovery-corridor.js +178 -0
  1341. package/dist/runtime/run/recovery-corridor.js.map +1 -0
  1342. package/dist/runtime/run/recovery-selection.d.ts +18 -0
  1343. package/dist/runtime/run/recovery-selection.d.ts.map +1 -0
  1344. package/dist/runtime/run/recovery-selection.js +43 -0
  1345. package/dist/runtime/run/recovery-selection.js.map +1 -0
  1346. package/dist/runtime/run/relay-guidance.d.ts +40 -0
  1347. package/dist/runtime/run/relay-guidance.d.ts.map +1 -0
  1348. package/dist/runtime/run/relay-guidance.js +306 -0
  1349. package/dist/runtime/run/relay-guidance.js.map +1 -0
  1350. package/dist/runtime/run/relay-support.d.ts +29 -0
  1351. package/dist/runtime/run/relay-support.d.ts.map +1 -0
  1352. package/dist/runtime/run/relay-support.js +436 -0
  1353. package/dist/runtime/run/relay-support.js.map +1 -0
  1354. package/dist/runtime/run/result-recovery.d.ts +16 -0
  1355. package/dist/runtime/run/result-recovery.d.ts.map +1 -0
  1356. package/dist/runtime/run/result-recovery.js +73 -0
  1357. package/dist/runtime/run/result-recovery.js.map +1 -0
  1358. package/dist/runtime/run/result-writer.d.ts +17 -0
  1359. package/dist/runtime/run/result-writer.d.ts.map +1 -0
  1360. package/dist/runtime/run/result-writer.js +5 -0
  1361. package/dist/runtime/run/result-writer.js.map +1 -0
  1362. package/dist/runtime/run/resume-lock.d.ts +29 -0
  1363. package/dist/runtime/run/resume-lock.d.ts.map +1 -0
  1364. package/dist/runtime/run/resume-lock.js +166 -0
  1365. package/dist/runtime/run/resume-lock.js.map +1 -0
  1366. package/dist/runtime/run/reuse-children.d.ts +24 -0
  1367. package/dist/runtime/run/reuse-children.d.ts.map +1 -0
  1368. package/dist/runtime/run/reuse-children.js +107 -0
  1369. package/dist/runtime/run/reuse-children.js.map +1 -0
  1370. package/dist/runtime/run/run-boundary.d.ts +30 -0
  1371. package/dist/runtime/run/run-boundary.d.ts.map +1 -0
  1372. package/dist/runtime/run/run-boundary.js +110 -0
  1373. package/dist/runtime/run/run-boundary.js.map +1 -0
  1374. package/dist/runtime/run/run-close.d.ts +22 -0
  1375. package/dist/runtime/run/run-close.d.ts.map +1 -0
  1376. package/dist/runtime/run/run-close.js +228 -0
  1377. package/dist/runtime/run/run-close.js.map +1 -0
  1378. package/dist/runtime/run/run-context.d.ts +59 -0
  1379. package/dist/runtime/run/run-context.d.ts.map +1 -0
  1380. package/dist/runtime/run/run-context.js +2 -0
  1381. package/dist/runtime/run/run-context.js.map +1 -0
  1382. package/dist/runtime/run/run-transition.d.ts +43 -0
  1383. package/dist/runtime/run/run-transition.d.ts.map +1 -0
  1384. package/dist/runtime/run/run-transition.js +52 -0
  1385. package/dist/runtime/run/run-transition.js.map +1 -0
  1386. package/dist/runtime/run/run-values.d.ts +80 -0
  1387. package/dist/runtime/run/run-values.d.ts.map +1 -0
  1388. package/dist/runtime/run/run-values.js +85 -0
  1389. package/dist/runtime/run/run-values.js.map +1 -0
  1390. package/dist/runtime/run/slice-corridor.d.ts +27 -0
  1391. package/dist/runtime/run/slice-corridor.d.ts.map +1 -0
  1392. package/dist/runtime/run/slice-corridor.js +99 -0
  1393. package/dist/runtime/run/slice-corridor.js.map +1 -0
  1394. package/dist/runtime/run/trace-evidence.d.ts +34 -0
  1395. package/dist/runtime/run/trace-evidence.d.ts.map +1 -0
  1396. package/dist/runtime/run/trace-evidence.js +148 -0
  1397. package/dist/runtime/run/trace-evidence.js.map +1 -0
  1398. package/dist/runtime/run/until-budget.d.ts +12 -0
  1399. package/dist/runtime/run/until-budget.d.ts.map +1 -0
  1400. package/dist/runtime/run/until-budget.js +102 -0
  1401. package/dist/runtime/run/until-budget.js.map +1 -0
  1402. package/dist/runtime/run/until-corridor.d.ts +32 -0
  1403. package/dist/runtime/run/until-corridor.d.ts.map +1 -0
  1404. package/dist/runtime/run/until-corridor.js +161 -0
  1405. package/dist/runtime/run/until-corridor.js.map +1 -0
  1406. package/dist/runtime/run-files/report-validator.d.ts +3 -0
  1407. package/dist/runtime/run-files/report-validator.d.ts.map +1 -0
  1408. package/dist/runtime/run-files/report-validator.js +29 -0
  1409. package/dist/runtime/run-files/report-validator.js.map +1 -0
  1410. package/dist/runtime/run-files/run-file-store.d.ts +13 -0
  1411. package/dist/runtime/run-files/run-file-store.d.ts.map +1 -0
  1412. package/dist/runtime/run-files/run-file-store.js +42 -0
  1413. package/dist/runtime/run-files/run-file-store.js.map +1 -0
  1414. package/dist/runtime/trace/trace-fields.d.ts +97 -0
  1415. package/dist/runtime/trace/trace-fields.d.ts.map +1 -0
  1416. package/dist/runtime/trace/trace-fields.js +181 -0
  1417. package/dist/runtime/trace/trace-fields.js.map +1 -0
  1418. package/dist/runtime/trace/trace-store.d.ts +20 -0
  1419. package/dist/runtime/trace/trace-store.d.ts.map +1 -0
  1420. package/dist/runtime/trace/trace-store.js +157 -0
  1421. package/dist/runtime/trace/trace-store.js.map +1 -0
  1422. package/dist/schemas/acceptance-criteria.d.ts +94 -0
  1423. package/dist/schemas/acceptance-criteria.d.ts.map +1 -0
  1424. package/dist/schemas/acceptance-criteria.js +42 -0
  1425. package/dist/schemas/acceptance-criteria.js.map +1 -0
  1426. package/dist/schemas/axes.d.ts +45 -0
  1427. package/dist/schemas/axes.d.ts.map +1 -0
  1428. package/dist/schemas/axes.js +79 -0
  1429. package/dist/schemas/axes.js.map +1 -0
  1430. package/dist/schemas/axis-config-requirement.d.ts +20 -0
  1431. package/dist/schemas/axis-config-requirement.d.ts.map +1 -0
  1432. package/dist/schemas/axis-config-requirement.js +24 -0
  1433. package/dist/schemas/axis-config-requirement.js.map +1 -0
  1434. package/dist/schemas/builtin-report-schemas.d.ts +6 -0
  1435. package/dist/schemas/builtin-report-schemas.d.ts.map +1 -0
  1436. package/dist/schemas/builtin-report-schemas.js +155 -0
  1437. package/dist/schemas/builtin-report-schemas.js.map +1 -0
  1438. package/dist/schemas/change-kind.d.ts +75 -0
  1439. package/dist/schemas/change-kind.d.ts.map +1 -0
  1440. package/dist/schemas/change-kind.js +35 -0
  1441. package/dist/schemas/change-kind.js.map +1 -0
  1442. package/dist/schemas/change-packet.d.ts +42 -0
  1443. package/dist/schemas/change-packet.d.ts.map +1 -0
  1444. package/dist/schemas/change-packet.js +26 -0
  1445. package/dist/schemas/change-packet.js.map +1 -0
  1446. package/dist/schemas/check.d.ts +174 -0
  1447. package/dist/schemas/check.d.ts.map +1 -0
  1448. package/dist/schemas/check.js +162 -0
  1449. package/dist/schemas/check.js.map +1 -0
  1450. package/dist/schemas/checkpoint-boundary.d.ts +605 -0
  1451. package/dist/schemas/checkpoint-boundary.d.ts.map +1 -0
  1452. package/dist/schemas/checkpoint-boundary.js +243 -0
  1453. package/dist/schemas/checkpoint-boundary.js.map +1 -0
  1454. package/dist/schemas/compiled-flow.d.ts +1065 -0
  1455. package/dist/schemas/compiled-flow.d.ts.map +1 -0
  1456. package/dist/schemas/compiled-flow.js +331 -0
  1457. package/dist/schemas/compiled-flow.js.map +1 -0
  1458. package/dist/schemas/config.d.ts +905 -0
  1459. package/dist/schemas/config.d.ts.map +1 -0
  1460. package/dist/schemas/config.js +240 -0
  1461. package/dist/schemas/config.js.map +1 -0
  1462. package/dist/schemas/connector.d.ts +216 -0
  1463. package/dist/schemas/connector.d.ts.map +1 -0
  1464. package/dist/schemas/connector.js +150 -0
  1465. package/dist/schemas/connector.js.map +1 -0
  1466. package/dist/schemas/context-request.d.ts +14 -0
  1467. package/dist/schemas/context-request.d.ts.map +1 -0
  1468. package/dist/schemas/context-request.js +33 -0
  1469. package/dist/schemas/context-request.js.map +1 -0
  1470. package/dist/schemas/continuity.d.ts +362 -0
  1471. package/dist/schemas/continuity.d.ts.map +1 -0
  1472. package/dist/schemas/continuity.js +232 -0
  1473. package/dist/schemas/continuity.js.map +1 -0
  1474. package/dist/schemas/custom-flow-descriptor.d.ts +10 -0
  1475. package/dist/schemas/custom-flow-descriptor.d.ts.map +1 -0
  1476. package/dist/schemas/custom-flow-descriptor.js +12 -0
  1477. package/dist/schemas/custom-flow-descriptor.js.map +1 -0
  1478. package/dist/schemas/depth.d.ts +16 -0
  1479. package/dist/schemas/depth.d.ts.map +1 -0
  1480. package/dist/schemas/depth.js +7 -0
  1481. package/dist/schemas/depth.js.map +1 -0
  1482. package/dist/schemas/engine-flags.d.ts +44 -0
  1483. package/dist/schemas/engine-flags.d.ts.map +1 -0
  1484. package/dist/schemas/engine-flags.js +104 -0
  1485. package/dist/schemas/engine-flags.js.map +1 -0
  1486. package/dist/schemas/equipment-discovery.d.ts +8 -0
  1487. package/dist/schemas/equipment-discovery.d.ts.map +1 -0
  1488. package/dist/schemas/equipment-discovery.js +36 -0
  1489. package/dist/schemas/equipment-discovery.js.map +1 -0
  1490. package/dist/schemas/equipment-scope.d.ts +42 -0
  1491. package/dist/schemas/equipment-scope.d.ts.map +1 -0
  1492. package/dist/schemas/equipment-scope.js +84 -0
  1493. package/dist/schemas/equipment-scope.js.map +1 -0
  1494. package/dist/schemas/flow-block-definitions.d.ts +59 -0
  1495. package/dist/schemas/flow-block-definitions.d.ts.map +1 -0
  1496. package/dist/schemas/flow-block-definitions.js +867 -0
  1497. package/dist/schemas/flow-block-definitions.js.map +1 -0
  1498. package/dist/schemas/flow-blocks.d.ts +301 -0
  1499. package/dist/schemas/flow-blocks.d.ts.map +1 -0
  1500. package/dist/schemas/flow-blocks.js +223 -0
  1501. package/dist/schemas/flow-blocks.js.map +1 -0
  1502. package/dist/schemas/flow-schematic-policy.d.ts +6 -0
  1503. package/dist/schemas/flow-schematic-policy.d.ts.map +1 -0
  1504. package/dist/schemas/flow-schematic-policy.js +8 -0
  1505. package/dist/schemas/flow-schematic-policy.js.map +1 -0
  1506. package/dist/schemas/flow-schematic.d.ts +1407 -0
  1507. package/dist/schemas/flow-schematic.d.ts.map +1 -0
  1508. package/dist/schemas/flow-schematic.js +944 -0
  1509. package/dist/schemas/flow-schematic.js.map +1 -0
  1510. package/dist/schemas/guidance-decision.d.ts +728 -0
  1511. package/dist/schemas/guidance-decision.d.ts.map +1 -0
  1512. package/dist/schemas/guidance-decision.js +527 -0
  1513. package/dist/schemas/guidance-decision.js.map +1 -0
  1514. package/dist/schemas/hashing.d.ts +6 -0
  1515. package/dist/schemas/hashing.d.ts.map +1 -0
  1516. package/dist/schemas/hashing.js +27 -0
  1517. package/dist/schemas/hashing.js.map +1 -0
  1518. package/dist/schemas/history.d.ts +1735 -0
  1519. package/dist/schemas/history.d.ts.map +1 -0
  1520. package/dist/schemas/history.js +662 -0
  1521. package/dist/schemas/history.js.map +1 -0
  1522. package/dist/schemas/host.d.ts +16 -0
  1523. package/dist/schemas/host.d.ts.map +1 -0
  1524. package/dist/schemas/host.js +8 -0
  1525. package/dist/schemas/host.js.map +1 -0
  1526. package/dist/schemas/ids.d.ts +18 -0
  1527. package/dist/schemas/ids.d.ts.map +1 -0
  1528. package/dist/schemas/ids.js +17 -0
  1529. package/dist/schemas/ids.js.map +1 -0
  1530. package/dist/schemas/index.d.ts +60 -0
  1531. package/dist/schemas/index.d.ts.map +1 -0
  1532. package/dist/schemas/index.js +60 -0
  1533. package/dist/schemas/index.js.map +1 -0
  1534. package/dist/schemas/json.d.ts +10 -0
  1535. package/dist/schemas/json.d.ts.map +1 -0
  1536. package/dist/schemas/json.js +12 -0
  1537. package/dist/schemas/json.js.map +1 -0
  1538. package/dist/schemas/manifest.d.ts +15 -0
  1539. package/dist/schemas/manifest.d.ts.map +1 -0
  1540. package/dist/schemas/manifest.js +61 -0
  1541. package/dist/schemas/manifest.js.map +1 -0
  1542. package/dist/schemas/memory-input.d.ts +94 -0
  1543. package/dist/schemas/memory-input.d.ts.map +1 -0
  1544. package/dist/schemas/memory-input.js +119 -0
  1545. package/dist/schemas/memory-input.js.map +1 -0
  1546. package/dist/schemas/operator-summary.d.ts +369 -0
  1547. package/dist/schemas/operator-summary.d.ts.map +1 -0
  1548. package/dist/schemas/operator-summary.js +207 -0
  1549. package/dist/schemas/operator-summary.js.map +1 -0
  1550. package/dist/schemas/policy-envelope.d.ts +1655 -0
  1551. package/dist/schemas/policy-envelope.d.ts.map +1 -0
  1552. package/dist/schemas/policy-envelope.js +330 -0
  1553. package/dist/schemas/policy-envelope.js.map +1 -0
  1554. package/dist/schemas/power.d.ts +26 -0
  1555. package/dist/schemas/power.d.ts.map +1 -0
  1556. package/dist/schemas/power.js +38 -0
  1557. package/dist/schemas/power.js.map +1 -0
  1558. package/dist/schemas/process-evidence.d.ts +156 -0
  1559. package/dist/schemas/process-evidence.d.ts.map +1 -0
  1560. package/dist/schemas/process-evidence.js +142 -0
  1561. package/dist/schemas/process-evidence.js.map +1 -0
  1562. package/dist/schemas/process.d.ts +16 -0
  1563. package/dist/schemas/process.d.ts.map +1 -0
  1564. package/dist/schemas/process.js +7 -0
  1565. package/dist/schemas/process.js.map +1 -0
  1566. package/dist/schemas/progress-event.d.ts +1505 -0
  1567. package/dist/schemas/progress-event.d.ts.map +1 -0
  1568. package/dist/schemas/progress-event.js +246 -0
  1569. package/dist/schemas/progress-event.js.map +1 -0
  1570. package/dist/schemas/proof-assessment.d.ts +542 -0
  1571. package/dist/schemas/proof-assessment.d.ts.map +1 -0
  1572. package/dist/schemas/proof-assessment.js +336 -0
  1573. package/dist/schemas/proof-assessment.js.map +1 -0
  1574. package/dist/schemas/recovery-route-kind.d.ts +229 -0
  1575. package/dist/schemas/recovery-route-kind.d.ts.map +1 -0
  1576. package/dist/schemas/recovery-route-kind.js +242 -0
  1577. package/dist/schemas/recovery-route-kind.js.map +1 -0
  1578. package/dist/schemas/ref.d.ts +51 -0
  1579. package/dist/schemas/ref.d.ts.map +1 -0
  1580. package/dist/schemas/ref.js +96 -0
  1581. package/dist/schemas/ref.js.map +1 -0
  1582. package/dist/schemas/report-file-surface.d.ts +44 -0
  1583. package/dist/schemas/report-file-surface.d.ts.map +1 -0
  1584. package/dist/schemas/report-file-surface.js +22 -0
  1585. package/dist/schemas/report-file-surface.js.map +1 -0
  1586. package/dist/schemas/result.d.ts +23 -0
  1587. package/dist/schemas/result.d.ts.map +1 -0
  1588. package/dist/schemas/result.js +55 -0
  1589. package/dist/schemas/result.js.map +1 -0
  1590. package/dist/schemas/role.d.ts +8 -0
  1591. package/dist/schemas/role.d.ts.map +1 -0
  1592. package/dist/schemas/role.js +5 -0
  1593. package/dist/schemas/role.js.map +1 -0
  1594. package/dist/schemas/route-policy.d.ts +5 -0
  1595. package/dist/schemas/route-policy.d.ts.map +1 -0
  1596. package/dist/schemas/route-policy.js +9 -0
  1597. package/dist/schemas/route-policy.js.map +1 -0
  1598. package/dist/schemas/routing-contract-schemas.d.ts +11 -0
  1599. package/dist/schemas/routing-contract-schemas.d.ts.map +1 -0
  1600. package/dist/schemas/routing-contract-schemas.js +72 -0
  1601. package/dist/schemas/routing-contract-schemas.js.map +1 -0
  1602. package/dist/schemas/rubric.d.ts +74 -0
  1603. package/dist/schemas/rubric.d.ts.map +1 -0
  1604. package/dist/schemas/rubric.js +125 -0
  1605. package/dist/schemas/rubric.js.map +1 -0
  1606. package/dist/schemas/run-envelope.d.ts +1333 -0
  1607. package/dist/schemas/run-envelope.d.ts.map +1 -0
  1608. package/dist/schemas/run-envelope.js +578 -0
  1609. package/dist/schemas/run-envelope.js.map +1 -0
  1610. package/dist/schemas/run-status.d.ts +216 -0
  1611. package/dist/schemas/run-status.d.ts.map +1 -0
  1612. package/dist/schemas/run-status.js +146 -0
  1613. package/dist/schemas/run-status.js.map +1 -0
  1614. package/dist/schemas/run.d.ts +2866 -0
  1615. package/dist/schemas/run.d.ts.map +1 -0
  1616. package/dist/schemas/run.js +647 -0
  1617. package/dist/schemas/run.js.map +1 -0
  1618. package/dist/schemas/runtime-evidence.d.ts +152 -0
  1619. package/dist/schemas/runtime-evidence.d.ts.map +1 -0
  1620. package/dist/schemas/runtime-evidence.js +127 -0
  1621. package/dist/schemas/runtime-evidence.js.map +1 -0
  1622. package/dist/schemas/runtime-source.d.ts +55 -0
  1623. package/dist/schemas/runtime-source.d.ts.map +1 -0
  1624. package/dist/schemas/runtime-source.js +40 -0
  1625. package/dist/schemas/runtime-source.js.map +1 -0
  1626. package/dist/schemas/scalars.d.ts +21 -0
  1627. package/dist/schemas/scalars.d.ts.map +1 -0
  1628. package/dist/schemas/scalars.js +51 -0
  1629. package/dist/schemas/scalars.js.map +1 -0
  1630. package/dist/schemas/selection-policy.d.ts +764 -0
  1631. package/dist/schemas/selection-policy.d.ts.map +1 -0
  1632. package/dist/schemas/selection-policy.js +209 -0
  1633. package/dist/schemas/selection-policy.js.map +1 -0
  1634. package/dist/schemas/skill-hook.d.ts +214 -0
  1635. package/dist/schemas/skill-hook.d.ts.map +1 -0
  1636. package/dist/schemas/skill-hook.js +279 -0
  1637. package/dist/schemas/skill-hook.js.map +1 -0
  1638. package/dist/schemas/skill.d.ts +59 -0
  1639. package/dist/schemas/skill.d.ts.map +1 -0
  1640. package/dist/schemas/skill.js +82 -0
  1641. package/dist/schemas/skill.js.map +1 -0
  1642. package/dist/schemas/snapshot.d.ts +108 -0
  1643. package/dist/schemas/snapshot.d.ts.map +1 -0
  1644. package/dist/schemas/snapshot.js +40 -0
  1645. package/dist/schemas/snapshot.js.map +1 -0
  1646. package/dist/schemas/stage.d.ts +85 -0
  1647. package/dist/schemas/stage.d.ts.map +1 -0
  1648. package/dist/schemas/stage.js +58 -0
  1649. package/dist/schemas/stage.js.map +1 -0
  1650. package/dist/schemas/step.d.ts +2455 -0
  1651. package/dist/schemas/step.d.ts.map +1 -0
  1652. package/dist/schemas/step.js +567 -0
  1653. package/dist/schemas/step.js.map +1 -0
  1654. package/dist/schemas/trace-entry.d.ts +2573 -0
  1655. package/dist/schemas/trace-entry.d.ts.map +1 -0
  1656. package/dist/schemas/trace-entry.js +973 -0
  1657. package/dist/schemas/trace-entry.js.map +1 -0
  1658. package/dist/schemas/verification.d.ts +47 -0
  1659. package/dist/schemas/verification.d.ts.map +1 -0
  1660. package/dist/schemas/verification.js +122 -0
  1661. package/dist/schemas/verification.js.map +1 -0
  1662. package/dist/schemas/work-contract-projection.d.ts +473 -0
  1663. package/dist/schemas/work-contract-projection.d.ts.map +1 -0
  1664. package/dist/schemas/work-contract-projection.js +232 -0
  1665. package/dist/schemas/work-contract-projection.js.map +1 -0
  1666. package/dist/selection/connector-planning.d.ts +23 -0
  1667. package/dist/selection/connector-planning.d.ts.map +1 -0
  1668. package/dist/selection/connector-planning.js +31 -0
  1669. package/dist/selection/connector-planning.js.map +1 -0
  1670. package/dist/selection/power-inference.d.ts +20 -0
  1671. package/dist/selection/power-inference.d.ts.map +1 -0
  1672. package/dist/selection/power-inference.js +74 -0
  1673. package/dist/selection/power-inference.js.map +1 -0
  1674. package/dist/selection/power-tiers.d.ts +24 -0
  1675. package/dist/selection/power-tiers.d.ts.map +1 -0
  1676. package/dist/selection/power-tiers.js +115 -0
  1677. package/dist/selection/power-tiers.js.map +1 -0
  1678. package/dist/selection/relay-selection.d.ts +11 -0
  1679. package/dist/selection/relay-selection.d.ts.map +1 -0
  1680. package/dist/selection/relay-selection.js +57 -0
  1681. package/dist/selection/relay-selection.js.map +1 -0
  1682. package/dist/selection/selection-resolver.d.ts +23 -0
  1683. package/dist/selection/selection-resolver.d.ts.map +1 -0
  1684. package/dist/selection/selection-resolver.js +153 -0
  1685. package/dist/selection/selection-resolver.js.map +1 -0
  1686. package/dist/shared/atomic-io.d.ts +11 -0
  1687. package/dist/shared/atomic-io.d.ts.map +1 -0
  1688. package/dist/shared/atomic-io.js +29 -0
  1689. package/dist/shared/atomic-io.js.map +1 -0
  1690. package/dist/shared/checkpoint-auto-resolution.d.ts +17 -0
  1691. package/dist/shared/checkpoint-auto-resolution.d.ts.map +1 -0
  1692. package/dist/shared/checkpoint-auto-resolution.js +72 -0
  1693. package/dist/shared/checkpoint-auto-resolution.js.map +1 -0
  1694. package/dist/shared/checkpoint-boundary.d.ts +15 -0
  1695. package/dist/shared/checkpoint-boundary.d.ts.map +1 -0
  1696. package/dist/shared/checkpoint-boundary.js +125 -0
  1697. package/dist/shared/checkpoint-boundary.js.map +1 -0
  1698. package/dist/shared/config-loader.d.ts +20 -0
  1699. package/dist/shared/config-loader.d.ts.map +1 -0
  1700. package/dist/shared/config-loader.js +140 -0
  1701. package/dist/shared/config-loader.js.map +1 -0
  1702. package/dist/shared/connector-relay.d.ts +39 -0
  1703. package/dist/shared/connector-relay.d.ts.map +1 -0
  1704. package/dist/shared/connector-relay.js +2 -0
  1705. package/dist/shared/connector-relay.js.map +1 -0
  1706. package/dist/shared/control-plane-gitignore.d.ts +10 -0
  1707. package/dist/shared/control-plane-gitignore.d.ts.map +1 -0
  1708. package/dist/shared/control-plane-gitignore.js +46 -0
  1709. package/dist/shared/control-plane-gitignore.js.map +1 -0
  1710. package/dist/shared/control-plane-paths.d.ts +36 -0
  1711. package/dist/shared/control-plane-paths.d.ts.map +1 -0
  1712. package/dist/shared/control-plane-paths.js +71 -0
  1713. package/dist/shared/control-plane-paths.js.map +1 -0
  1714. package/dist/shared/equipment-enforcement.d.ts +11 -0
  1715. package/dist/shared/equipment-enforcement.d.ts.map +1 -0
  1716. package/dist/shared/equipment-enforcement.js +37 -0
  1717. package/dist/shared/equipment-enforcement.js.map +1 -0
  1718. package/dist/shared/fanout-aggregate-report.d.ts +32 -0
  1719. package/dist/shared/fanout-aggregate-report.d.ts.map +1 -0
  1720. package/dist/shared/fanout-aggregate-report.js +73 -0
  1721. package/dist/shared/fanout-aggregate-report.js.map +1 -0
  1722. package/dist/shared/fanout-branch-template.d.ts +4 -0
  1723. package/dist/shared/fanout-branch-template.d.ts.map +1 -0
  1724. package/dist/shared/fanout-branch-template.js +55 -0
  1725. package/dist/shared/fanout-branch-template.js.map +1 -0
  1726. package/dist/shared/git-state-command.d.ts +19 -0
  1727. package/dist/shared/git-state-command.d.ts.map +1 -0
  1728. package/dist/shared/git-state-command.js +52 -0
  1729. package/dist/shared/git-state-command.js.map +1 -0
  1730. package/dist/shared/git-state.d.ts +3 -0
  1731. package/dist/shared/git-state.d.ts.map +1 -0
  1732. package/dist/shared/git-state.js +163 -0
  1733. package/dist/shared/git-state.js.map +1 -0
  1734. package/dist/shared/git-state.ts +175 -0
  1735. package/dist/shared/html/checkpoint-page.d.ts +41 -0
  1736. package/dist/shared/html/checkpoint-page.d.ts.map +1 -0
  1737. package/dist/shared/html/checkpoint-page.js +108 -0
  1738. package/dist/shared/html/checkpoint-page.js.map +1 -0
  1739. package/dist/shared/html/index.d.ts +6 -0
  1740. package/dist/shared/html/index.d.ts.map +1 -0
  1741. package/dist/shared/html/index.js +16 -0
  1742. package/dist/shared/html/index.js.map +1 -0
  1743. package/dist/shared/html/multi-variant.d.ts +56 -0
  1744. package/dist/shared/html/multi-variant.d.ts.map +1 -0
  1745. package/dist/shared/html/multi-variant.js +183 -0
  1746. package/dist/shared/html/multi-variant.js.map +1 -0
  1747. package/dist/shared/html/page.d.ts +5 -0
  1748. package/dist/shared/html/page.d.ts.map +1 -0
  1749. package/dist/shared/html/page.js +42 -0
  1750. package/dist/shared/html/page.js.map +1 -0
  1751. package/dist/shared/html/projector.d.ts +38 -0
  1752. package/dist/shared/html/projector.d.ts.map +1 -0
  1753. package/dist/shared/html/projector.js +7 -0
  1754. package/dist/shared/html/projector.js.map +1 -0
  1755. package/dist/shared/html/react-page.d.ts +10 -0
  1756. package/dist/shared/html/react-page.d.ts.map +1 -0
  1757. package/dist/shared/html/react-page.js +31 -0
  1758. package/dist/shared/html/react-page.js.map +1 -0
  1759. package/dist/shared/html/report-components.d.ts +57 -0
  1760. package/dist/shared/html/report-components.d.ts.map +1 -0
  1761. package/dist/shared/html/report-components.js +69 -0
  1762. package/dist/shared/html/report-components.js.map +1 -0
  1763. package/dist/shared/html/ui/alert.d.ts +10 -0
  1764. package/dist/shared/html/ui/alert.d.ts.map +1 -0
  1765. package/dist/shared/html/ui/alert.js +28 -0
  1766. package/dist/shared/html/ui/alert.js.map +1 -0
  1767. package/dist/shared/html/ui/badge.d.ts +11 -0
  1768. package/dist/shared/html/ui/badge.d.ts.map +1 -0
  1769. package/dist/shared/html/ui/badge.js +32 -0
  1770. package/dist/shared/html/ui/badge.js.map +1 -0
  1771. package/dist/shared/html/ui/button.d.ts +13 -0
  1772. package/dist/shared/html/ui/button.d.ts.map +1 -0
  1773. package/dist/shared/html/ui/button.js +36 -0
  1774. package/dist/shared/html/ui/button.js.map +1 -0
  1775. package/dist/shared/html/ui/card.d.ts +10 -0
  1776. package/dist/shared/html/ui/card.d.ts.map +1 -0
  1777. package/dist/shared/html/ui/card.js +25 -0
  1778. package/dist/shared/html/ui/card.js.map +1 -0
  1779. package/dist/shared/html/ui/checkbox.d.ts +4 -0
  1780. package/dist/shared/html/ui/checkbox.d.ts.map +1 -0
  1781. package/dist/shared/html/ui/checkbox.js +7 -0
  1782. package/dist/shared/html/ui/checkbox.js.map +1 -0
  1783. package/dist/shared/html/ui/collapsible.d.ts +6 -0
  1784. package/dist/shared/html/ui/collapsible.d.ts.map +1 -0
  1785. package/dist/shared/html/ui/collapsible.js +13 -0
  1786. package/dist/shared/html/ui/collapsible.js.map +1 -0
  1787. package/dist/shared/html/ui/css.generated.d.ts +2 -0
  1788. package/dist/shared/html/ui/css.generated.d.ts.map +1 -0
  1789. package/dist/shared/html/ui/css.generated.js +5 -0
  1790. package/dist/shared/html/ui/css.generated.js.map +1 -0
  1791. package/dist/shared/html/ui/field.d.ts +26 -0
  1792. package/dist/shared/html/ui/field.d.ts.map +1 -0
  1793. package/dist/shared/html/ui/field.js +79 -0
  1794. package/dist/shared/html/ui/field.js.map +1 -0
  1795. package/dist/shared/html/ui/index.d.ts +16 -0
  1796. package/dist/shared/html/ui/index.d.ts.map +1 -0
  1797. package/dist/shared/html/ui/index.js +20 -0
  1798. package/dist/shared/html/ui/index.js.map +1 -0
  1799. package/dist/shared/html/ui/input.d.ts +5 -0
  1800. package/dist/shared/html/ui/input.d.ts.map +1 -0
  1801. package/dist/shared/html/ui/input.js +11 -0
  1802. package/dist/shared/html/ui/input.js.map +1 -0
  1803. package/dist/shared/html/ui/kbd.d.ts +5 -0
  1804. package/dist/shared/html/ui/kbd.d.ts.map +1 -0
  1805. package/dist/shared/html/ui/kbd.js +10 -0
  1806. package/dist/shared/html/ui/kbd.js.map +1 -0
  1807. package/dist/shared/html/ui/label.d.ts +4 -0
  1808. package/dist/shared/html/ui/label.d.ts.map +1 -0
  1809. package/dist/shared/html/ui/label.js +9 -0
  1810. package/dist/shared/html/ui/label.js.map +1 -0
  1811. package/dist/shared/html/ui/radio-group.d.ts +5 -0
  1812. package/dist/shared/html/ui/radio-group.d.ts.map +1 -0
  1813. package/dist/shared/html/ui/radio-group.js +10 -0
  1814. package/dist/shared/html/ui/radio-group.js.map +1 -0
  1815. package/dist/shared/html/ui/separator.d.ts +4 -0
  1816. package/dist/shared/html/ui/separator.d.ts.map +1 -0
  1817. package/dist/shared/html/ui/separator.js +11 -0
  1818. package/dist/shared/html/ui/separator.js.map +1 -0
  1819. package/dist/shared/html/ui/table.d.ts +11 -0
  1820. package/dist/shared/html/ui/table.d.ts.map +1 -0
  1821. package/dist/shared/html/ui/table.js +28 -0
  1822. package/dist/shared/html/ui/table.js.map +1 -0
  1823. package/dist/shared/html/ui/textarea.d.ts +4 -0
  1824. package/dist/shared/html/ui/textarea.d.ts.map +1 -0
  1825. package/dist/shared/html/ui/textarea.js +7 -0
  1826. package/dist/shared/html/ui/textarea.js.map +1 -0
  1827. package/dist/shared/html/ui/utils.d.ts +3 -0
  1828. package/dist/shared/html/ui/utils.d.ts.map +1 -0
  1829. package/dist/shared/html/ui/utils.js +11 -0
  1830. package/dist/shared/html/ui/utils.js.map +1 -0
  1831. package/dist/shared/json-extraction.d.ts +2 -0
  1832. package/dist/shared/json-extraction.d.ts.map +1 -0
  1833. package/dist/shared/json-extraction.js +68 -0
  1834. package/dist/shared/json-extraction.js.map +1 -0
  1835. package/dist/shared/manifest-snapshot.d.ts +13 -0
  1836. package/dist/shared/manifest-snapshot.d.ts.map +1 -0
  1837. package/dist/shared/manifest-snapshot.js +48 -0
  1838. package/dist/shared/manifest-snapshot.js.map +1 -0
  1839. package/dist/shared/operator-summary/explore.d.ts +3 -0
  1840. package/dist/shared/operator-summary/explore.d.ts.map +1 -0
  1841. package/dist/shared/operator-summary/explore.js +208 -0
  1842. package/dist/shared/operator-summary/explore.js.map +1 -0
  1843. package/dist/shared/operator-summary/index.d.ts +6 -0
  1844. package/dist/shared/operator-summary/index.d.ts.map +1 -0
  1845. package/dist/shared/operator-summary/index.js +10 -0
  1846. package/dist/shared/operator-summary/index.js.map +1 -0
  1847. package/dist/shared/operator-summary/json.d.ts +10 -0
  1848. package/dist/shared/operator-summary/json.d.ts.map +1 -0
  1849. package/dist/shared/operator-summary/json.js +63 -0
  1850. package/dist/shared/operator-summary/json.js.map +1 -0
  1851. package/dist/shared/operator-summary/projections.d.ts +4 -0
  1852. package/dist/shared/operator-summary/projections.d.ts.map +1 -0
  1853. package/dist/shared/operator-summary/projections.js +452 -0
  1854. package/dist/shared/operator-summary/projections.js.map +1 -0
  1855. package/dist/shared/operator-summary/projector.d.ts +14 -0
  1856. package/dist/shared/operator-summary/projector.d.ts.map +1 -0
  1857. package/dist/shared/operator-summary/projector.js +12 -0
  1858. package/dist/shared/operator-summary/projector.js.map +1 -0
  1859. package/dist/shared/operator-summary/text.d.ts +11 -0
  1860. package/dist/shared/operator-summary/text.d.ts.map +1 -0
  1861. package/dist/shared/operator-summary/text.js +92 -0
  1862. package/dist/shared/operator-summary/text.js.map +1 -0
  1863. package/dist/shared/outcome.d.ts +13 -0
  1864. package/dist/shared/outcome.d.ts.map +1 -0
  1865. package/dist/shared/outcome.js +76 -0
  1866. package/dist/shared/outcome.js.map +1 -0
  1867. package/dist/shared/progress-output.d.ts +12 -0
  1868. package/dist/shared/progress-output.d.ts.map +1 -0
  1869. package/dist/shared/progress-output.js +50 -0
  1870. package/dist/shared/progress-output.js.map +1 -0
  1871. package/dist/shared/proof-assessment.d.ts +7 -0
  1872. package/dist/shared/proof-assessment.d.ts.map +1 -0
  1873. package/dist/shared/proof-assessment.js +67 -0
  1874. package/dist/shared/proof-assessment.js.map +1 -0
  1875. package/dist/shared/proof-plan.d.ts +26 -0
  1876. package/dist/shared/proof-plan.d.ts.map +1 -0
  1877. package/dist/shared/proof-plan.js +164 -0
  1878. package/dist/shared/proof-plan.js.map +1 -0
  1879. package/dist/shared/relay-runtime-types.d.ts +30 -0
  1880. package/dist/shared/relay-runtime-types.d.ts.map +1 -0
  1881. package/dist/shared/relay-runtime-types.js +2 -0
  1882. package/dist/shared/relay-runtime-types.js.map +1 -0
  1883. package/dist/shared/result-path.d.ts +3 -0
  1884. package/dist/shared/result-path.d.ts.map +1 -0
  1885. package/dist/shared/result-path.js +6 -0
  1886. package/dist/shared/result-path.js.map +1 -0
  1887. package/dist/shared/run-artifact-io.d.ts +3 -0
  1888. package/dist/shared/run-artifact-io.d.ts.map +1 -0
  1889. package/dist/shared/run-artifact-io.js +17 -0
  1890. package/dist/shared/run-artifact-io.js.map +1 -0
  1891. package/dist/shared/run-file-paths.d.ts +3 -0
  1892. package/dist/shared/run-file-paths.d.ts.map +1 -0
  1893. package/dist/shared/run-file-paths.js +72 -0
  1894. package/dist/shared/run-file-paths.js.map +1 -0
  1895. package/dist/shared/run-relative-path.d.ts +2 -0
  1896. package/dist/shared/run-relative-path.d.ts.map +1 -0
  1897. package/dist/shared/run-relative-path.js +43 -0
  1898. package/dist/shared/run-relative-path.js.map +1 -0
  1899. package/dist/shared/runtime-source.d.ts +24 -0
  1900. package/dist/shared/runtime-source.d.ts.map +1 -0
  1901. package/dist/shared/runtime-source.js +75 -0
  1902. package/dist/shared/runtime-source.js.map +1 -0
  1903. package/dist/shared/runtime-touched-files.d.ts +12 -0
  1904. package/dist/shared/runtime-touched-files.d.ts.map +1 -0
  1905. package/dist/shared/runtime-touched-files.js +106 -0
  1906. package/dist/shared/runtime-touched-files.js.map +1 -0
  1907. package/dist/shared/skill-loading.d.ts +22 -0
  1908. package/dist/shared/skill-loading.d.ts.map +1 -0
  1909. package/dist/shared/skill-loading.js +75 -0
  1910. package/dist/shared/skill-loading.js.map +1 -0
  1911. package/dist/shared/status-block-renderer.d.ts +16 -0
  1912. package/dist/shared/status-block-renderer.d.ts.map +1 -0
  1913. package/dist/shared/status-block-renderer.js +67 -0
  1914. package/dist/shared/status-block-renderer.js.map +1 -0
  1915. package/dist/shared/user-skill-registry.d.ts +18 -0
  1916. package/dist/shared/user-skill-registry.d.ts.map +1 -0
  1917. package/dist/shared/user-skill-registry.js +130 -0
  1918. package/dist/shared/user-skill-registry.js.map +1 -0
  1919. package/dist/shared/verification-resolver.d.ts +23 -0
  1920. package/dist/shared/verification-resolver.d.ts.map +1 -0
  1921. package/dist/shared/verification-resolver.js +162 -0
  1922. package/dist/shared/verification-resolver.js.map +1 -0
  1923. package/dist/shared/work-contract-projection.d.ts +15 -0
  1924. package/dist/shared/work-contract-projection.d.ts.map +1 -0
  1925. package/dist/shared/work-contract-projection.js +498 -0
  1926. package/dist/shared/work-contract-projection.js.map +1 -0
  1927. package/dist/shared/working-tree-changes.d.ts +18 -0
  1928. package/dist/shared/working-tree-changes.d.ts.map +1 -0
  1929. package/dist/shared/working-tree-changes.js +94 -0
  1930. package/dist/shared/working-tree-changes.js.map +1 -0
  1931. package/dist/shared/write-capable-worker-disclosure.d.ts +3 -0
  1932. package/dist/shared/write-capable-worker-disclosure.d.ts.map +1 -0
  1933. package/dist/shared/write-capable-worker-disclosure.js +6 -0
  1934. package/dist/shared/write-capable-worker-disclosure.js.map +1 -0
  1935. package/dist/shared/zod-to-response-schema.d.ts +4 -0
  1936. package/dist/shared/zod-to-response-schema.d.ts.map +1 -0
  1937. package/dist/shared/zod-to-response-schema.js +88 -0
  1938. package/dist/shared/zod-to-response-schema.js.map +1 -0
  1939. package/dist/skill-hooks/decision-packet.d.ts +10 -0
  1940. package/dist/skill-hooks/decision-packet.d.ts.map +1 -0
  1941. package/dist/skill-hooks/decision-packet.js +42 -0
  1942. package/dist/skill-hooks/decision-packet.js.map +1 -0
  1943. package/dist/skill-hooks/dispatch.d.ts +27 -0
  1944. package/dist/skill-hooks/dispatch.d.ts.map +1 -0
  1945. package/dist/skill-hooks/dispatch.js +167 -0
  1946. package/dist/skill-hooks/dispatch.js.map +1 -0
  1947. package/dist/skill-hooks/injection.d.ts +7 -0
  1948. package/dist/skill-hooks/injection.d.ts.map +1 -0
  1949. package/dist/skill-hooks/injection.js +50 -0
  1950. package/dist/skill-hooks/injection.js.map +1 -0
  1951. package/dist/skill-hooks/policy.d.ts +32 -0
  1952. package/dist/skill-hooks/policy.d.ts.map +1 -0
  1953. package/dist/skill-hooks/policy.js +104 -0
  1954. package/dist/skill-hooks/policy.js.map +1 -0
  1955. package/dist/skill-hooks/surface-sources.d.ts +8 -0
  1956. package/dist/skill-hooks/surface-sources.d.ts.map +1 -0
  1957. package/dist/skill-hooks/surface-sources.js +55 -0
  1958. package/dist/skill-hooks/surface-sources.js.map +1 -0
  1959. package/generated/flows/build/circuit.json +439 -0
  1960. package/generated/flows/build/circuit.work-contract.v0.json +1283 -0
  1961. package/generated/flows/catalog.json +29 -0
  1962. package/generated/flows/converge-proof/circuit.json +145 -0
  1963. package/generated/flows/converge-proof/circuit.work-contract.v0.json +275 -0
  1964. package/generated/flows/cross-tool-build/circuit.json +321 -0
  1965. package/generated/flows/cross-tool-build/circuit.work-contract.v0.json +1157 -0
  1966. package/generated/flows/explainer/circuit.json +610 -0
  1967. package/generated/flows/explainer/circuit.work-contract.v0.json +1552 -0
  1968. package/generated/flows/explore/circuit.json +217 -0
  1969. package/generated/flows/explore/circuit.work-contract.v0.json +717 -0
  1970. package/generated/flows/explore/tournament.json +412 -0
  1971. package/generated/flows/explore/tournament.work-contract.v0.json +983 -0
  1972. package/generated/flows/fix/circuit.json +563 -0
  1973. package/generated/flows/fix/circuit.work-contract.v0.json +2175 -0
  1974. package/generated/flows/fix/low.json +511 -0
  1975. package/generated/flows/fix/low.work-contract.v0.json +1921 -0
  1976. package/generated/flows/fix-until-green/circuit.json +183 -0
  1977. package/generated/flows/fix-until-green/circuit.work-contract.v0.json +438 -0
  1978. package/generated/flows/goal/circuit.json +638 -0
  1979. package/generated/flows/goal/circuit.work-contract.v0.json +2133 -0
  1980. package/generated/flows/prototype/circuit.json +278 -0
  1981. package/generated/flows/prototype/circuit.work-contract.v0.json +690 -0
  1982. package/generated/flows/prototype/tournament.json +505 -0
  1983. package/generated/flows/prototype/tournament.work-contract.v0.json +1122 -0
  1984. package/generated/flows/pursue/circuit.json +298 -0
  1985. package/generated/flows/pursue/circuit.work-contract.v0.json +944 -0
  1986. package/generated/flows/review/circuit.json +142 -0
  1987. package/generated/flows/review/circuit.work-contract.v0.json +392 -0
  1988. package/generated/flows/runtime-proof/circuit.json +91 -0
  1989. package/generated/flows/runtime-proof/circuit.work-contract.v0.json +183 -0
  1990. package/generated/flows/sweep/circuit.json +239 -0
  1991. package/generated/flows/sweep/circuit.work-contract.v0.json +590 -0
  1992. package/package.json +102 -0
  1993. package/plugins/version.json +3 -0
@@ -0,0 +1,1921 @@
1
+ {
2
+ "schema_version": 0,
3
+ "contract_ref": {
4
+ "kind": "work_contract",
5
+ "ref": "generated/flows/fix/low.work-contract.v0.json",
6
+ "sha256": "2339bba7172c3e401e4d2e4672c69afc67bf265c4201b72403a3f428b344fded",
7
+ "flow_id": "fix"
8
+ },
9
+ "work_contract": {
10
+ "flow": {
11
+ "id": "fix",
12
+ "version": "0.1.0",
13
+ "purpose": "Fix captures the problem boundary, proves the pre-fix regression before a specialist relay edits the checkout, gathers context, diagnoses, applies a focused change, verifies, reviews at medium depth and above, and closes with evidence. If the reviewer connector is unavailable after proof passes, Fix closes with proof evidence and marks review skipped. Low depth skips the review relay after verification. fix-no-repro-decision and fix-handoff remain as future ask/handoff routing intent; they appear in compiled flows with declared ask/handoff recovery bindings, but the engine does not yet emit any failure cause those bindings accept, so no runtime path reaches them.",
14
+ "axes": {
15
+ "allowed_depths": ["low", "medium", "high"],
16
+ "supports_tournament": false,
17
+ "supports_autonomous": true,
18
+ "default": {
19
+ "depth": "medium",
20
+ "tournament": false,
21
+ "tournament_n": 3,
22
+ "autonomous": false
23
+ }
24
+ },
25
+ "starts_at": "fix-frame"
26
+ },
27
+ "topology": {
28
+ "stages": [
29
+ {
30
+ "id": "frame-stage",
31
+ "title": "Frame",
32
+ "canonical": "frame",
33
+ "steps": ["fix-frame"]
34
+ },
35
+ {
36
+ "id": "analyze-stage",
37
+ "title": "Analyze",
38
+ "canonical": "analyze",
39
+ "steps": ["fix-gather-context", "fix-diagnose", "fix-no-repro-decision"]
40
+ },
41
+ {
42
+ "id": "act-stage",
43
+ "title": "Act",
44
+ "canonical": "act",
45
+ "steps": ["fix-act"]
46
+ },
47
+ {
48
+ "id": "verify-stage",
49
+ "title": "Verify",
50
+ "canonical": "verify",
51
+ "steps": [
52
+ "fix-regression-baseline",
53
+ "fix-baseline-snapshot",
54
+ "fix-verify",
55
+ "fix-change-set",
56
+ "fix-regression-rerun"
57
+ ]
58
+ },
59
+ {
60
+ "id": "close-stage",
61
+ "title": "Close",
62
+ "canonical": "close",
63
+ "steps": ["fix-close-low", "fix-handoff"]
64
+ }
65
+ ],
66
+ "stage_path_policy": {
67
+ "mode": "partial",
68
+ "omits": ["plan", "review"],
69
+ "rationale": "Fix follows Frame, Analyze, Act, Verify, Review, Close. The Plan stage is omitted because Fix's planning is folded into Diagnose during the Analyze stage — there is no separate plan-of-attack report distinct from the diagnosis. mode 'low' (depth 'low') also omits 'review' because route_overrides leave those canonicals with no reachable items."
70
+ },
71
+ "routes": [
72
+ {
73
+ "step_id": "fix-frame",
74
+ "route_id": "continue",
75
+ "target": "fix-regression-baseline"
76
+ },
77
+ {
78
+ "step_id": "fix-frame",
79
+ "route_id": "pass",
80
+ "target": "fix-regression-baseline"
81
+ },
82
+ {
83
+ "step_id": "fix-frame",
84
+ "route_id": "revise",
85
+ "target": "fix-frame"
86
+ },
87
+ {
88
+ "step_id": "fix-frame",
89
+ "route_id": "ask",
90
+ "target": "@stop"
91
+ },
92
+ {
93
+ "step_id": "fix-frame",
94
+ "route_id": "stop",
95
+ "target": "@stop"
96
+ },
97
+ {
98
+ "step_id": "fix-gather-context",
99
+ "route_id": "continue",
100
+ "target": "fix-diagnose"
101
+ },
102
+ {
103
+ "step_id": "fix-gather-context",
104
+ "route_id": "pass",
105
+ "target": "fix-diagnose"
106
+ },
107
+ {
108
+ "step_id": "fix-gather-context",
109
+ "route_id": "retry",
110
+ "target": "fix-gather-context"
111
+ },
112
+ {
113
+ "step_id": "fix-gather-context",
114
+ "route_id": "ask",
115
+ "target": "@stop"
116
+ },
117
+ {
118
+ "step_id": "fix-gather-context",
119
+ "route_id": "stop",
120
+ "target": "@stop"
121
+ },
122
+ {
123
+ "step_id": "fix-diagnose",
124
+ "route_id": "continue",
125
+ "target": "fix-act"
126
+ },
127
+ {
128
+ "step_id": "fix-diagnose",
129
+ "route_id": "pass",
130
+ "target": "fix-act"
131
+ },
132
+ {
133
+ "step_id": "fix-diagnose",
134
+ "route_id": "retry",
135
+ "target": "fix-gather-context"
136
+ },
137
+ {
138
+ "step_id": "fix-diagnose",
139
+ "route_id": "ask",
140
+ "target": "fix-no-repro-decision"
141
+ },
142
+ {
143
+ "step_id": "fix-diagnose",
144
+ "route_id": "stop",
145
+ "target": "@stop"
146
+ },
147
+ {
148
+ "step_id": "fix-no-repro-decision",
149
+ "route_id": "continue",
150
+ "target": "fix-act"
151
+ },
152
+ {
153
+ "step_id": "fix-no-repro-decision",
154
+ "route_id": "pass",
155
+ "target": "fix-act"
156
+ },
157
+ {
158
+ "step_id": "fix-no-repro-decision",
159
+ "route_id": "revise",
160
+ "target": "fix-diagnose"
161
+ },
162
+ {
163
+ "step_id": "fix-no-repro-decision",
164
+ "route_id": "stop",
165
+ "target": "@stop"
166
+ },
167
+ {
168
+ "step_id": "fix-no-repro-decision",
169
+ "route_id": "handoff",
170
+ "target": "fix-handoff"
171
+ },
172
+ {
173
+ "step_id": "fix-no-repro-decision",
174
+ "route_id": "escalate",
175
+ "target": "@escalate"
176
+ },
177
+ {
178
+ "step_id": "fix-regression-baseline",
179
+ "route_id": "continue",
180
+ "target": "fix-baseline-snapshot"
181
+ },
182
+ {
183
+ "step_id": "fix-regression-baseline",
184
+ "route_id": "pass",
185
+ "target": "fix-baseline-snapshot"
186
+ },
187
+ {
188
+ "step_id": "fix-regression-baseline",
189
+ "route_id": "retry",
190
+ "target": "fix-frame"
191
+ },
192
+ {
193
+ "step_id": "fix-regression-baseline",
194
+ "route_id": "stop",
195
+ "target": "@stop"
196
+ },
197
+ {
198
+ "step_id": "fix-baseline-snapshot",
199
+ "route_id": "continue",
200
+ "target": "fix-gather-context"
201
+ },
202
+ {
203
+ "step_id": "fix-baseline-snapshot",
204
+ "route_id": "pass",
205
+ "target": "fix-gather-context"
206
+ },
207
+ {
208
+ "step_id": "fix-baseline-snapshot",
209
+ "route_id": "stop",
210
+ "target": "@stop"
211
+ },
212
+ {
213
+ "step_id": "fix-act",
214
+ "route_id": "continue",
215
+ "target": "fix-verify"
216
+ },
217
+ {
218
+ "step_id": "fix-act",
219
+ "route_id": "pass",
220
+ "target": "fix-verify"
221
+ },
222
+ {
223
+ "step_id": "fix-act",
224
+ "route_id": "retry",
225
+ "target": "fix-act"
226
+ },
227
+ {
228
+ "step_id": "fix-act",
229
+ "route_id": "ask",
230
+ "target": "fix-no-repro-decision"
231
+ },
232
+ {
233
+ "step_id": "fix-act",
234
+ "route_id": "stop",
235
+ "target": "@stop"
236
+ },
237
+ {
238
+ "step_id": "fix-act",
239
+ "route_id": "handoff",
240
+ "target": "fix-handoff"
241
+ },
242
+ {
243
+ "step_id": "fix-verify",
244
+ "route_id": "continue",
245
+ "target": "fix-change-set"
246
+ },
247
+ {
248
+ "step_id": "fix-verify",
249
+ "route_id": "pass",
250
+ "target": "fix-change-set"
251
+ },
252
+ {
253
+ "step_id": "fix-verify",
254
+ "route_id": "retry",
255
+ "target": "fix-act"
256
+ },
257
+ {
258
+ "step_id": "fix-verify",
259
+ "route_id": "ask",
260
+ "target": "fix-no-repro-decision"
261
+ },
262
+ {
263
+ "step_id": "fix-verify",
264
+ "route_id": "stop",
265
+ "target": "@stop"
266
+ },
267
+ {
268
+ "step_id": "fix-change-set",
269
+ "route_id": "continue",
270
+ "target": "fix-regression-rerun"
271
+ },
272
+ {
273
+ "step_id": "fix-change-set",
274
+ "route_id": "pass",
275
+ "target": "fix-regression-rerun"
276
+ },
277
+ {
278
+ "step_id": "fix-change-set",
279
+ "route_id": "retry",
280
+ "target": "fix-act"
281
+ },
282
+ {
283
+ "step_id": "fix-change-set",
284
+ "route_id": "stop",
285
+ "target": "@stop"
286
+ },
287
+ {
288
+ "step_id": "fix-regression-rerun",
289
+ "route_id": "continue",
290
+ "target": "fix-close-low"
291
+ },
292
+ {
293
+ "step_id": "fix-regression-rerun",
294
+ "route_id": "pass",
295
+ "target": "fix-close-low"
296
+ },
297
+ {
298
+ "step_id": "fix-regression-rerun",
299
+ "route_id": "retry",
300
+ "target": "fix-act"
301
+ },
302
+ {
303
+ "step_id": "fix-regression-rerun",
304
+ "route_id": "stop",
305
+ "target": "@stop"
306
+ },
307
+ {
308
+ "step_id": "fix-close-low",
309
+ "route_id": "complete",
310
+ "target": "@complete"
311
+ },
312
+ {
313
+ "step_id": "fix-close-low",
314
+ "route_id": "pass",
315
+ "target": "@complete"
316
+ },
317
+ {
318
+ "step_id": "fix-close-low",
319
+ "route_id": "stop",
320
+ "target": "@stop"
321
+ },
322
+ {
323
+ "step_id": "fix-close-low",
324
+ "route_id": "handoff",
325
+ "target": "fix-handoff"
326
+ },
327
+ {
328
+ "step_id": "fix-close-low",
329
+ "route_id": "escalate",
330
+ "target": "@escalate"
331
+ },
332
+ {
333
+ "step_id": "fix-handoff",
334
+ "route_id": "complete",
335
+ "target": "@handoff"
336
+ },
337
+ {
338
+ "step_id": "fix-handoff",
339
+ "route_id": "pass",
340
+ "target": "@handoff"
341
+ },
342
+ {
343
+ "step_id": "fix-handoff",
344
+ "route_id": "stop",
345
+ "target": "@stop"
346
+ }
347
+ ]
348
+ },
349
+ "blocks": [
350
+ {
351
+ "step_id": "fix-frame",
352
+ "title": "Frame — confirm Fix brief",
353
+ "kind": "compose",
354
+ "executor": "orchestrator",
355
+ "protocol": "fix-frame@v1",
356
+ "reads": [],
357
+ "writes": {
358
+ "report": {
359
+ "path": "reports/fix/brief.json",
360
+ "schema": "fix.brief@v1"
361
+ }
362
+ },
363
+ "check": {
364
+ "kind": "schema_sections",
365
+ "source": {
366
+ "kind": "report",
367
+ "ref": "report"
368
+ },
369
+ "required": ["problem_statement", "scope", "regression_contract", "success_criteria"]
370
+ },
371
+ "routes": {
372
+ "continue": "fix-regression-baseline",
373
+ "pass": "fix-regression-baseline",
374
+ "revise": "fix-frame",
375
+ "ask": "@stop",
376
+ "stop": "@stop"
377
+ }
378
+ },
379
+ {
380
+ "step_id": "fix-gather-context",
381
+ "title": "Analyze — gather problem context",
382
+ "kind": "relay",
383
+ "executor": "worker",
384
+ "protocol": "fix-gather-context@v1",
385
+ "reads": ["reports/fix/brief.json"],
386
+ "writes": {
387
+ "report": {
388
+ "path": "reports/fix/context.json",
389
+ "schema": "fix.context@v1"
390
+ },
391
+ "request": "reports/relay/fix-gather-context.request.json",
392
+ "receipt": "reports/relay/fix-gather-context.receipt.txt",
393
+ "result": "reports/relay/fix-gather-context.result.json"
394
+ },
395
+ "check": {
396
+ "kind": "result_verdict",
397
+ "source": {
398
+ "kind": "relay_result",
399
+ "ref": "result"
400
+ },
401
+ "pass": ["accept"]
402
+ },
403
+ "routes": {
404
+ "continue": "fix-diagnose",
405
+ "pass": "fix-diagnose",
406
+ "retry": "fix-gather-context",
407
+ "ask": "@stop",
408
+ "stop": "@stop"
409
+ }
410
+ },
411
+ {
412
+ "step_id": "fix-diagnose",
413
+ "title": "Analyze — diagnose problem",
414
+ "kind": "relay",
415
+ "executor": "worker",
416
+ "protocol": "fix-diagnose@v1",
417
+ "reads": ["reports/fix/brief.json", "reports/fix/context.json"],
418
+ "writes": {
419
+ "report": {
420
+ "path": "reports/fix/diagnosis.json",
421
+ "schema": "fix.diagnosis@v1"
422
+ },
423
+ "request": "reports/relay/fix-diagnose.request.json",
424
+ "receipt": "reports/relay/fix-diagnose.receipt.txt",
425
+ "result": "reports/relay/fix-diagnose.result.json"
426
+ },
427
+ "check": {
428
+ "kind": "result_verdict",
429
+ "source": {
430
+ "kind": "relay_result",
431
+ "ref": "result"
432
+ },
433
+ "pass": ["accept"]
434
+ },
435
+ "routes": {
436
+ "continue": "fix-act",
437
+ "pass": "fix-act",
438
+ "retry": "fix-gather-context",
439
+ "ask": "fix-no-repro-decision",
440
+ "stop": "@stop"
441
+ }
442
+ },
443
+ {
444
+ "step_id": "fix-no-repro-decision",
445
+ "title": "Analyze — choose path forward when reproduction is uncertain",
446
+ "kind": "checkpoint",
447
+ "executor": "orchestrator",
448
+ "protocol": "fix-no-repro-decision@v1",
449
+ "reads": ["reports/fix/diagnosis.json"],
450
+ "writes": {
451
+ "request": "reports/checkpoints/fix-no-repro-decision-request.json",
452
+ "response": "reports/checkpoints/fix-no-repro-decision-response.json"
453
+ },
454
+ "check": {
455
+ "kind": "checkpoint_selection",
456
+ "source": {
457
+ "kind": "checkpoint_response",
458
+ "ref": "response"
459
+ },
460
+ "allow": ["continue"]
461
+ },
462
+ "routes": {
463
+ "continue": "fix-act",
464
+ "pass": "fix-act",
465
+ "revise": "fix-diagnose",
466
+ "stop": "@stop",
467
+ "handoff": "fix-handoff",
468
+ "escalate": "@escalate"
469
+ }
470
+ },
471
+ {
472
+ "step_id": "fix-regression-baseline",
473
+ "title": "Verify — capture regression baseline",
474
+ "kind": "verification",
475
+ "executor": "orchestrator",
476
+ "protocol": "fix-regression-baseline@v1",
477
+ "reads": ["reports/fix/brief.json"],
478
+ "writes": {
479
+ "report": {
480
+ "path": "reports/fix/regression-proof.json",
481
+ "schema": "fix.regression-proof@v1"
482
+ }
483
+ },
484
+ "check": {
485
+ "kind": "schema_sections",
486
+ "source": {
487
+ "kind": "report",
488
+ "ref": "report"
489
+ },
490
+ "required": ["status", "overall_status"]
491
+ },
492
+ "routes": {
493
+ "continue": "fix-baseline-snapshot",
494
+ "pass": "fix-baseline-snapshot",
495
+ "retry": "fix-frame",
496
+ "stop": "@stop"
497
+ }
498
+ },
499
+ {
500
+ "step_id": "fix-baseline-snapshot",
501
+ "title": "Verify — snapshot pre-fix git state",
502
+ "kind": "verification",
503
+ "executor": "orchestrator",
504
+ "protocol": "fix-baseline-snapshot@v1",
505
+ "reads": [],
506
+ "writes": {
507
+ "report": {
508
+ "path": "reports/fix/baseline-snapshot.json",
509
+ "schema": "fix.baseline-snapshot@v1"
510
+ }
511
+ },
512
+ "check": {
513
+ "kind": "schema_sections",
514
+ "source": {
515
+ "kind": "report",
516
+ "ref": "report"
517
+ },
518
+ "required": ["overall_status", "head_sha"]
519
+ },
520
+ "routes": {
521
+ "continue": "fix-gather-context",
522
+ "pass": "fix-gather-context",
523
+ "stop": "@stop"
524
+ }
525
+ },
526
+ {
527
+ "step_id": "fix-act",
528
+ "title": "Act — apply focused fix",
529
+ "kind": "relay",
530
+ "executor": "worker",
531
+ "protocol": "fix-act@v1",
532
+ "reads": ["reports/fix/brief.json", "reports/fix/diagnosis.json"],
533
+ "writes": {
534
+ "report": {
535
+ "path": "reports/fix/change.json",
536
+ "schema": "fix.change@v1"
537
+ },
538
+ "request": "reports/relay/fix-act.request.json",
539
+ "receipt": "reports/relay/fix-act.receipt.txt",
540
+ "result": "reports/relay/fix-act.result.json"
541
+ },
542
+ "check": {
543
+ "kind": "result_verdict",
544
+ "source": {
545
+ "kind": "relay_result",
546
+ "ref": "result"
547
+ },
548
+ "pass": ["accept"]
549
+ },
550
+ "routes": {
551
+ "continue": "fix-verify",
552
+ "pass": "fix-verify",
553
+ "retry": "fix-act",
554
+ "ask": "fix-no-repro-decision",
555
+ "stop": "@stop",
556
+ "handoff": "fix-handoff"
557
+ }
558
+ },
559
+ {
560
+ "step_id": "fix-verify",
561
+ "title": "Verify — run Fix proof",
562
+ "kind": "verification",
563
+ "executor": "orchestrator",
564
+ "protocol": "fix-verify@v1",
565
+ "reads": ["reports/fix/brief.json", "reports/fix/change.json"],
566
+ "writes": {
567
+ "report": {
568
+ "path": "reports/fix/verification.json",
569
+ "schema": "fix.verification@v1"
570
+ }
571
+ },
572
+ "check": {
573
+ "kind": "schema_sections",
574
+ "source": {
575
+ "kind": "report",
576
+ "ref": "report"
577
+ },
578
+ "required": ["overall_status", "commands"]
579
+ },
580
+ "routes": {
581
+ "continue": "fix-change-set",
582
+ "pass": "fix-change-set",
583
+ "retry": "fix-act",
584
+ "ask": "fix-no-repro-decision",
585
+ "stop": "@stop"
586
+ }
587
+ },
588
+ {
589
+ "step_id": "fix-change-set",
590
+ "title": "Verify — compute fix change-set",
591
+ "kind": "verification",
592
+ "executor": "orchestrator",
593
+ "protocol": "fix-change-set@v1",
594
+ "reads": ["reports/fix/baseline-snapshot.json", "reports/fix/change.json"],
595
+ "writes": {
596
+ "report": {
597
+ "path": "reports/fix/change-set.json",
598
+ "schema": "fix.change-set@v1"
599
+ }
600
+ },
601
+ "check": {
602
+ "kind": "schema_sections",
603
+ "source": {
604
+ "kind": "report",
605
+ "ref": "report"
606
+ },
607
+ "required": ["status", "overall_status"]
608
+ },
609
+ "routes": {
610
+ "continue": "fix-regression-rerun",
611
+ "pass": "fix-regression-rerun",
612
+ "retry": "fix-act",
613
+ "stop": "@stop"
614
+ }
615
+ },
616
+ {
617
+ "step_id": "fix-regression-rerun",
618
+ "title": "Verify — rerun regression command after fix",
619
+ "kind": "verification",
620
+ "executor": "orchestrator",
621
+ "protocol": "fix-regression-rerun@v1",
622
+ "reads": ["reports/fix/brief.json"],
623
+ "writes": {
624
+ "report": {
625
+ "path": "reports/fix/regression-rerun.json",
626
+ "schema": "fix.regression-rerun@v1"
627
+ }
628
+ },
629
+ "check": {
630
+ "kind": "schema_sections",
631
+ "source": {
632
+ "kind": "report",
633
+ "ref": "report"
634
+ },
635
+ "required": ["status", "overall_status"]
636
+ },
637
+ "routes": {
638
+ "continue": "fix-close-low",
639
+ "pass": "fix-close-low",
640
+ "retry": "fix-act",
641
+ "stop": "@stop"
642
+ }
643
+ },
644
+ {
645
+ "step_id": "fix-close-low",
646
+ "title": "Close (low depth) — emit Fix result without review",
647
+ "kind": "compose",
648
+ "executor": "orchestrator",
649
+ "protocol": "fix-close-low@v1",
650
+ "reads": [
651
+ "reports/fix/brief.json",
652
+ "reports/fix/context.json",
653
+ "reports/fix/diagnosis.json",
654
+ "reports/fix/regression-proof.json",
655
+ "reports/fix/baseline-snapshot.json",
656
+ "reports/fix/change.json",
657
+ "reports/fix/verification.json",
658
+ "reports/fix/regression-rerun.json",
659
+ "reports/fix/change-set.json"
660
+ ],
661
+ "writes": {
662
+ "report": {
663
+ "path": "reports/fix-result.json",
664
+ "schema": "fix.result@v1"
665
+ }
666
+ },
667
+ "check": {
668
+ "kind": "schema_sections",
669
+ "source": {
670
+ "kind": "report",
671
+ "ref": "report"
672
+ },
673
+ "required": [
674
+ "summary",
675
+ "outcome",
676
+ "verification_status",
677
+ "regression_status",
678
+ "change_set_status",
679
+ "review_status",
680
+ "evidence_links"
681
+ ]
682
+ },
683
+ "routes": {
684
+ "complete": "@complete",
685
+ "pass": "@complete",
686
+ "stop": "@stop",
687
+ "handoff": "fix-handoff",
688
+ "escalate": "@escalate"
689
+ }
690
+ },
691
+ {
692
+ "step_id": "fix-handoff",
693
+ "title": "Persist Fix handoff",
694
+ "kind": "compose",
695
+ "executor": "orchestrator",
696
+ "protocol": "fix-handoff@v1",
697
+ "reads": ["reports/fix/brief.json"],
698
+ "writes": {
699
+ "report": {
700
+ "path": "reports/fix/handoff.json",
701
+ "schema": "continuity.record@v1"
702
+ }
703
+ },
704
+ "check": {
705
+ "kind": "schema_sections",
706
+ "source": {
707
+ "kind": "report",
708
+ "ref": "report"
709
+ },
710
+ "required": ["goal", "next_action"]
711
+ },
712
+ "routes": {
713
+ "complete": "@handoff",
714
+ "pass": "@handoff",
715
+ "stop": "@stop"
716
+ }
717
+ }
718
+ ],
719
+ "authority": {
720
+ "relays": [
721
+ {
722
+ "step_id": "fix-gather-context",
723
+ "role": "researcher",
724
+ "writes": {
725
+ "report": {
726
+ "path": "reports/fix/context.json",
727
+ "schema": "fix.context@v1"
728
+ },
729
+ "request": "reports/relay/fix-gather-context.request.json",
730
+ "receipt": "reports/relay/fix-gather-context.receipt.txt",
731
+ "result": "reports/relay/fix-gather-context.result.json"
732
+ },
733
+ "report": {
734
+ "step_id": "fix-gather-context",
735
+ "slot": "report",
736
+ "path": "reports/fix/context.json",
737
+ "schema": "fix.context@v1"
738
+ }
739
+ },
740
+ {
741
+ "step_id": "fix-diagnose",
742
+ "role": "researcher",
743
+ "writes": {
744
+ "report": {
745
+ "path": "reports/fix/diagnosis.json",
746
+ "schema": "fix.diagnosis@v1"
747
+ },
748
+ "request": "reports/relay/fix-diagnose.request.json",
749
+ "receipt": "reports/relay/fix-diagnose.receipt.txt",
750
+ "result": "reports/relay/fix-diagnose.result.json"
751
+ },
752
+ "report": {
753
+ "step_id": "fix-diagnose",
754
+ "slot": "report",
755
+ "path": "reports/fix/diagnosis.json",
756
+ "schema": "fix.diagnosis@v1"
757
+ }
758
+ },
759
+ {
760
+ "step_id": "fix-act",
761
+ "role": "implementer",
762
+ "writes": {
763
+ "report": {
764
+ "path": "reports/fix/change.json",
765
+ "schema": "fix.change@v1"
766
+ },
767
+ "request": "reports/relay/fix-act.request.json",
768
+ "receipt": "reports/relay/fix-act.receipt.txt",
769
+ "result": "reports/relay/fix-act.result.json"
770
+ },
771
+ "report": {
772
+ "step_id": "fix-act",
773
+ "slot": "report",
774
+ "path": "reports/fix/change.json",
775
+ "schema": "fix.change@v1"
776
+ }
777
+ }
778
+ ],
779
+ "checkpoints": [
780
+ {
781
+ "step_id": "fix-no-repro-decision",
782
+ "choices": {
783
+ "kind": "static",
784
+ "ids": ["continue"]
785
+ },
786
+ "writes": {
787
+ "request": "reports/checkpoints/fix-no-repro-decision-request.json",
788
+ "response": "reports/checkpoints/fix-no-repro-decision-response.json"
789
+ }
790
+ }
791
+ ],
792
+ "sub_runs": [],
793
+ "fanouts": [],
794
+ "skill_slots": [
795
+ {
796
+ "step_id": "fix-gather-context",
797
+ "slot_id": "fix-codebase-search",
798
+ "description": "A skill for navigating and searching the codebase to locate the code involved in the reported problem."
799
+ },
800
+ {
801
+ "step_id": "fix-diagnose",
802
+ "slot_id": "fix-root-cause-analysis",
803
+ "description": "A skill for forming and testing hypotheses about the root cause of a bug before any change is made."
804
+ },
805
+ {
806
+ "step_id": "fix-act",
807
+ "slot_id": "fix-focused-edit",
808
+ "description": "A skill for making the smallest correct code edit that resolves the diagnosed problem."
809
+ }
810
+ ],
811
+ "equipment_scopes": [
812
+ {
813
+ "step_id": "fix-act",
814
+ "tools": {
815
+ "allow": ["Read", "Grep", "Glob", "Edit", "Write", "Bash"]
816
+ },
817
+ "enforcement": "enforced"
818
+ }
819
+ ]
820
+ },
821
+ "proof": {
822
+ "reports": [
823
+ {
824
+ "step_id": "fix-frame",
825
+ "slot": "report",
826
+ "path": "reports/fix/brief.json",
827
+ "schema": "fix.brief@v1"
828
+ },
829
+ {
830
+ "step_id": "fix-gather-context",
831
+ "slot": "report",
832
+ "path": "reports/fix/context.json",
833
+ "schema": "fix.context@v1"
834
+ },
835
+ {
836
+ "step_id": "fix-diagnose",
837
+ "slot": "report",
838
+ "path": "reports/fix/diagnosis.json",
839
+ "schema": "fix.diagnosis@v1"
840
+ },
841
+ {
842
+ "step_id": "fix-regression-baseline",
843
+ "slot": "report",
844
+ "path": "reports/fix/regression-proof.json",
845
+ "schema": "fix.regression-proof@v1"
846
+ },
847
+ {
848
+ "step_id": "fix-baseline-snapshot",
849
+ "slot": "report",
850
+ "path": "reports/fix/baseline-snapshot.json",
851
+ "schema": "fix.baseline-snapshot@v1"
852
+ },
853
+ {
854
+ "step_id": "fix-act",
855
+ "slot": "report",
856
+ "path": "reports/fix/change.json",
857
+ "schema": "fix.change@v1"
858
+ },
859
+ {
860
+ "step_id": "fix-verify",
861
+ "slot": "report",
862
+ "path": "reports/fix/verification.json",
863
+ "schema": "fix.verification@v1"
864
+ },
865
+ {
866
+ "step_id": "fix-change-set",
867
+ "slot": "report",
868
+ "path": "reports/fix/change-set.json",
869
+ "schema": "fix.change-set@v1"
870
+ },
871
+ {
872
+ "step_id": "fix-regression-rerun",
873
+ "slot": "report",
874
+ "path": "reports/fix/regression-rerun.json",
875
+ "schema": "fix.regression-rerun@v1"
876
+ },
877
+ {
878
+ "step_id": "fix-close-low",
879
+ "slot": "report",
880
+ "path": "reports/fix-result.json",
881
+ "schema": "fix.result@v1"
882
+ },
883
+ {
884
+ "step_id": "fix-handoff",
885
+ "slot": "report",
886
+ "path": "reports/fix/handoff.json",
887
+ "schema": "continuity.record@v1"
888
+ }
889
+ ],
890
+ "checks": [
891
+ {
892
+ "step_id": "fix-frame",
893
+ "check_kind": "schema_sections",
894
+ "source": {
895
+ "kind": "report",
896
+ "ref": "report"
897
+ }
898
+ },
899
+ {
900
+ "step_id": "fix-gather-context",
901
+ "check_kind": "result_verdict",
902
+ "source": {
903
+ "kind": "relay_result",
904
+ "ref": "result"
905
+ }
906
+ },
907
+ {
908
+ "step_id": "fix-diagnose",
909
+ "check_kind": "result_verdict",
910
+ "source": {
911
+ "kind": "relay_result",
912
+ "ref": "result"
913
+ }
914
+ },
915
+ {
916
+ "step_id": "fix-no-repro-decision",
917
+ "check_kind": "checkpoint_selection",
918
+ "source": {
919
+ "kind": "checkpoint_response",
920
+ "ref": "response"
921
+ }
922
+ },
923
+ {
924
+ "step_id": "fix-regression-baseline",
925
+ "check_kind": "schema_sections",
926
+ "source": {
927
+ "kind": "report",
928
+ "ref": "report"
929
+ }
930
+ },
931
+ {
932
+ "step_id": "fix-baseline-snapshot",
933
+ "check_kind": "schema_sections",
934
+ "source": {
935
+ "kind": "report",
936
+ "ref": "report"
937
+ }
938
+ },
939
+ {
940
+ "step_id": "fix-act",
941
+ "check_kind": "result_verdict",
942
+ "source": {
943
+ "kind": "relay_result",
944
+ "ref": "result"
945
+ }
946
+ },
947
+ {
948
+ "step_id": "fix-verify",
949
+ "check_kind": "schema_sections",
950
+ "source": {
951
+ "kind": "report",
952
+ "ref": "report"
953
+ }
954
+ },
955
+ {
956
+ "step_id": "fix-change-set",
957
+ "check_kind": "schema_sections",
958
+ "source": {
959
+ "kind": "report",
960
+ "ref": "report"
961
+ }
962
+ },
963
+ {
964
+ "step_id": "fix-regression-rerun",
965
+ "check_kind": "schema_sections",
966
+ "source": {
967
+ "kind": "report",
968
+ "ref": "report"
969
+ }
970
+ },
971
+ {
972
+ "step_id": "fix-close-low",
973
+ "check_kind": "schema_sections",
974
+ "source": {
975
+ "kind": "report",
976
+ "ref": "report"
977
+ }
978
+ },
979
+ {
980
+ "step_id": "fix-handoff",
981
+ "check_kind": "schema_sections",
982
+ "source": {
983
+ "kind": "report",
984
+ "ref": "report"
985
+ }
986
+ }
987
+ ],
988
+ "acceptance_criteria": [
989
+ {
990
+ "kind": "acceptance_criteria_input",
991
+ "step_id": "fix-act",
992
+ "criteria": {
993
+ "checks": [
994
+ {
995
+ "kind": "report_field",
996
+ "id": "changed-files-present",
997
+ "path": ["changed_files"],
998
+ "predicate": "present"
999
+ },
1000
+ {
1001
+ "kind": "report_field",
1002
+ "id": "changed-files-on-disk",
1003
+ "path": ["changed_files"],
1004
+ "predicate": "changed_on_disk"
1005
+ },
1006
+ {
1007
+ "kind": "report_field",
1008
+ "id": "evidence-non-empty",
1009
+ "path": ["evidence"],
1010
+ "predicate": "non_empty"
1011
+ }
1012
+ ],
1013
+ "on_failure": {
1014
+ "mode": "retry-with-feedback"
1015
+ }
1016
+ }
1017
+ }
1018
+ ]
1019
+ },
1020
+ "recovery": [
1021
+ {
1022
+ "schema_version": 0,
1023
+ "step_id": "fix-frame",
1024
+ "route_id": "revise",
1025
+ "route_target": "fix-frame",
1026
+ "kind": "narrow_scope",
1027
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1028
+ "required_refs": ["proof_assessment", "runtime_diff"],
1029
+ "operator_authority": "not_required",
1030
+ "attempt_budget": {
1031
+ "consumes_step_attempt": false,
1032
+ "must_respect_max_attempts": true,
1033
+ "retry_target": "declared_step"
1034
+ },
1035
+ "guidance": {
1036
+ "subject": "recovery_route",
1037
+ "must_match_step_completed": true
1038
+ },
1039
+ "source_ref": {
1040
+ "kind": "work_contract",
1041
+ "ref": "compiled-flow/steps/fix-frame/routes/revise",
1042
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1043
+ "flow_id": "fix"
1044
+ }
1045
+ },
1046
+ {
1047
+ "schema_version": 0,
1048
+ "step_id": "fix-frame",
1049
+ "route_id": "ask",
1050
+ "route_target": "@stop",
1051
+ "kind": "checkpoint_authority",
1052
+ "allowed_failure_causes": [
1053
+ "checkpoint_boundary",
1054
+ "protected_file_touched",
1055
+ "budget_exceeded",
1056
+ "unknown_failure"
1057
+ ],
1058
+ "required_refs": ["checkpoint_request", "runtime_diff", "budget_state"],
1059
+ "operator_authority": "required_before_route",
1060
+ "attempt_budget": {
1061
+ "consumes_step_attempt": false,
1062
+ "must_respect_max_attempts": true,
1063
+ "retry_target": "declared_step"
1064
+ },
1065
+ "guidance": {
1066
+ "subject": "recovery_route",
1067
+ "must_match_step_completed": true
1068
+ },
1069
+ "source_ref": {
1070
+ "kind": "work_contract",
1071
+ "ref": "compiled-flow/steps/fix-frame/routes/ask",
1072
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1073
+ "flow_id": "fix"
1074
+ }
1075
+ },
1076
+ {
1077
+ "schema_version": 0,
1078
+ "step_id": "fix-frame",
1079
+ "route_id": "stop",
1080
+ "route_target": "@stop",
1081
+ "kind": "stop_unsafe",
1082
+ "allowed_failure_causes": [
1083
+ "failed_check",
1084
+ "contradicted_evidence",
1085
+ "scope_drift",
1086
+ "budget_exceeded",
1087
+ "unknown_failure"
1088
+ ],
1089
+ "required_refs": ["failed_check", "trace"],
1090
+ "operator_authority": "not_required",
1091
+ "attempt_budget": {
1092
+ "consumes_step_attempt": false,
1093
+ "must_respect_max_attempts": true,
1094
+ "retry_target": "declared_step"
1095
+ },
1096
+ "guidance": {
1097
+ "subject": "recovery_route",
1098
+ "must_match_step_completed": true
1099
+ },
1100
+ "source_ref": {
1101
+ "kind": "work_contract",
1102
+ "ref": "compiled-flow/steps/fix-frame/routes/stop",
1103
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1104
+ "flow_id": "fix"
1105
+ }
1106
+ },
1107
+ {
1108
+ "schema_version": 0,
1109
+ "step_id": "fix-gather-context",
1110
+ "route_id": "retry",
1111
+ "route_target": "fix-gather-context",
1112
+ "kind": "retry_same_step_with_feedback",
1113
+ "allowed_failure_causes": [
1114
+ "failed_check",
1115
+ "failed_acceptance_criteria",
1116
+ "relay_result_invalid"
1117
+ ],
1118
+ "required_refs": ["failed_check", "acceptance_feedback", "budget_state"],
1119
+ "operator_authority": "not_required",
1120
+ "attempt_budget": {
1121
+ "consumes_step_attempt": true,
1122
+ "must_respect_max_attempts": true,
1123
+ "retry_target": "same_step"
1124
+ },
1125
+ "guidance": {
1126
+ "subject": "recovery_route",
1127
+ "must_match_step_completed": true
1128
+ },
1129
+ "source_ref": {
1130
+ "kind": "work_contract",
1131
+ "ref": "compiled-flow/steps/fix-gather-context/routes/retry",
1132
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1133
+ "flow_id": "fix"
1134
+ }
1135
+ },
1136
+ {
1137
+ "schema_version": 0,
1138
+ "step_id": "fix-gather-context",
1139
+ "route_id": "ask",
1140
+ "route_target": "@stop",
1141
+ "kind": "checkpoint_authority",
1142
+ "allowed_failure_causes": [
1143
+ "checkpoint_boundary",
1144
+ "protected_file_touched",
1145
+ "budget_exceeded",
1146
+ "unknown_failure"
1147
+ ],
1148
+ "required_refs": ["checkpoint_request", "runtime_diff", "budget_state"],
1149
+ "operator_authority": "required_before_route",
1150
+ "attempt_budget": {
1151
+ "consumes_step_attempt": false,
1152
+ "must_respect_max_attempts": true,
1153
+ "retry_target": "declared_step"
1154
+ },
1155
+ "guidance": {
1156
+ "subject": "recovery_route",
1157
+ "must_match_step_completed": true
1158
+ },
1159
+ "source_ref": {
1160
+ "kind": "work_contract",
1161
+ "ref": "compiled-flow/steps/fix-gather-context/routes/ask",
1162
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1163
+ "flow_id": "fix"
1164
+ }
1165
+ },
1166
+ {
1167
+ "schema_version": 0,
1168
+ "step_id": "fix-gather-context",
1169
+ "route_id": "stop",
1170
+ "route_target": "@stop",
1171
+ "kind": "stop_unsafe",
1172
+ "allowed_failure_causes": [
1173
+ "failed_check",
1174
+ "contradicted_evidence",
1175
+ "scope_drift",
1176
+ "budget_exceeded",
1177
+ "unknown_failure"
1178
+ ],
1179
+ "required_refs": ["failed_check", "trace"],
1180
+ "operator_authority": "not_required",
1181
+ "attempt_budget": {
1182
+ "consumes_step_attempt": false,
1183
+ "must_respect_max_attempts": true,
1184
+ "retry_target": "declared_step"
1185
+ },
1186
+ "guidance": {
1187
+ "subject": "recovery_route",
1188
+ "must_match_step_completed": true
1189
+ },
1190
+ "source_ref": {
1191
+ "kind": "work_contract",
1192
+ "ref": "compiled-flow/steps/fix-gather-context/routes/stop",
1193
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1194
+ "flow_id": "fix"
1195
+ }
1196
+ },
1197
+ {
1198
+ "schema_version": 0,
1199
+ "step_id": "fix-diagnose",
1200
+ "route_id": "retry",
1201
+ "route_target": "fix-gather-context",
1202
+ "kind": "narrow_scope",
1203
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1204
+ "required_refs": ["proof_assessment", "runtime_diff"],
1205
+ "operator_authority": "not_required",
1206
+ "attempt_budget": {
1207
+ "consumes_step_attempt": false,
1208
+ "must_respect_max_attempts": true,
1209
+ "retry_target": "declared_step"
1210
+ },
1211
+ "guidance": {
1212
+ "subject": "recovery_route",
1213
+ "must_match_step_completed": true
1214
+ },
1215
+ "source_ref": {
1216
+ "kind": "work_contract",
1217
+ "ref": "compiled-flow/steps/fix-diagnose/routes/retry",
1218
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1219
+ "flow_id": "fix"
1220
+ }
1221
+ },
1222
+ {
1223
+ "schema_version": 0,
1224
+ "step_id": "fix-diagnose",
1225
+ "route_id": "ask",
1226
+ "route_target": "fix-no-repro-decision",
1227
+ "kind": "checkpoint_authority",
1228
+ "allowed_failure_causes": [
1229
+ "checkpoint_boundary",
1230
+ "protected_file_touched",
1231
+ "budget_exceeded",
1232
+ "unknown_failure"
1233
+ ],
1234
+ "required_refs": ["checkpoint_request", "runtime_diff", "budget_state"],
1235
+ "operator_authority": "required_before_route",
1236
+ "attempt_budget": {
1237
+ "consumes_step_attempt": false,
1238
+ "must_respect_max_attempts": true,
1239
+ "retry_target": "declared_step"
1240
+ },
1241
+ "guidance": {
1242
+ "subject": "recovery_route",
1243
+ "must_match_step_completed": true
1244
+ },
1245
+ "source_ref": {
1246
+ "kind": "work_contract",
1247
+ "ref": "compiled-flow/steps/fix-diagnose/routes/ask",
1248
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1249
+ "flow_id": "fix"
1250
+ }
1251
+ },
1252
+ {
1253
+ "schema_version": 0,
1254
+ "step_id": "fix-diagnose",
1255
+ "route_id": "stop",
1256
+ "route_target": "@stop",
1257
+ "kind": "stop_unsafe",
1258
+ "allowed_failure_causes": [
1259
+ "failed_check",
1260
+ "contradicted_evidence",
1261
+ "scope_drift",
1262
+ "budget_exceeded",
1263
+ "unknown_failure"
1264
+ ],
1265
+ "required_refs": ["failed_check", "trace"],
1266
+ "operator_authority": "not_required",
1267
+ "attempt_budget": {
1268
+ "consumes_step_attempt": false,
1269
+ "must_respect_max_attempts": true,
1270
+ "retry_target": "declared_step"
1271
+ },
1272
+ "guidance": {
1273
+ "subject": "recovery_route",
1274
+ "must_match_step_completed": true
1275
+ },
1276
+ "source_ref": {
1277
+ "kind": "work_contract",
1278
+ "ref": "compiled-flow/steps/fix-diagnose/routes/stop",
1279
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1280
+ "flow_id": "fix"
1281
+ }
1282
+ },
1283
+ {
1284
+ "schema_version": 0,
1285
+ "step_id": "fix-no-repro-decision",
1286
+ "route_id": "revise",
1287
+ "route_target": "fix-diagnose",
1288
+ "kind": "narrow_scope",
1289
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1290
+ "required_refs": ["proof_assessment", "runtime_diff"],
1291
+ "operator_authority": "not_required",
1292
+ "attempt_budget": {
1293
+ "consumes_step_attempt": false,
1294
+ "must_respect_max_attempts": true,
1295
+ "retry_target": "declared_step"
1296
+ },
1297
+ "guidance": {
1298
+ "subject": "recovery_route",
1299
+ "must_match_step_completed": true
1300
+ },
1301
+ "source_ref": {
1302
+ "kind": "work_contract",
1303
+ "ref": "compiled-flow/steps/fix-no-repro-decision/routes/revise",
1304
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1305
+ "flow_id": "fix"
1306
+ }
1307
+ },
1308
+ {
1309
+ "schema_version": 0,
1310
+ "step_id": "fix-no-repro-decision",
1311
+ "route_id": "stop",
1312
+ "route_target": "@stop",
1313
+ "kind": "stop_unsafe",
1314
+ "allowed_failure_causes": [
1315
+ "failed_check",
1316
+ "contradicted_evidence",
1317
+ "scope_drift",
1318
+ "budget_exceeded",
1319
+ "unknown_failure"
1320
+ ],
1321
+ "required_refs": ["failed_check", "trace"],
1322
+ "operator_authority": "not_required",
1323
+ "attempt_budget": {
1324
+ "consumes_step_attempt": false,
1325
+ "must_respect_max_attempts": true,
1326
+ "retry_target": "declared_step"
1327
+ },
1328
+ "guidance": {
1329
+ "subject": "recovery_route",
1330
+ "must_match_step_completed": true
1331
+ },
1332
+ "source_ref": {
1333
+ "kind": "work_contract",
1334
+ "ref": "compiled-flow/steps/fix-no-repro-decision/routes/stop",
1335
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1336
+ "flow_id": "fix"
1337
+ }
1338
+ },
1339
+ {
1340
+ "schema_version": 0,
1341
+ "step_id": "fix-no-repro-decision",
1342
+ "route_id": "handoff",
1343
+ "route_target": "fix-handoff",
1344
+ "kind": "handoff",
1345
+ "allowed_failure_causes": ["checkpoint_boundary", "budget_exceeded", "unknown_failure"],
1346
+ "required_refs": ["trace", "report"],
1347
+ "operator_authority": "required_to_continue_after_route",
1348
+ "attempt_budget": {
1349
+ "consumes_step_attempt": false,
1350
+ "must_respect_max_attempts": true,
1351
+ "retry_target": "declared_step"
1352
+ },
1353
+ "guidance": {
1354
+ "subject": "recovery_route",
1355
+ "must_match_step_completed": true
1356
+ },
1357
+ "source_ref": {
1358
+ "kind": "work_contract",
1359
+ "ref": "compiled-flow/steps/fix-no-repro-decision/routes/handoff",
1360
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1361
+ "flow_id": "fix"
1362
+ }
1363
+ },
1364
+ {
1365
+ "schema_version": 0,
1366
+ "step_id": "fix-no-repro-decision",
1367
+ "route_id": "escalate",
1368
+ "route_target": "@escalate",
1369
+ "kind": "escalate",
1370
+ "allowed_failure_causes": ["relay_connector_failed", "budget_exceeded", "unknown_failure"],
1371
+ "required_refs": ["relay_result", "trace"],
1372
+ "operator_authority": "not_required",
1373
+ "attempt_budget": {
1374
+ "consumes_step_attempt": false,
1375
+ "must_respect_max_attempts": true,
1376
+ "retry_target": "declared_step"
1377
+ },
1378
+ "guidance": {
1379
+ "subject": "recovery_route",
1380
+ "must_match_step_completed": true
1381
+ },
1382
+ "source_ref": {
1383
+ "kind": "work_contract",
1384
+ "ref": "compiled-flow/steps/fix-no-repro-decision/routes/escalate",
1385
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1386
+ "flow_id": "fix"
1387
+ }
1388
+ },
1389
+ {
1390
+ "schema_version": 0,
1391
+ "step_id": "fix-regression-baseline",
1392
+ "route_id": "retry",
1393
+ "route_target": "fix-frame",
1394
+ "kind": "narrow_scope",
1395
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1396
+ "required_refs": ["proof_assessment", "runtime_diff"],
1397
+ "operator_authority": "not_required",
1398
+ "attempt_budget": {
1399
+ "consumes_step_attempt": false,
1400
+ "must_respect_max_attempts": true,
1401
+ "retry_target": "declared_step"
1402
+ },
1403
+ "guidance": {
1404
+ "subject": "recovery_route",
1405
+ "must_match_step_completed": true
1406
+ },
1407
+ "source_ref": {
1408
+ "kind": "work_contract",
1409
+ "ref": "compiled-flow/steps/fix-regression-baseline/routes/retry",
1410
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1411
+ "flow_id": "fix"
1412
+ }
1413
+ },
1414
+ {
1415
+ "schema_version": 0,
1416
+ "step_id": "fix-regression-baseline",
1417
+ "route_id": "stop",
1418
+ "route_target": "@stop",
1419
+ "kind": "stop_unsafe",
1420
+ "allowed_failure_causes": [
1421
+ "failed_check",
1422
+ "contradicted_evidence",
1423
+ "scope_drift",
1424
+ "budget_exceeded",
1425
+ "unknown_failure"
1426
+ ],
1427
+ "required_refs": ["failed_check", "trace"],
1428
+ "operator_authority": "not_required",
1429
+ "attempt_budget": {
1430
+ "consumes_step_attempt": false,
1431
+ "must_respect_max_attempts": true,
1432
+ "retry_target": "declared_step"
1433
+ },
1434
+ "guidance": {
1435
+ "subject": "recovery_route",
1436
+ "must_match_step_completed": true
1437
+ },
1438
+ "source_ref": {
1439
+ "kind": "work_contract",
1440
+ "ref": "compiled-flow/steps/fix-regression-baseline/routes/stop",
1441
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1442
+ "flow_id": "fix"
1443
+ }
1444
+ },
1445
+ {
1446
+ "schema_version": 0,
1447
+ "step_id": "fix-baseline-snapshot",
1448
+ "route_id": "stop",
1449
+ "route_target": "@stop",
1450
+ "kind": "stop_unsafe",
1451
+ "allowed_failure_causes": [
1452
+ "failed_check",
1453
+ "contradicted_evidence",
1454
+ "scope_drift",
1455
+ "budget_exceeded",
1456
+ "unknown_failure"
1457
+ ],
1458
+ "required_refs": ["failed_check", "trace"],
1459
+ "operator_authority": "not_required",
1460
+ "attempt_budget": {
1461
+ "consumes_step_attempt": false,
1462
+ "must_respect_max_attempts": true,
1463
+ "retry_target": "declared_step"
1464
+ },
1465
+ "guidance": {
1466
+ "subject": "recovery_route",
1467
+ "must_match_step_completed": true
1468
+ },
1469
+ "source_ref": {
1470
+ "kind": "work_contract",
1471
+ "ref": "compiled-flow/steps/fix-baseline-snapshot/routes/stop",
1472
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1473
+ "flow_id": "fix"
1474
+ }
1475
+ },
1476
+ {
1477
+ "schema_version": 0,
1478
+ "step_id": "fix-act",
1479
+ "route_id": "retry",
1480
+ "route_target": "fix-act",
1481
+ "kind": "retry_same_step_with_feedback",
1482
+ "allowed_failure_causes": [
1483
+ "failed_check",
1484
+ "failed_acceptance_criteria",
1485
+ "relay_result_invalid"
1486
+ ],
1487
+ "required_refs": ["failed_check", "acceptance_feedback", "budget_state"],
1488
+ "operator_authority": "not_required",
1489
+ "attempt_budget": {
1490
+ "consumes_step_attempt": true,
1491
+ "must_respect_max_attempts": true,
1492
+ "retry_target": "same_step"
1493
+ },
1494
+ "guidance": {
1495
+ "subject": "recovery_route",
1496
+ "must_match_step_completed": true
1497
+ },
1498
+ "source_ref": {
1499
+ "kind": "work_contract",
1500
+ "ref": "compiled-flow/steps/fix-act/routes/retry",
1501
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1502
+ "flow_id": "fix"
1503
+ }
1504
+ },
1505
+ {
1506
+ "schema_version": 0,
1507
+ "step_id": "fix-act",
1508
+ "route_id": "ask",
1509
+ "route_target": "fix-no-repro-decision",
1510
+ "kind": "checkpoint_authority",
1511
+ "allowed_failure_causes": [
1512
+ "checkpoint_boundary",
1513
+ "protected_file_touched",
1514
+ "budget_exceeded",
1515
+ "unknown_failure"
1516
+ ],
1517
+ "required_refs": ["checkpoint_request", "runtime_diff", "budget_state"],
1518
+ "operator_authority": "required_before_route",
1519
+ "attempt_budget": {
1520
+ "consumes_step_attempt": false,
1521
+ "must_respect_max_attempts": true,
1522
+ "retry_target": "declared_step"
1523
+ },
1524
+ "guidance": {
1525
+ "subject": "recovery_route",
1526
+ "must_match_step_completed": true
1527
+ },
1528
+ "source_ref": {
1529
+ "kind": "work_contract",
1530
+ "ref": "compiled-flow/steps/fix-act/routes/ask",
1531
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1532
+ "flow_id": "fix"
1533
+ }
1534
+ },
1535
+ {
1536
+ "schema_version": 0,
1537
+ "step_id": "fix-act",
1538
+ "route_id": "stop",
1539
+ "route_target": "@stop",
1540
+ "kind": "stop_unsafe",
1541
+ "allowed_failure_causes": [
1542
+ "failed_check",
1543
+ "contradicted_evidence",
1544
+ "scope_drift",
1545
+ "budget_exceeded",
1546
+ "unknown_failure"
1547
+ ],
1548
+ "required_refs": ["failed_check", "trace"],
1549
+ "operator_authority": "not_required",
1550
+ "attempt_budget": {
1551
+ "consumes_step_attempt": false,
1552
+ "must_respect_max_attempts": true,
1553
+ "retry_target": "declared_step"
1554
+ },
1555
+ "guidance": {
1556
+ "subject": "recovery_route",
1557
+ "must_match_step_completed": true
1558
+ },
1559
+ "source_ref": {
1560
+ "kind": "work_contract",
1561
+ "ref": "compiled-flow/steps/fix-act/routes/stop",
1562
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1563
+ "flow_id": "fix"
1564
+ }
1565
+ },
1566
+ {
1567
+ "schema_version": 0,
1568
+ "step_id": "fix-act",
1569
+ "route_id": "handoff",
1570
+ "route_target": "fix-handoff",
1571
+ "kind": "handoff",
1572
+ "allowed_failure_causes": ["checkpoint_boundary", "budget_exceeded", "unknown_failure"],
1573
+ "required_refs": ["trace", "report"],
1574
+ "operator_authority": "required_to_continue_after_route",
1575
+ "attempt_budget": {
1576
+ "consumes_step_attempt": false,
1577
+ "must_respect_max_attempts": true,
1578
+ "retry_target": "declared_step"
1579
+ },
1580
+ "guidance": {
1581
+ "subject": "recovery_route",
1582
+ "must_match_step_completed": true
1583
+ },
1584
+ "source_ref": {
1585
+ "kind": "work_contract",
1586
+ "ref": "compiled-flow/steps/fix-act/routes/handoff",
1587
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1588
+ "flow_id": "fix"
1589
+ }
1590
+ },
1591
+ {
1592
+ "schema_version": 0,
1593
+ "step_id": "fix-verify",
1594
+ "route_id": "retry",
1595
+ "route_target": "fix-act",
1596
+ "kind": "narrow_scope",
1597
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1598
+ "required_refs": ["proof_assessment", "runtime_diff"],
1599
+ "operator_authority": "not_required",
1600
+ "attempt_budget": {
1601
+ "consumes_step_attempt": false,
1602
+ "must_respect_max_attempts": true,
1603
+ "retry_target": "declared_step"
1604
+ },
1605
+ "guidance": {
1606
+ "subject": "recovery_route",
1607
+ "must_match_step_completed": true
1608
+ },
1609
+ "source_ref": {
1610
+ "kind": "work_contract",
1611
+ "ref": "compiled-flow/steps/fix-verify/routes/retry",
1612
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1613
+ "flow_id": "fix"
1614
+ }
1615
+ },
1616
+ {
1617
+ "schema_version": 0,
1618
+ "step_id": "fix-verify",
1619
+ "route_id": "ask",
1620
+ "route_target": "fix-no-repro-decision",
1621
+ "kind": "checkpoint_authority",
1622
+ "allowed_failure_causes": [
1623
+ "checkpoint_boundary",
1624
+ "protected_file_touched",
1625
+ "budget_exceeded",
1626
+ "unknown_failure"
1627
+ ],
1628
+ "required_refs": ["checkpoint_request", "runtime_diff", "budget_state"],
1629
+ "operator_authority": "required_before_route",
1630
+ "attempt_budget": {
1631
+ "consumes_step_attempt": false,
1632
+ "must_respect_max_attempts": true,
1633
+ "retry_target": "declared_step"
1634
+ },
1635
+ "guidance": {
1636
+ "subject": "recovery_route",
1637
+ "must_match_step_completed": true
1638
+ },
1639
+ "source_ref": {
1640
+ "kind": "work_contract",
1641
+ "ref": "compiled-flow/steps/fix-verify/routes/ask",
1642
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1643
+ "flow_id": "fix"
1644
+ }
1645
+ },
1646
+ {
1647
+ "schema_version": 0,
1648
+ "step_id": "fix-verify",
1649
+ "route_id": "stop",
1650
+ "route_target": "@stop",
1651
+ "kind": "stop_unsafe",
1652
+ "allowed_failure_causes": [
1653
+ "failed_check",
1654
+ "contradicted_evidence",
1655
+ "scope_drift",
1656
+ "budget_exceeded",
1657
+ "unknown_failure"
1658
+ ],
1659
+ "required_refs": ["failed_check", "trace"],
1660
+ "operator_authority": "not_required",
1661
+ "attempt_budget": {
1662
+ "consumes_step_attempt": false,
1663
+ "must_respect_max_attempts": true,
1664
+ "retry_target": "declared_step"
1665
+ },
1666
+ "guidance": {
1667
+ "subject": "recovery_route",
1668
+ "must_match_step_completed": true
1669
+ },
1670
+ "source_ref": {
1671
+ "kind": "work_contract",
1672
+ "ref": "compiled-flow/steps/fix-verify/routes/stop",
1673
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1674
+ "flow_id": "fix"
1675
+ }
1676
+ },
1677
+ {
1678
+ "schema_version": 0,
1679
+ "step_id": "fix-change-set",
1680
+ "route_id": "retry",
1681
+ "route_target": "fix-act",
1682
+ "kind": "narrow_scope",
1683
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1684
+ "required_refs": ["proof_assessment", "runtime_diff"],
1685
+ "operator_authority": "not_required",
1686
+ "attempt_budget": {
1687
+ "consumes_step_attempt": false,
1688
+ "must_respect_max_attempts": true,
1689
+ "retry_target": "declared_step"
1690
+ },
1691
+ "guidance": {
1692
+ "subject": "recovery_route",
1693
+ "must_match_step_completed": true
1694
+ },
1695
+ "source_ref": {
1696
+ "kind": "work_contract",
1697
+ "ref": "compiled-flow/steps/fix-change-set/routes/retry",
1698
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1699
+ "flow_id": "fix"
1700
+ }
1701
+ },
1702
+ {
1703
+ "schema_version": 0,
1704
+ "step_id": "fix-change-set",
1705
+ "route_id": "stop",
1706
+ "route_target": "@stop",
1707
+ "kind": "stop_unsafe",
1708
+ "allowed_failure_causes": [
1709
+ "failed_check",
1710
+ "contradicted_evidence",
1711
+ "scope_drift",
1712
+ "budget_exceeded",
1713
+ "unknown_failure"
1714
+ ],
1715
+ "required_refs": ["failed_check", "trace"],
1716
+ "operator_authority": "not_required",
1717
+ "attempt_budget": {
1718
+ "consumes_step_attempt": false,
1719
+ "must_respect_max_attempts": true,
1720
+ "retry_target": "declared_step"
1721
+ },
1722
+ "guidance": {
1723
+ "subject": "recovery_route",
1724
+ "must_match_step_completed": true
1725
+ },
1726
+ "source_ref": {
1727
+ "kind": "work_contract",
1728
+ "ref": "compiled-flow/steps/fix-change-set/routes/stop",
1729
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1730
+ "flow_id": "fix"
1731
+ }
1732
+ },
1733
+ {
1734
+ "schema_version": 0,
1735
+ "step_id": "fix-regression-rerun",
1736
+ "route_id": "retry",
1737
+ "route_target": "fix-act",
1738
+ "kind": "narrow_scope",
1739
+ "allowed_failure_causes": ["failed_check", "scope_drift", "weak_proof", "unproved_claim"],
1740
+ "required_refs": ["proof_assessment", "runtime_diff"],
1741
+ "operator_authority": "not_required",
1742
+ "attempt_budget": {
1743
+ "consumes_step_attempt": false,
1744
+ "must_respect_max_attempts": true,
1745
+ "retry_target": "declared_step"
1746
+ },
1747
+ "guidance": {
1748
+ "subject": "recovery_route",
1749
+ "must_match_step_completed": true
1750
+ },
1751
+ "source_ref": {
1752
+ "kind": "work_contract",
1753
+ "ref": "compiled-flow/steps/fix-regression-rerun/routes/retry",
1754
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1755
+ "flow_id": "fix"
1756
+ }
1757
+ },
1758
+ {
1759
+ "schema_version": 0,
1760
+ "step_id": "fix-regression-rerun",
1761
+ "route_id": "stop",
1762
+ "route_target": "@stop",
1763
+ "kind": "stop_unsafe",
1764
+ "allowed_failure_causes": [
1765
+ "failed_check",
1766
+ "contradicted_evidence",
1767
+ "scope_drift",
1768
+ "budget_exceeded",
1769
+ "unknown_failure"
1770
+ ],
1771
+ "required_refs": ["failed_check", "trace"],
1772
+ "operator_authority": "not_required",
1773
+ "attempt_budget": {
1774
+ "consumes_step_attempt": false,
1775
+ "must_respect_max_attempts": true,
1776
+ "retry_target": "declared_step"
1777
+ },
1778
+ "guidance": {
1779
+ "subject": "recovery_route",
1780
+ "must_match_step_completed": true
1781
+ },
1782
+ "source_ref": {
1783
+ "kind": "work_contract",
1784
+ "ref": "compiled-flow/steps/fix-regression-rerun/routes/stop",
1785
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1786
+ "flow_id": "fix"
1787
+ }
1788
+ },
1789
+ {
1790
+ "schema_version": 0,
1791
+ "step_id": "fix-close-low",
1792
+ "route_id": "stop",
1793
+ "route_target": "@stop",
1794
+ "kind": "stop_unsafe",
1795
+ "allowed_failure_causes": [
1796
+ "failed_check",
1797
+ "contradicted_evidence",
1798
+ "scope_drift",
1799
+ "budget_exceeded",
1800
+ "unknown_failure"
1801
+ ],
1802
+ "required_refs": ["failed_check", "trace"],
1803
+ "operator_authority": "not_required",
1804
+ "attempt_budget": {
1805
+ "consumes_step_attempt": false,
1806
+ "must_respect_max_attempts": true,
1807
+ "retry_target": "declared_step"
1808
+ },
1809
+ "guidance": {
1810
+ "subject": "recovery_route",
1811
+ "must_match_step_completed": true
1812
+ },
1813
+ "source_ref": {
1814
+ "kind": "work_contract",
1815
+ "ref": "compiled-flow/steps/fix-close-low/routes/stop",
1816
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1817
+ "flow_id": "fix"
1818
+ }
1819
+ },
1820
+ {
1821
+ "schema_version": 0,
1822
+ "step_id": "fix-close-low",
1823
+ "route_id": "handoff",
1824
+ "route_target": "fix-handoff",
1825
+ "kind": "handoff",
1826
+ "allowed_failure_causes": ["checkpoint_boundary", "budget_exceeded", "unknown_failure"],
1827
+ "required_refs": ["trace", "report"],
1828
+ "operator_authority": "required_to_continue_after_route",
1829
+ "attempt_budget": {
1830
+ "consumes_step_attempt": false,
1831
+ "must_respect_max_attempts": true,
1832
+ "retry_target": "declared_step"
1833
+ },
1834
+ "guidance": {
1835
+ "subject": "recovery_route",
1836
+ "must_match_step_completed": true
1837
+ },
1838
+ "source_ref": {
1839
+ "kind": "work_contract",
1840
+ "ref": "compiled-flow/steps/fix-close-low/routes/handoff",
1841
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1842
+ "flow_id": "fix"
1843
+ }
1844
+ },
1845
+ {
1846
+ "schema_version": 0,
1847
+ "step_id": "fix-close-low",
1848
+ "route_id": "escalate",
1849
+ "route_target": "@escalate",
1850
+ "kind": "escalate",
1851
+ "allowed_failure_causes": ["relay_connector_failed", "budget_exceeded", "unknown_failure"],
1852
+ "required_refs": ["relay_result", "trace"],
1853
+ "operator_authority": "not_required",
1854
+ "attempt_budget": {
1855
+ "consumes_step_attempt": false,
1856
+ "must_respect_max_attempts": true,
1857
+ "retry_target": "declared_step"
1858
+ },
1859
+ "guidance": {
1860
+ "subject": "recovery_route",
1861
+ "must_match_step_completed": true
1862
+ },
1863
+ "source_ref": {
1864
+ "kind": "work_contract",
1865
+ "ref": "compiled-flow/steps/fix-close-low/routes/escalate",
1866
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1867
+ "flow_id": "fix"
1868
+ }
1869
+ },
1870
+ {
1871
+ "schema_version": 0,
1872
+ "step_id": "fix-handoff",
1873
+ "route_id": "stop",
1874
+ "route_target": "@stop",
1875
+ "kind": "stop_unsafe",
1876
+ "allowed_failure_causes": [
1877
+ "failed_check",
1878
+ "contradicted_evidence",
1879
+ "scope_drift",
1880
+ "budget_exceeded",
1881
+ "unknown_failure"
1882
+ ],
1883
+ "required_refs": ["failed_check", "trace"],
1884
+ "operator_authority": "not_required",
1885
+ "attempt_budget": {
1886
+ "consumes_step_attempt": false,
1887
+ "must_respect_max_attempts": true,
1888
+ "retry_target": "declared_step"
1889
+ },
1890
+ "guidance": {
1891
+ "subject": "recovery_route",
1892
+ "must_match_step_completed": true
1893
+ },
1894
+ "source_ref": {
1895
+ "kind": "work_contract",
1896
+ "ref": "compiled-flow/steps/fix-handoff/routes/stop",
1897
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1898
+ "flow_id": "fix"
1899
+ }
1900
+ }
1901
+ ],
1902
+ "limits": {
1903
+ "budgets": []
1904
+ }
1905
+ },
1906
+ "guidance_seed": {
1907
+ "selection_hints": [],
1908
+ "connector_hints": [],
1909
+ "skill_hints": [],
1910
+ "checkpoint_default_hints": [
1911
+ {
1912
+ "kind": "work_contract",
1913
+ "ref": "compiled-flow/steps/fix-no-repro-decision/policy/safe_default_choice",
1914
+ "sha256": "34ba36ad61d011b18598db201f901c846330ef99593f5bd0a9073bc96b441a6f",
1915
+ "flow_id": "fix"
1916
+ }
1917
+ ],
1918
+ "host_recommendations": []
1919
+ },
1920
+ "rejected_authority": []
1921
+ }