@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,2455 @@
1
+ import { z } from 'zod';
2
+ import { JsonObject } from './json.js';
3
+ export declare const RelayRole: z.ZodEnum<{
4
+ researcher: "researcher";
5
+ implementer: "implementer";
6
+ reviewer: "reviewer";
7
+ }>;
8
+ export type RelayRole = z.infer<typeof RelayRole>;
9
+ export declare const RelayConnectorName: z.ZodString;
10
+ export declare const ReportRef: z.ZodObject<{
11
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
12
+ schema: z.ZodString;
13
+ }, z.core.$strip>;
14
+ export type ReportRef = z.infer<typeof ReportRef>;
15
+ export declare const RouteFromReport: z.ZodObject<{
16
+ path: z.ZodArray<z.ZodString>;
17
+ }, z.core.$strict>;
18
+ export type RouteFromReport = z.infer<typeof RouteFromReport>;
19
+ declare const StepBase: z.ZodObject<{
20
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
21
+ title: z.ZodString;
22
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
23
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
24
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
25
+ selection: z.ZodOptional<z.ZodObject<{
26
+ model: z.ZodOptional<z.ZodObject<{
27
+ provider: z.ZodEnum<{
28
+ custom: "custom";
29
+ openai: "openai";
30
+ anthropic: "anthropic";
31
+ gemini: "gemini";
32
+ }>;
33
+ model: z.ZodString;
34
+ }, z.core.$strict>>;
35
+ effort: z.ZodOptional<z.ZodEnum<{
36
+ low: "low";
37
+ medium: "medium";
38
+ high: "high";
39
+ none: "none";
40
+ minimal: "minimal";
41
+ xhigh: "xhigh";
42
+ max: "max";
43
+ }>>;
44
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
45
+ mode: z.ZodLiteral<"inherit">;
46
+ }, z.core.$strict>, z.ZodObject<{
47
+ mode: z.ZodLiteral<"replace">;
48
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
49
+ }, z.core.$strict>, z.ZodObject<{
50
+ mode: z.ZodLiteral<"append">;
51
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
52
+ }, z.core.$strict>, z.ZodObject<{
53
+ mode: z.ZodLiteral<"remove">;
54
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
55
+ }, z.core.$strict>], "mode">>;
56
+ depth: z.ZodOptional<z.ZodEnum<{
57
+ low: "low";
58
+ medium: "medium";
59
+ high: "high";
60
+ tournament: "tournament";
61
+ autonomous: "autonomous";
62
+ }>>;
63
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
64
+ }, z.core.$strict>>;
65
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
66
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
67
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
68
+ description: z.ZodString;
69
+ }, z.core.$strict>>>;
70
+ equipment_scope: z.ZodOptional<z.ZodObject<{
71
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
72
+ allow: z.ZodArray<z.ZodString>;
73
+ }, z.core.$strict>]>>;
74
+ enforcement: z.ZodDefault<z.ZodEnum<{
75
+ trusted: "trusted";
76
+ enforced: "enforced";
77
+ }>>;
78
+ }, z.core.$strict>>;
79
+ route_from_report: z.ZodOptional<z.ZodObject<{
80
+ path: z.ZodArray<z.ZodString>;
81
+ }, z.core.$strict>>;
82
+ budgets: z.ZodOptional<z.ZodObject<{
83
+ max_attempts: z.ZodNumber;
84
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
85
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
86
+ }, z.core.$strip>>;
87
+ }, z.core.$strip>;
88
+ export type StepBudgets = NonNullable<z.infer<typeof StepBase>['budgets']>;
89
+ export declare const ComposeStep: z.ZodObject<{
90
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
91
+ title: z.ZodString;
92
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
93
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
94
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
95
+ selection: z.ZodOptional<z.ZodObject<{
96
+ model: z.ZodOptional<z.ZodObject<{
97
+ provider: z.ZodEnum<{
98
+ custom: "custom";
99
+ openai: "openai";
100
+ anthropic: "anthropic";
101
+ gemini: "gemini";
102
+ }>;
103
+ model: z.ZodString;
104
+ }, z.core.$strict>>;
105
+ effort: z.ZodOptional<z.ZodEnum<{
106
+ low: "low";
107
+ medium: "medium";
108
+ high: "high";
109
+ none: "none";
110
+ minimal: "minimal";
111
+ xhigh: "xhigh";
112
+ max: "max";
113
+ }>>;
114
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
115
+ mode: z.ZodLiteral<"inherit">;
116
+ }, z.core.$strict>, z.ZodObject<{
117
+ mode: z.ZodLiteral<"replace">;
118
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
119
+ }, z.core.$strict>, z.ZodObject<{
120
+ mode: z.ZodLiteral<"append">;
121
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
122
+ }, z.core.$strict>, z.ZodObject<{
123
+ mode: z.ZodLiteral<"remove">;
124
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
125
+ }, z.core.$strict>], "mode">>;
126
+ depth: z.ZodOptional<z.ZodEnum<{
127
+ low: "low";
128
+ medium: "medium";
129
+ high: "high";
130
+ tournament: "tournament";
131
+ autonomous: "autonomous";
132
+ }>>;
133
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
134
+ }, z.core.$strict>>;
135
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
136
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
137
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
138
+ description: z.ZodString;
139
+ }, z.core.$strict>>>;
140
+ equipment_scope: z.ZodOptional<z.ZodObject<{
141
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
142
+ allow: z.ZodArray<z.ZodString>;
143
+ }, z.core.$strict>]>>;
144
+ enforcement: z.ZodDefault<z.ZodEnum<{
145
+ trusted: "trusted";
146
+ enforced: "enforced";
147
+ }>>;
148
+ }, z.core.$strict>>;
149
+ route_from_report: z.ZodOptional<z.ZodObject<{
150
+ path: z.ZodArray<z.ZodString>;
151
+ }, z.core.$strict>>;
152
+ budgets: z.ZodOptional<z.ZodObject<{
153
+ max_attempts: z.ZodNumber;
154
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
155
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
156
+ }, z.core.$strip>>;
157
+ executor: z.ZodLiteral<"orchestrator">;
158
+ kind: z.ZodLiteral<"compose">;
159
+ writes: z.ZodObject<{
160
+ report: z.ZodObject<{
161
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
162
+ schema: z.ZodString;
163
+ }, z.core.$strip>;
164
+ }, z.core.$strict>;
165
+ check: z.ZodObject<{
166
+ kind: z.ZodLiteral<"schema_sections">;
167
+ source: z.ZodObject<{
168
+ kind: z.ZodLiteral<"report">;
169
+ ref: z.ZodLiteral<"report">;
170
+ }, z.core.$strict>;
171
+ required: z.ZodArray<z.ZodString>;
172
+ }, z.core.$strict>;
173
+ }, z.core.$strict>;
174
+ export type ComposeStep = z.infer<typeof ComposeStep>;
175
+ export declare const VerificationStep: z.ZodObject<{
176
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
177
+ title: z.ZodString;
178
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
179
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
180
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
181
+ selection: z.ZodOptional<z.ZodObject<{
182
+ model: z.ZodOptional<z.ZodObject<{
183
+ provider: z.ZodEnum<{
184
+ custom: "custom";
185
+ openai: "openai";
186
+ anthropic: "anthropic";
187
+ gemini: "gemini";
188
+ }>;
189
+ model: z.ZodString;
190
+ }, z.core.$strict>>;
191
+ effort: z.ZodOptional<z.ZodEnum<{
192
+ low: "low";
193
+ medium: "medium";
194
+ high: "high";
195
+ none: "none";
196
+ minimal: "minimal";
197
+ xhigh: "xhigh";
198
+ max: "max";
199
+ }>>;
200
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
201
+ mode: z.ZodLiteral<"inherit">;
202
+ }, z.core.$strict>, z.ZodObject<{
203
+ mode: z.ZodLiteral<"replace">;
204
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
205
+ }, z.core.$strict>, z.ZodObject<{
206
+ mode: z.ZodLiteral<"append">;
207
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
208
+ }, z.core.$strict>, z.ZodObject<{
209
+ mode: z.ZodLiteral<"remove">;
210
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
211
+ }, z.core.$strict>], "mode">>;
212
+ depth: z.ZodOptional<z.ZodEnum<{
213
+ low: "low";
214
+ medium: "medium";
215
+ high: "high";
216
+ tournament: "tournament";
217
+ autonomous: "autonomous";
218
+ }>>;
219
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
220
+ }, z.core.$strict>>;
221
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
222
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
223
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
224
+ description: z.ZodString;
225
+ }, z.core.$strict>>>;
226
+ equipment_scope: z.ZodOptional<z.ZodObject<{
227
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
228
+ allow: z.ZodArray<z.ZodString>;
229
+ }, z.core.$strict>]>>;
230
+ enforcement: z.ZodDefault<z.ZodEnum<{
231
+ trusted: "trusted";
232
+ enforced: "enforced";
233
+ }>>;
234
+ }, z.core.$strict>>;
235
+ route_from_report: z.ZodOptional<z.ZodObject<{
236
+ path: z.ZodArray<z.ZodString>;
237
+ }, z.core.$strict>>;
238
+ budgets: z.ZodOptional<z.ZodObject<{
239
+ max_attempts: z.ZodNumber;
240
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
241
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
242
+ }, z.core.$strip>>;
243
+ executor: z.ZodLiteral<"orchestrator">;
244
+ kind: z.ZodLiteral<"verification">;
245
+ writes: z.ZodObject<{
246
+ report: z.ZodObject<{
247
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
248
+ schema: z.ZodString;
249
+ }, z.core.$strip>;
250
+ }, z.core.$strict>;
251
+ check: z.ZodObject<{
252
+ kind: z.ZodLiteral<"schema_sections">;
253
+ source: z.ZodObject<{
254
+ kind: z.ZodLiteral<"report">;
255
+ ref: z.ZodLiteral<"report">;
256
+ }, z.core.$strict>;
257
+ required: z.ZodArray<z.ZodString>;
258
+ }, z.core.$strict>;
259
+ }, z.core.$strict>;
260
+ export type VerificationStep = z.infer<typeof VerificationStep>;
261
+ export declare const AutoResolutionPolicy: z.ZodDiscriminatedUnion<[z.ZodObject<{
262
+ policy: z.ZodLiteral<"highest-score">;
263
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
264
+ branches_path: z.ZodDefault<z.ZodString>;
265
+ id_path: z.ZodDefault<z.ZodString>;
266
+ rubric_result_path: z.ZodDefault<z.ZodString>;
267
+ }, z.core.$strict>], "policy">;
268
+ export type AutoResolutionPolicy = z.infer<typeof AutoResolutionPolicy>;
269
+ export declare const CheckpointPolicy: z.ZodObject<{
270
+ prompt: z.ZodString;
271
+ choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
272
+ id: z.ZodString;
273
+ label: z.ZodOptional<z.ZodString>;
274
+ description: z.ZodOptional<z.ZodString>;
275
+ }, z.core.$strict>>>;
276
+ choices_from: z.ZodOptional<z.ZodObject<{
277
+ kind: z.ZodLiteral<"report_items">;
278
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
279
+ items_path: z.ZodString;
280
+ filter: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
281
+ kind: z.ZodLiteral<"path_equals">;
282
+ path: z.ZodString;
283
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
284
+ }, z.core.$strict>], "kind">>;
285
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
286
+ kind: z.ZodLiteral<"constant">;
287
+ value: z.ZodNumber;
288
+ }, z.core.$strict>, z.ZodObject<{
289
+ kind: z.ZodLiteral<"axis">;
290
+ axis: z.ZodLiteral<"tournament_n">;
291
+ }, z.core.$strict>], "kind">>;
292
+ id_path: z.ZodString;
293
+ label_path: z.ZodOptional<z.ZodString>;
294
+ description_path: z.ZodOptional<z.ZodString>;
295
+ }, z.core.$strict>>;
296
+ safe_default_choice: z.ZodOptional<z.ZodString>;
297
+ auto_resolution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
298
+ policy: z.ZodLiteral<"highest-score">;
299
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
300
+ branches_path: z.ZodDefault<z.ZodString>;
301
+ id_path: z.ZodDefault<z.ZodString>;
302
+ rubric_result_path: z.ZodDefault<z.ZodString>;
303
+ }, z.core.$strict>], "policy">>;
304
+ auto_continuable_when_nested: z.ZodOptional<z.ZodBoolean>;
305
+ report_template: z.ZodOptional<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
306
+ }, z.core.$strict>;
307
+ export type CheckpointPolicy = z.infer<typeof CheckpointPolicy>;
308
+ export declare const CheckpointStep: z.ZodObject<{
309
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
310
+ title: z.ZodString;
311
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
312
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
313
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
314
+ selection: z.ZodOptional<z.ZodObject<{
315
+ model: z.ZodOptional<z.ZodObject<{
316
+ provider: z.ZodEnum<{
317
+ custom: "custom";
318
+ openai: "openai";
319
+ anthropic: "anthropic";
320
+ gemini: "gemini";
321
+ }>;
322
+ model: z.ZodString;
323
+ }, z.core.$strict>>;
324
+ effort: z.ZodOptional<z.ZodEnum<{
325
+ low: "low";
326
+ medium: "medium";
327
+ high: "high";
328
+ none: "none";
329
+ minimal: "minimal";
330
+ xhigh: "xhigh";
331
+ max: "max";
332
+ }>>;
333
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
334
+ mode: z.ZodLiteral<"inherit">;
335
+ }, z.core.$strict>, z.ZodObject<{
336
+ mode: z.ZodLiteral<"replace">;
337
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
338
+ }, z.core.$strict>, z.ZodObject<{
339
+ mode: z.ZodLiteral<"append">;
340
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
341
+ }, z.core.$strict>, z.ZodObject<{
342
+ mode: z.ZodLiteral<"remove">;
343
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
344
+ }, z.core.$strict>], "mode">>;
345
+ depth: z.ZodOptional<z.ZodEnum<{
346
+ low: "low";
347
+ medium: "medium";
348
+ high: "high";
349
+ tournament: "tournament";
350
+ autonomous: "autonomous";
351
+ }>>;
352
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
353
+ }, z.core.$strict>>;
354
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
355
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
356
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
357
+ description: z.ZodString;
358
+ }, z.core.$strict>>>;
359
+ equipment_scope: z.ZodOptional<z.ZodObject<{
360
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
361
+ allow: z.ZodArray<z.ZodString>;
362
+ }, z.core.$strict>]>>;
363
+ enforcement: z.ZodDefault<z.ZodEnum<{
364
+ trusted: "trusted";
365
+ enforced: "enforced";
366
+ }>>;
367
+ }, z.core.$strict>>;
368
+ route_from_report: z.ZodOptional<z.ZodObject<{
369
+ path: z.ZodArray<z.ZodString>;
370
+ }, z.core.$strict>>;
371
+ budgets: z.ZodOptional<z.ZodObject<{
372
+ max_attempts: z.ZodNumber;
373
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
374
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
375
+ }, z.core.$strip>>;
376
+ executor: z.ZodLiteral<"orchestrator">;
377
+ kind: z.ZodLiteral<"checkpoint">;
378
+ policy: z.ZodObject<{
379
+ prompt: z.ZodString;
380
+ choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
381
+ id: z.ZodString;
382
+ label: z.ZodOptional<z.ZodString>;
383
+ description: z.ZodOptional<z.ZodString>;
384
+ }, z.core.$strict>>>;
385
+ choices_from: z.ZodOptional<z.ZodObject<{
386
+ kind: z.ZodLiteral<"report_items">;
387
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
388
+ items_path: z.ZodString;
389
+ filter: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
390
+ kind: z.ZodLiteral<"path_equals">;
391
+ path: z.ZodString;
392
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
393
+ }, z.core.$strict>], "kind">>;
394
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
395
+ kind: z.ZodLiteral<"constant">;
396
+ value: z.ZodNumber;
397
+ }, z.core.$strict>, z.ZodObject<{
398
+ kind: z.ZodLiteral<"axis">;
399
+ axis: z.ZodLiteral<"tournament_n">;
400
+ }, z.core.$strict>], "kind">>;
401
+ id_path: z.ZodString;
402
+ label_path: z.ZodOptional<z.ZodString>;
403
+ description_path: z.ZodOptional<z.ZodString>;
404
+ }, z.core.$strict>>;
405
+ safe_default_choice: z.ZodOptional<z.ZodString>;
406
+ auto_resolution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
407
+ policy: z.ZodLiteral<"highest-score">;
408
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
409
+ branches_path: z.ZodDefault<z.ZodString>;
410
+ id_path: z.ZodDefault<z.ZodString>;
411
+ rubric_result_path: z.ZodDefault<z.ZodString>;
412
+ }, z.core.$strict>], "policy">>;
413
+ auto_continuable_when_nested: z.ZodOptional<z.ZodBoolean>;
414
+ report_template: z.ZodOptional<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
415
+ }, z.core.$strict>;
416
+ writes: z.ZodObject<{
417
+ request: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
418
+ response: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
419
+ report: z.ZodOptional<z.ZodObject<{
420
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
421
+ schema: z.ZodString;
422
+ }, z.core.$strip>>;
423
+ }, z.core.$strict>;
424
+ check: z.ZodObject<{
425
+ kind: z.ZodLiteral<"checkpoint_selection">;
426
+ source: z.ZodObject<{
427
+ kind: z.ZodLiteral<"checkpoint_response">;
428
+ ref: z.ZodLiteral<"response">;
429
+ }, z.core.$strict>;
430
+ allow: z.ZodOptional<z.ZodArray<z.ZodString>>;
431
+ allow_from: z.ZodOptional<z.ZodObject<{
432
+ kind: z.ZodLiteral<"policy_choices">;
433
+ }, z.core.$strict>>;
434
+ }, z.core.$strict>;
435
+ }, z.core.$strict>;
436
+ export type CheckpointStep = z.infer<typeof CheckpointStep>;
437
+ export declare const RelayStep: z.ZodObject<{
438
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
439
+ title: z.ZodString;
440
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
441
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
442
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
443
+ selection: z.ZodOptional<z.ZodObject<{
444
+ model: z.ZodOptional<z.ZodObject<{
445
+ provider: z.ZodEnum<{
446
+ custom: "custom";
447
+ openai: "openai";
448
+ anthropic: "anthropic";
449
+ gemini: "gemini";
450
+ }>;
451
+ model: z.ZodString;
452
+ }, z.core.$strict>>;
453
+ effort: z.ZodOptional<z.ZodEnum<{
454
+ low: "low";
455
+ medium: "medium";
456
+ high: "high";
457
+ none: "none";
458
+ minimal: "minimal";
459
+ xhigh: "xhigh";
460
+ max: "max";
461
+ }>>;
462
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
463
+ mode: z.ZodLiteral<"inherit">;
464
+ }, z.core.$strict>, z.ZodObject<{
465
+ mode: z.ZodLiteral<"replace">;
466
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
467
+ }, z.core.$strict>, z.ZodObject<{
468
+ mode: z.ZodLiteral<"append">;
469
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
470
+ }, z.core.$strict>, z.ZodObject<{
471
+ mode: z.ZodLiteral<"remove">;
472
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
473
+ }, z.core.$strict>], "mode">>;
474
+ depth: z.ZodOptional<z.ZodEnum<{
475
+ low: "low";
476
+ medium: "medium";
477
+ high: "high";
478
+ tournament: "tournament";
479
+ autonomous: "autonomous";
480
+ }>>;
481
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
482
+ }, z.core.$strict>>;
483
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
484
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
485
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
486
+ description: z.ZodString;
487
+ }, z.core.$strict>>>;
488
+ equipment_scope: z.ZodOptional<z.ZodObject<{
489
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
490
+ allow: z.ZodArray<z.ZodString>;
491
+ }, z.core.$strict>]>>;
492
+ enforcement: z.ZodDefault<z.ZodEnum<{
493
+ trusted: "trusted";
494
+ enforced: "enforced";
495
+ }>>;
496
+ }, z.core.$strict>>;
497
+ route_from_report: z.ZodOptional<z.ZodObject<{
498
+ path: z.ZodArray<z.ZodString>;
499
+ }, z.core.$strict>>;
500
+ budgets: z.ZodOptional<z.ZodObject<{
501
+ max_attempts: z.ZodNumber;
502
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
503
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
504
+ }, z.core.$strip>>;
505
+ executor: z.ZodLiteral<"worker">;
506
+ kind: z.ZodLiteral<"relay">;
507
+ role: z.ZodEnum<{
508
+ researcher: "researcher";
509
+ implementer: "implementer";
510
+ reviewer: "reviewer";
511
+ }>;
512
+ connector: z.ZodOptional<z.ZodString>;
513
+ acceptance_criteria: z.ZodOptional<z.ZodObject<{
514
+ checks: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
515
+ kind: z.ZodLiteral<"command">;
516
+ id: z.ZodString;
517
+ command: z.ZodObject<{
518
+ id: z.ZodString;
519
+ cwd: z.ZodString;
520
+ argv: z.ZodArray<z.ZodString>;
521
+ timeout_ms: z.ZodNumber;
522
+ max_output_bytes: z.ZodNumber;
523
+ env: z.ZodRecord<z.ZodString, z.ZodString>;
524
+ }, z.core.$strict>;
525
+ expected_status: z.ZodLiteral<"passed">;
526
+ }, z.core.$strict>, z.ZodObject<{
527
+ kind: z.ZodLiteral<"report_field">;
528
+ id: z.ZodString;
529
+ path: z.ZodArray<z.ZodString>;
530
+ predicate: z.ZodEnum<{
531
+ present: "present";
532
+ non_empty: "non_empty";
533
+ changed_on_disk: "changed_on_disk";
534
+ }>;
535
+ }, z.core.$strict>], "kind">>;
536
+ on_failure: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
537
+ mode: z.ZodLiteral<"hard-fail">;
538
+ }, z.core.$strict>, z.ZodObject<{
539
+ mode: z.ZodLiteral<"retry-with-feedback">;
540
+ }, z.core.$strict>], "mode">>;
541
+ }, z.core.$strict>>;
542
+ writes: z.ZodObject<{
543
+ report: z.ZodOptional<z.ZodObject<{
544
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
545
+ schema: z.ZodString;
546
+ }, z.core.$strip>>;
547
+ request: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
548
+ receipt: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
549
+ result: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
550
+ }, z.core.$strict>;
551
+ check: z.ZodObject<{
552
+ kind: z.ZodLiteral<"result_verdict">;
553
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
554
+ kind: z.ZodLiteral<"relay_result">;
555
+ ref: z.ZodLiteral<"result">;
556
+ }, z.core.$strict>, z.ZodObject<{
557
+ kind: z.ZodLiteral<"sub_run_result">;
558
+ ref: z.ZodLiteral<"result">;
559
+ }, z.core.$strict>], "kind">;
560
+ pass: z.ZodArray<z.ZodString>;
561
+ }, z.core.$strict>;
562
+ }, z.core.$strict>;
563
+ export type RelayStep = z.infer<typeof RelayStep>;
564
+ export declare const CompiledFlowRef: z.ZodObject<{
565
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
566
+ entry_mode: z.ZodString;
567
+ version: z.ZodOptional<z.ZodString>;
568
+ }, z.core.$strict>;
569
+ export type CompiledFlowRef = z.infer<typeof CompiledFlowRef>;
570
+ export declare const SubRunStep: z.ZodObject<{
571
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
572
+ title: z.ZodString;
573
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
574
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
575
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
576
+ selection: z.ZodOptional<z.ZodObject<{
577
+ model: z.ZodOptional<z.ZodObject<{
578
+ provider: z.ZodEnum<{
579
+ custom: "custom";
580
+ openai: "openai";
581
+ anthropic: "anthropic";
582
+ gemini: "gemini";
583
+ }>;
584
+ model: z.ZodString;
585
+ }, z.core.$strict>>;
586
+ effort: z.ZodOptional<z.ZodEnum<{
587
+ low: "low";
588
+ medium: "medium";
589
+ high: "high";
590
+ none: "none";
591
+ minimal: "minimal";
592
+ xhigh: "xhigh";
593
+ max: "max";
594
+ }>>;
595
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
596
+ mode: z.ZodLiteral<"inherit">;
597
+ }, z.core.$strict>, z.ZodObject<{
598
+ mode: z.ZodLiteral<"replace">;
599
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
600
+ }, z.core.$strict>, z.ZodObject<{
601
+ mode: z.ZodLiteral<"append">;
602
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
603
+ }, z.core.$strict>, z.ZodObject<{
604
+ mode: z.ZodLiteral<"remove">;
605
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
606
+ }, z.core.$strict>], "mode">>;
607
+ depth: z.ZodOptional<z.ZodEnum<{
608
+ low: "low";
609
+ medium: "medium";
610
+ high: "high";
611
+ tournament: "tournament";
612
+ autonomous: "autonomous";
613
+ }>>;
614
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
615
+ }, z.core.$strict>>;
616
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
617
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
618
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
619
+ description: z.ZodString;
620
+ }, z.core.$strict>>>;
621
+ equipment_scope: z.ZodOptional<z.ZodObject<{
622
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
623
+ allow: z.ZodArray<z.ZodString>;
624
+ }, z.core.$strict>]>>;
625
+ enforcement: z.ZodDefault<z.ZodEnum<{
626
+ trusted: "trusted";
627
+ enforced: "enforced";
628
+ }>>;
629
+ }, z.core.$strict>>;
630
+ route_from_report: z.ZodOptional<z.ZodObject<{
631
+ path: z.ZodArray<z.ZodString>;
632
+ }, z.core.$strict>>;
633
+ budgets: z.ZodOptional<z.ZodObject<{
634
+ max_attempts: z.ZodNumber;
635
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
636
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
637
+ }, z.core.$strip>>;
638
+ executor: z.ZodLiteral<"orchestrator">;
639
+ kind: z.ZodLiteral<"sub-run">;
640
+ flow_ref: z.ZodObject<{
641
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
642
+ entry_mode: z.ZodString;
643
+ version: z.ZodOptional<z.ZodString>;
644
+ }, z.core.$strict>;
645
+ goal: z.ZodString;
646
+ depth: z.ZodEnum<{
647
+ low: "low";
648
+ medium: "medium";
649
+ high: "high";
650
+ tournament: "tournament";
651
+ autonomous: "autonomous";
652
+ }>;
653
+ writes: z.ZodObject<{
654
+ result: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
655
+ report: z.ZodOptional<z.ZodObject<{
656
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
657
+ schema: z.ZodString;
658
+ }, z.core.$strip>>;
659
+ }, z.core.$strict>;
660
+ check: z.ZodObject<{
661
+ kind: z.ZodLiteral<"result_verdict">;
662
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
663
+ kind: z.ZodLiteral<"relay_result">;
664
+ ref: z.ZodLiteral<"result">;
665
+ }, z.core.$strict>, z.ZodObject<{
666
+ kind: z.ZodLiteral<"sub_run_result">;
667
+ ref: z.ZodLiteral<"result">;
668
+ }, z.core.$strict>], "kind">;
669
+ pass: z.ZodArray<z.ZodString>;
670
+ }, z.core.$strict>;
671
+ }, z.core.$strict>;
672
+ export type SubRunStep = z.infer<typeof SubRunStep>;
673
+ export declare const FanoutSubRunBranch: z.ZodObject<{
674
+ branch_id: z.ZodString;
675
+ flow_ref: z.ZodObject<{
676
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
677
+ entry_mode: z.ZodString;
678
+ version: z.ZodOptional<z.ZodString>;
679
+ }, z.core.$strict>;
680
+ goal: z.ZodString;
681
+ depth: z.ZodEnum<{
682
+ low: "low";
683
+ medium: "medium";
684
+ high: "high";
685
+ tournament: "tournament";
686
+ autonomous: "autonomous";
687
+ }>;
688
+ selection: z.ZodOptional<z.ZodObject<{
689
+ model: z.ZodOptional<z.ZodObject<{
690
+ provider: z.ZodEnum<{
691
+ custom: "custom";
692
+ openai: "openai";
693
+ anthropic: "anthropic";
694
+ gemini: "gemini";
695
+ }>;
696
+ model: z.ZodString;
697
+ }, z.core.$strict>>;
698
+ effort: z.ZodOptional<z.ZodEnum<{
699
+ low: "low";
700
+ medium: "medium";
701
+ high: "high";
702
+ none: "none";
703
+ minimal: "minimal";
704
+ xhigh: "xhigh";
705
+ max: "max";
706
+ }>>;
707
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
708
+ mode: z.ZodLiteral<"inherit">;
709
+ }, z.core.$strict>, z.ZodObject<{
710
+ mode: z.ZodLiteral<"replace">;
711
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
712
+ }, z.core.$strict>, z.ZodObject<{
713
+ mode: z.ZodLiteral<"append">;
714
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
715
+ }, z.core.$strict>, z.ZodObject<{
716
+ mode: z.ZodLiteral<"remove">;
717
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
718
+ }, z.core.$strict>], "mode">>;
719
+ depth: z.ZodOptional<z.ZodEnum<{
720
+ low: "low";
721
+ medium: "medium";
722
+ high: "high";
723
+ tournament: "tournament";
724
+ autonomous: "autonomous";
725
+ }>>;
726
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
727
+ }, z.core.$strict>>;
728
+ }, z.core.$strict>;
729
+ export type FanoutSubRunBranch = z.infer<typeof FanoutSubRunBranch>;
730
+ export declare const FanoutRelayBranchExecution: z.ZodObject<{
731
+ kind: z.ZodLiteral<"relay">;
732
+ role: z.ZodEnum<{
733
+ researcher: "researcher";
734
+ implementer: "implementer";
735
+ reviewer: "reviewer";
736
+ }>;
737
+ goal: z.ZodString;
738
+ report_schema: z.ZodString;
739
+ provenance_field: z.ZodOptional<z.ZodString>;
740
+ }, z.core.$strict>;
741
+ export type FanoutRelayBranchExecution = z.infer<typeof FanoutRelayBranchExecution>;
742
+ export declare const FanoutRelayBranch: z.ZodObject<{
743
+ branch_id: z.ZodString;
744
+ execution: z.ZodObject<{
745
+ kind: z.ZodLiteral<"relay">;
746
+ role: z.ZodEnum<{
747
+ researcher: "researcher";
748
+ implementer: "implementer";
749
+ reviewer: "reviewer";
750
+ }>;
751
+ goal: z.ZodString;
752
+ report_schema: z.ZodString;
753
+ provenance_field: z.ZodOptional<z.ZodString>;
754
+ }, z.core.$strict>;
755
+ connector: z.ZodOptional<z.ZodString>;
756
+ selection: z.ZodOptional<z.ZodObject<{
757
+ model: z.ZodOptional<z.ZodObject<{
758
+ provider: z.ZodEnum<{
759
+ custom: "custom";
760
+ openai: "openai";
761
+ anthropic: "anthropic";
762
+ gemini: "gemini";
763
+ }>;
764
+ model: z.ZodString;
765
+ }, z.core.$strict>>;
766
+ effort: z.ZodOptional<z.ZodEnum<{
767
+ low: "low";
768
+ medium: "medium";
769
+ high: "high";
770
+ none: "none";
771
+ minimal: "minimal";
772
+ xhigh: "xhigh";
773
+ max: "max";
774
+ }>>;
775
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
776
+ mode: z.ZodLiteral<"inherit">;
777
+ }, z.core.$strict>, z.ZodObject<{
778
+ mode: z.ZodLiteral<"replace">;
779
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
780
+ }, z.core.$strict>, z.ZodObject<{
781
+ mode: z.ZodLiteral<"append">;
782
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
783
+ }, z.core.$strict>, z.ZodObject<{
784
+ mode: z.ZodLiteral<"remove">;
785
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
786
+ }, z.core.$strict>], "mode">>;
787
+ depth: z.ZodOptional<z.ZodEnum<{
788
+ low: "low";
789
+ medium: "medium";
790
+ high: "high";
791
+ tournament: "tournament";
792
+ autonomous: "autonomous";
793
+ }>>;
794
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
795
+ }, z.core.$strict>>;
796
+ }, z.core.$strict>;
797
+ export type FanoutRelayBranch = z.infer<typeof FanoutRelayBranch>;
798
+ export declare const FanoutBranch: z.ZodUnion<readonly [z.ZodObject<{
799
+ branch_id: z.ZodString;
800
+ flow_ref: z.ZodObject<{
801
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
802
+ entry_mode: z.ZodString;
803
+ version: z.ZodOptional<z.ZodString>;
804
+ }, z.core.$strict>;
805
+ goal: z.ZodString;
806
+ depth: z.ZodEnum<{
807
+ low: "low";
808
+ medium: "medium";
809
+ high: "high";
810
+ tournament: "tournament";
811
+ autonomous: "autonomous";
812
+ }>;
813
+ selection: z.ZodOptional<z.ZodObject<{
814
+ model: z.ZodOptional<z.ZodObject<{
815
+ provider: z.ZodEnum<{
816
+ custom: "custom";
817
+ openai: "openai";
818
+ anthropic: "anthropic";
819
+ gemini: "gemini";
820
+ }>;
821
+ model: z.ZodString;
822
+ }, z.core.$strict>>;
823
+ effort: z.ZodOptional<z.ZodEnum<{
824
+ low: "low";
825
+ medium: "medium";
826
+ high: "high";
827
+ none: "none";
828
+ minimal: "minimal";
829
+ xhigh: "xhigh";
830
+ max: "max";
831
+ }>>;
832
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
833
+ mode: z.ZodLiteral<"inherit">;
834
+ }, z.core.$strict>, z.ZodObject<{
835
+ mode: z.ZodLiteral<"replace">;
836
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
837
+ }, z.core.$strict>, z.ZodObject<{
838
+ mode: z.ZodLiteral<"append">;
839
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
840
+ }, z.core.$strict>, z.ZodObject<{
841
+ mode: z.ZodLiteral<"remove">;
842
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
843
+ }, z.core.$strict>], "mode">>;
844
+ depth: z.ZodOptional<z.ZodEnum<{
845
+ low: "low";
846
+ medium: "medium";
847
+ high: "high";
848
+ tournament: "tournament";
849
+ autonomous: "autonomous";
850
+ }>>;
851
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
852
+ }, z.core.$strict>>;
853
+ }, z.core.$strict>, z.ZodObject<{
854
+ branch_id: z.ZodString;
855
+ execution: z.ZodObject<{
856
+ kind: z.ZodLiteral<"relay">;
857
+ role: z.ZodEnum<{
858
+ researcher: "researcher";
859
+ implementer: "implementer";
860
+ reviewer: "reviewer";
861
+ }>;
862
+ goal: z.ZodString;
863
+ report_schema: z.ZodString;
864
+ provenance_field: z.ZodOptional<z.ZodString>;
865
+ }, z.core.$strict>;
866
+ connector: z.ZodOptional<z.ZodString>;
867
+ selection: z.ZodOptional<z.ZodObject<{
868
+ model: z.ZodOptional<z.ZodObject<{
869
+ provider: z.ZodEnum<{
870
+ custom: "custom";
871
+ openai: "openai";
872
+ anthropic: "anthropic";
873
+ gemini: "gemini";
874
+ }>;
875
+ model: z.ZodString;
876
+ }, z.core.$strict>>;
877
+ effort: z.ZodOptional<z.ZodEnum<{
878
+ low: "low";
879
+ medium: "medium";
880
+ high: "high";
881
+ none: "none";
882
+ minimal: "minimal";
883
+ xhigh: "xhigh";
884
+ max: "max";
885
+ }>>;
886
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
887
+ mode: z.ZodLiteral<"inherit">;
888
+ }, z.core.$strict>, z.ZodObject<{
889
+ mode: z.ZodLiteral<"replace">;
890
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
891
+ }, z.core.$strict>, z.ZodObject<{
892
+ mode: z.ZodLiteral<"append">;
893
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
894
+ }, z.core.$strict>, z.ZodObject<{
895
+ mode: z.ZodLiteral<"remove">;
896
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
897
+ }, z.core.$strict>], "mode">>;
898
+ depth: z.ZodOptional<z.ZodEnum<{
899
+ low: "low";
900
+ medium: "medium";
901
+ high: "high";
902
+ tournament: "tournament";
903
+ autonomous: "autonomous";
904
+ }>>;
905
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
906
+ }, z.core.$strict>>;
907
+ }, z.core.$strict>]>;
908
+ export type FanoutBranch = z.infer<typeof FanoutBranch>;
909
+ export declare const FanoutSubRunBranchTemplate: z.ZodObject<{
910
+ branch_id: z.ZodString;
911
+ flow_ref: z.ZodObject<{
912
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
913
+ entry_mode: z.ZodString;
914
+ version: z.ZodOptional<z.ZodString>;
915
+ }, z.core.$strict>;
916
+ goal: z.ZodString;
917
+ depth: z.ZodEnum<{
918
+ low: "low";
919
+ medium: "medium";
920
+ high: "high";
921
+ tournament: "tournament";
922
+ autonomous: "autonomous";
923
+ }>;
924
+ selection: z.ZodOptional<z.ZodUnknown>;
925
+ }, z.core.$strict>;
926
+ export type FanoutSubRunBranchTemplate = z.infer<typeof FanoutSubRunBranchTemplate>;
927
+ export declare const FanoutRelayBranchTemplate: z.ZodObject<{
928
+ branch_id: z.ZodString;
929
+ execution: z.ZodObject<{
930
+ kind: z.ZodLiteral<"relay">;
931
+ role: z.ZodEnum<{
932
+ researcher: "researcher";
933
+ implementer: "implementer";
934
+ reviewer: "reviewer";
935
+ }>;
936
+ goal: z.ZodString;
937
+ report_schema: z.ZodString;
938
+ provenance_field: z.ZodOptional<z.ZodString>;
939
+ }, z.core.$strict>;
940
+ connector: z.ZodOptional<z.ZodString>;
941
+ selection: z.ZodOptional<z.ZodUnknown>;
942
+ }, z.core.$strict>;
943
+ export type FanoutRelayBranchTemplate = z.infer<typeof FanoutRelayBranchTemplate>;
944
+ export declare const FanoutBranchTemplate: z.ZodUnion<readonly [z.ZodObject<{
945
+ branch_id: z.ZodString;
946
+ flow_ref: z.ZodObject<{
947
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
948
+ entry_mode: z.ZodString;
949
+ version: z.ZodOptional<z.ZodString>;
950
+ }, z.core.$strict>;
951
+ goal: z.ZodString;
952
+ depth: z.ZodEnum<{
953
+ low: "low";
954
+ medium: "medium";
955
+ high: "high";
956
+ tournament: "tournament";
957
+ autonomous: "autonomous";
958
+ }>;
959
+ selection: z.ZodOptional<z.ZodUnknown>;
960
+ }, z.core.$strict>, z.ZodObject<{
961
+ branch_id: z.ZodString;
962
+ execution: z.ZodObject<{
963
+ kind: z.ZodLiteral<"relay">;
964
+ role: z.ZodEnum<{
965
+ researcher: "researcher";
966
+ implementer: "implementer";
967
+ reviewer: "reviewer";
968
+ }>;
969
+ goal: z.ZodString;
970
+ report_schema: z.ZodString;
971
+ provenance_field: z.ZodOptional<z.ZodString>;
972
+ }, z.core.$strict>;
973
+ connector: z.ZodOptional<z.ZodString>;
974
+ selection: z.ZodOptional<z.ZodUnknown>;
975
+ }, z.core.$strict>]>;
976
+ export type FanoutBranchTemplate = z.infer<typeof FanoutBranchTemplate>;
977
+ export declare const FanoutBranchesStatic: z.ZodObject<{
978
+ kind: z.ZodLiteral<"static">;
979
+ branches: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
980
+ branch_id: z.ZodString;
981
+ flow_ref: z.ZodObject<{
982
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
983
+ entry_mode: z.ZodString;
984
+ version: z.ZodOptional<z.ZodString>;
985
+ }, z.core.$strict>;
986
+ goal: z.ZodString;
987
+ depth: z.ZodEnum<{
988
+ low: "low";
989
+ medium: "medium";
990
+ high: "high";
991
+ tournament: "tournament";
992
+ autonomous: "autonomous";
993
+ }>;
994
+ selection: z.ZodOptional<z.ZodObject<{
995
+ model: z.ZodOptional<z.ZodObject<{
996
+ provider: z.ZodEnum<{
997
+ custom: "custom";
998
+ openai: "openai";
999
+ anthropic: "anthropic";
1000
+ gemini: "gemini";
1001
+ }>;
1002
+ model: z.ZodString;
1003
+ }, z.core.$strict>>;
1004
+ effort: z.ZodOptional<z.ZodEnum<{
1005
+ low: "low";
1006
+ medium: "medium";
1007
+ high: "high";
1008
+ none: "none";
1009
+ minimal: "minimal";
1010
+ xhigh: "xhigh";
1011
+ max: "max";
1012
+ }>>;
1013
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1014
+ mode: z.ZodLiteral<"inherit">;
1015
+ }, z.core.$strict>, z.ZodObject<{
1016
+ mode: z.ZodLiteral<"replace">;
1017
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1018
+ }, z.core.$strict>, z.ZodObject<{
1019
+ mode: z.ZodLiteral<"append">;
1020
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1021
+ }, z.core.$strict>, z.ZodObject<{
1022
+ mode: z.ZodLiteral<"remove">;
1023
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1024
+ }, z.core.$strict>], "mode">>;
1025
+ depth: z.ZodOptional<z.ZodEnum<{
1026
+ low: "low";
1027
+ medium: "medium";
1028
+ high: "high";
1029
+ tournament: "tournament";
1030
+ autonomous: "autonomous";
1031
+ }>>;
1032
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1033
+ }, z.core.$strict>>;
1034
+ }, z.core.$strict>, z.ZodObject<{
1035
+ branch_id: z.ZodString;
1036
+ execution: z.ZodObject<{
1037
+ kind: z.ZodLiteral<"relay">;
1038
+ role: z.ZodEnum<{
1039
+ researcher: "researcher";
1040
+ implementer: "implementer";
1041
+ reviewer: "reviewer";
1042
+ }>;
1043
+ goal: z.ZodString;
1044
+ report_schema: z.ZodString;
1045
+ provenance_field: z.ZodOptional<z.ZodString>;
1046
+ }, z.core.$strict>;
1047
+ connector: z.ZodOptional<z.ZodString>;
1048
+ selection: z.ZodOptional<z.ZodObject<{
1049
+ model: z.ZodOptional<z.ZodObject<{
1050
+ provider: z.ZodEnum<{
1051
+ custom: "custom";
1052
+ openai: "openai";
1053
+ anthropic: "anthropic";
1054
+ gemini: "gemini";
1055
+ }>;
1056
+ model: z.ZodString;
1057
+ }, z.core.$strict>>;
1058
+ effort: z.ZodOptional<z.ZodEnum<{
1059
+ low: "low";
1060
+ medium: "medium";
1061
+ high: "high";
1062
+ none: "none";
1063
+ minimal: "minimal";
1064
+ xhigh: "xhigh";
1065
+ max: "max";
1066
+ }>>;
1067
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1068
+ mode: z.ZodLiteral<"inherit">;
1069
+ }, z.core.$strict>, z.ZodObject<{
1070
+ mode: z.ZodLiteral<"replace">;
1071
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1072
+ }, z.core.$strict>, z.ZodObject<{
1073
+ mode: z.ZodLiteral<"append">;
1074
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1075
+ }, z.core.$strict>, z.ZodObject<{
1076
+ mode: z.ZodLiteral<"remove">;
1077
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1078
+ }, z.core.$strict>], "mode">>;
1079
+ depth: z.ZodOptional<z.ZodEnum<{
1080
+ low: "low";
1081
+ medium: "medium";
1082
+ high: "high";
1083
+ tournament: "tournament";
1084
+ autonomous: "autonomous";
1085
+ }>>;
1086
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1087
+ }, z.core.$strict>>;
1088
+ }, z.core.$strict>]>>;
1089
+ }, z.core.$strict>;
1090
+ export type FanoutBranchesStatic = z.infer<typeof FanoutBranchesStatic>;
1091
+ export declare const FanoutBranchesDynamic: z.ZodObject<{
1092
+ kind: z.ZodLiteral<"dynamic">;
1093
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1094
+ items_path: z.ZodString;
1095
+ template: z.ZodUnion<readonly [z.ZodObject<{
1096
+ branch_id: z.ZodString;
1097
+ flow_ref: z.ZodObject<{
1098
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
1099
+ entry_mode: z.ZodString;
1100
+ version: z.ZodOptional<z.ZodString>;
1101
+ }, z.core.$strict>;
1102
+ goal: z.ZodString;
1103
+ depth: z.ZodEnum<{
1104
+ low: "low";
1105
+ medium: "medium";
1106
+ high: "high";
1107
+ tournament: "tournament";
1108
+ autonomous: "autonomous";
1109
+ }>;
1110
+ selection: z.ZodOptional<z.ZodUnknown>;
1111
+ }, z.core.$strict>, z.ZodObject<{
1112
+ branch_id: z.ZodString;
1113
+ execution: z.ZodObject<{
1114
+ kind: z.ZodLiteral<"relay">;
1115
+ role: z.ZodEnum<{
1116
+ researcher: "researcher";
1117
+ implementer: "implementer";
1118
+ reviewer: "reviewer";
1119
+ }>;
1120
+ goal: z.ZodString;
1121
+ report_schema: z.ZodString;
1122
+ provenance_field: z.ZodOptional<z.ZodString>;
1123
+ }, z.core.$strict>;
1124
+ connector: z.ZodOptional<z.ZodString>;
1125
+ selection: z.ZodOptional<z.ZodUnknown>;
1126
+ }, z.core.$strict>]>;
1127
+ max_branches: z.ZodDefault<z.ZodUnion<readonly [z.ZodNumber, z.ZodDiscriminatedUnion<[z.ZodObject<{
1128
+ kind: z.ZodLiteral<"constant">;
1129
+ value: z.ZodNumber;
1130
+ }, z.core.$strict>, z.ZodObject<{
1131
+ kind: z.ZodLiteral<"axis">;
1132
+ axis: z.ZodLiteral<"tournament_n">;
1133
+ }, z.core.$strict>], "kind">]>>;
1134
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1135
+ kind: z.ZodLiteral<"constant">;
1136
+ value: z.ZodNumber;
1137
+ }, z.core.$strict>, z.ZodObject<{
1138
+ kind: z.ZodLiteral<"axis">;
1139
+ axis: z.ZodLiteral<"tournament_n">;
1140
+ }, z.core.$strict>], "kind">>;
1141
+ }, z.core.$strict>;
1142
+ export type FanoutBranchesDynamic = z.infer<typeof FanoutBranchesDynamic>;
1143
+ export declare const FanoutBranches: z.ZodDiscriminatedUnion<[z.ZodObject<{
1144
+ kind: z.ZodLiteral<"static">;
1145
+ branches: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1146
+ branch_id: z.ZodString;
1147
+ flow_ref: z.ZodObject<{
1148
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
1149
+ entry_mode: z.ZodString;
1150
+ version: z.ZodOptional<z.ZodString>;
1151
+ }, z.core.$strict>;
1152
+ goal: z.ZodString;
1153
+ depth: z.ZodEnum<{
1154
+ low: "low";
1155
+ medium: "medium";
1156
+ high: "high";
1157
+ tournament: "tournament";
1158
+ autonomous: "autonomous";
1159
+ }>;
1160
+ selection: z.ZodOptional<z.ZodObject<{
1161
+ model: z.ZodOptional<z.ZodObject<{
1162
+ provider: z.ZodEnum<{
1163
+ custom: "custom";
1164
+ openai: "openai";
1165
+ anthropic: "anthropic";
1166
+ gemini: "gemini";
1167
+ }>;
1168
+ model: z.ZodString;
1169
+ }, z.core.$strict>>;
1170
+ effort: z.ZodOptional<z.ZodEnum<{
1171
+ low: "low";
1172
+ medium: "medium";
1173
+ high: "high";
1174
+ none: "none";
1175
+ minimal: "minimal";
1176
+ xhigh: "xhigh";
1177
+ max: "max";
1178
+ }>>;
1179
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1180
+ mode: z.ZodLiteral<"inherit">;
1181
+ }, z.core.$strict>, z.ZodObject<{
1182
+ mode: z.ZodLiteral<"replace">;
1183
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1184
+ }, z.core.$strict>, z.ZodObject<{
1185
+ mode: z.ZodLiteral<"append">;
1186
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1187
+ }, z.core.$strict>, z.ZodObject<{
1188
+ mode: z.ZodLiteral<"remove">;
1189
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1190
+ }, z.core.$strict>], "mode">>;
1191
+ depth: z.ZodOptional<z.ZodEnum<{
1192
+ low: "low";
1193
+ medium: "medium";
1194
+ high: "high";
1195
+ tournament: "tournament";
1196
+ autonomous: "autonomous";
1197
+ }>>;
1198
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1199
+ }, z.core.$strict>>;
1200
+ }, z.core.$strict>, z.ZodObject<{
1201
+ branch_id: z.ZodString;
1202
+ execution: z.ZodObject<{
1203
+ kind: z.ZodLiteral<"relay">;
1204
+ role: z.ZodEnum<{
1205
+ researcher: "researcher";
1206
+ implementer: "implementer";
1207
+ reviewer: "reviewer";
1208
+ }>;
1209
+ goal: z.ZodString;
1210
+ report_schema: z.ZodString;
1211
+ provenance_field: z.ZodOptional<z.ZodString>;
1212
+ }, z.core.$strict>;
1213
+ connector: z.ZodOptional<z.ZodString>;
1214
+ selection: z.ZodOptional<z.ZodObject<{
1215
+ model: z.ZodOptional<z.ZodObject<{
1216
+ provider: z.ZodEnum<{
1217
+ custom: "custom";
1218
+ openai: "openai";
1219
+ anthropic: "anthropic";
1220
+ gemini: "gemini";
1221
+ }>;
1222
+ model: z.ZodString;
1223
+ }, z.core.$strict>>;
1224
+ effort: z.ZodOptional<z.ZodEnum<{
1225
+ low: "low";
1226
+ medium: "medium";
1227
+ high: "high";
1228
+ none: "none";
1229
+ minimal: "minimal";
1230
+ xhigh: "xhigh";
1231
+ max: "max";
1232
+ }>>;
1233
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1234
+ mode: z.ZodLiteral<"inherit">;
1235
+ }, z.core.$strict>, z.ZodObject<{
1236
+ mode: z.ZodLiteral<"replace">;
1237
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1238
+ }, z.core.$strict>, z.ZodObject<{
1239
+ mode: z.ZodLiteral<"append">;
1240
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1241
+ }, z.core.$strict>, z.ZodObject<{
1242
+ mode: z.ZodLiteral<"remove">;
1243
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1244
+ }, z.core.$strict>], "mode">>;
1245
+ depth: z.ZodOptional<z.ZodEnum<{
1246
+ low: "low";
1247
+ medium: "medium";
1248
+ high: "high";
1249
+ tournament: "tournament";
1250
+ autonomous: "autonomous";
1251
+ }>>;
1252
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1253
+ }, z.core.$strict>>;
1254
+ }, z.core.$strict>]>>;
1255
+ }, z.core.$strict>, z.ZodObject<{
1256
+ kind: z.ZodLiteral<"dynamic">;
1257
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1258
+ items_path: z.ZodString;
1259
+ template: z.ZodUnion<readonly [z.ZodObject<{
1260
+ branch_id: z.ZodString;
1261
+ flow_ref: z.ZodObject<{
1262
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
1263
+ entry_mode: z.ZodString;
1264
+ version: z.ZodOptional<z.ZodString>;
1265
+ }, z.core.$strict>;
1266
+ goal: z.ZodString;
1267
+ depth: z.ZodEnum<{
1268
+ low: "low";
1269
+ medium: "medium";
1270
+ high: "high";
1271
+ tournament: "tournament";
1272
+ autonomous: "autonomous";
1273
+ }>;
1274
+ selection: z.ZodOptional<z.ZodUnknown>;
1275
+ }, z.core.$strict>, z.ZodObject<{
1276
+ branch_id: z.ZodString;
1277
+ execution: z.ZodObject<{
1278
+ kind: z.ZodLiteral<"relay">;
1279
+ role: z.ZodEnum<{
1280
+ researcher: "researcher";
1281
+ implementer: "implementer";
1282
+ reviewer: "reviewer";
1283
+ }>;
1284
+ goal: z.ZodString;
1285
+ report_schema: z.ZodString;
1286
+ provenance_field: z.ZodOptional<z.ZodString>;
1287
+ }, z.core.$strict>;
1288
+ connector: z.ZodOptional<z.ZodString>;
1289
+ selection: z.ZodOptional<z.ZodUnknown>;
1290
+ }, z.core.$strict>]>;
1291
+ max_branches: z.ZodDefault<z.ZodUnion<readonly [z.ZodNumber, z.ZodDiscriminatedUnion<[z.ZodObject<{
1292
+ kind: z.ZodLiteral<"constant">;
1293
+ value: z.ZodNumber;
1294
+ }, z.core.$strict>, z.ZodObject<{
1295
+ kind: z.ZodLiteral<"axis">;
1296
+ axis: z.ZodLiteral<"tournament_n">;
1297
+ }, z.core.$strict>], "kind">]>>;
1298
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1299
+ kind: z.ZodLiteral<"constant">;
1300
+ value: z.ZodNumber;
1301
+ }, z.core.$strict>, z.ZodObject<{
1302
+ kind: z.ZodLiteral<"axis">;
1303
+ axis: z.ZodLiteral<"tournament_n">;
1304
+ }, z.core.$strict>], "kind">>;
1305
+ }, z.core.$strict>], "kind">;
1306
+ export type FanoutBranches = z.infer<typeof FanoutBranches>;
1307
+ export declare const FanoutConcurrency: z.ZodDiscriminatedUnion<[z.ZodObject<{
1308
+ kind: z.ZodLiteral<"unbounded">;
1309
+ }, z.core.$strict>, z.ZodObject<{
1310
+ kind: z.ZodLiteral<"bounded">;
1311
+ max: z.ZodNumber;
1312
+ }, z.core.$strict>], "kind">;
1313
+ export type FanoutConcurrency = z.infer<typeof FanoutConcurrency>;
1314
+ export declare const FanoutFailurePolicy: z.ZodEnum<{
1315
+ "abort-all": "abort-all";
1316
+ "continue-others": "continue-others";
1317
+ }>;
1318
+ export type FanoutFailurePolicy = z.infer<typeof FanoutFailurePolicy>;
1319
+ export declare const FanoutRubricRuntimeSignalSource: z.ZodDiscriminatedUnion<[z.ZodObject<{
1320
+ kind: z.ZodLiteral<"constant">;
1321
+ signal: z.ZodEnum<{
1322
+ met: "met";
1323
+ missing: "missing";
1324
+ "n/a": "n/a";
1325
+ }>;
1326
+ }, z.core.$strict>, z.ZodObject<{
1327
+ kind: z.ZodLiteral<"non_empty_array">;
1328
+ path: z.ZodString;
1329
+ }, z.core.$strict>, z.ZodObject<{
1330
+ kind: z.ZodLiteral<"non_empty_string">;
1331
+ path: z.ZodString;
1332
+ }, z.core.$strict>], "kind">;
1333
+ export type FanoutRubricRuntimeSignalSource = z.infer<typeof FanoutRubricRuntimeSignalSource>;
1334
+ export declare const FanoutRubric: z.ZodObject<{
1335
+ model_judgments_path: z.ZodString;
1336
+ ordered_dims: z.ZodArray<z.ZodString>;
1337
+ runtime_signals: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
1338
+ kind: z.ZodLiteral<"constant">;
1339
+ signal: z.ZodEnum<{
1340
+ met: "met";
1341
+ missing: "missing";
1342
+ "n/a": "n/a";
1343
+ }>;
1344
+ }, z.core.$strict>, z.ZodObject<{
1345
+ kind: z.ZodLiteral<"non_empty_array">;
1346
+ path: z.ZodString;
1347
+ }, z.core.$strict>, z.ZodObject<{
1348
+ kind: z.ZodLiteral<"non_empty_string">;
1349
+ path: z.ZodString;
1350
+ }, z.core.$strict>], "kind">>;
1351
+ }, z.core.$strict>;
1352
+ export type FanoutRubric = z.infer<typeof FanoutRubric>;
1353
+ export declare const FanoutStep: z.ZodObject<{
1354
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
1355
+ title: z.ZodString;
1356
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
1357
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
1358
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
1359
+ selection: z.ZodOptional<z.ZodObject<{
1360
+ model: z.ZodOptional<z.ZodObject<{
1361
+ provider: z.ZodEnum<{
1362
+ custom: "custom";
1363
+ openai: "openai";
1364
+ anthropic: "anthropic";
1365
+ gemini: "gemini";
1366
+ }>;
1367
+ model: z.ZodString;
1368
+ }, z.core.$strict>>;
1369
+ effort: z.ZodOptional<z.ZodEnum<{
1370
+ low: "low";
1371
+ medium: "medium";
1372
+ high: "high";
1373
+ none: "none";
1374
+ minimal: "minimal";
1375
+ xhigh: "xhigh";
1376
+ max: "max";
1377
+ }>>;
1378
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1379
+ mode: z.ZodLiteral<"inherit">;
1380
+ }, z.core.$strict>, z.ZodObject<{
1381
+ mode: z.ZodLiteral<"replace">;
1382
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1383
+ }, z.core.$strict>, z.ZodObject<{
1384
+ mode: z.ZodLiteral<"append">;
1385
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1386
+ }, z.core.$strict>, z.ZodObject<{
1387
+ mode: z.ZodLiteral<"remove">;
1388
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1389
+ }, z.core.$strict>], "mode">>;
1390
+ depth: z.ZodOptional<z.ZodEnum<{
1391
+ low: "low";
1392
+ medium: "medium";
1393
+ high: "high";
1394
+ tournament: "tournament";
1395
+ autonomous: "autonomous";
1396
+ }>>;
1397
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1398
+ }, z.core.$strict>>;
1399
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
1400
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
1401
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
1402
+ description: z.ZodString;
1403
+ }, z.core.$strict>>>;
1404
+ equipment_scope: z.ZodOptional<z.ZodObject<{
1405
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
1406
+ allow: z.ZodArray<z.ZodString>;
1407
+ }, z.core.$strict>]>>;
1408
+ enforcement: z.ZodDefault<z.ZodEnum<{
1409
+ trusted: "trusted";
1410
+ enforced: "enforced";
1411
+ }>>;
1412
+ }, z.core.$strict>>;
1413
+ route_from_report: z.ZodOptional<z.ZodObject<{
1414
+ path: z.ZodArray<z.ZodString>;
1415
+ }, z.core.$strict>>;
1416
+ budgets: z.ZodOptional<z.ZodObject<{
1417
+ max_attempts: z.ZodNumber;
1418
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
1419
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
1420
+ }, z.core.$strip>>;
1421
+ executor: z.ZodLiteral<"orchestrator">;
1422
+ kind: z.ZodLiteral<"fanout">;
1423
+ branches: z.ZodDiscriminatedUnion<[z.ZodObject<{
1424
+ kind: z.ZodLiteral<"static">;
1425
+ branches: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1426
+ branch_id: z.ZodString;
1427
+ flow_ref: z.ZodObject<{
1428
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
1429
+ entry_mode: z.ZodString;
1430
+ version: z.ZodOptional<z.ZodString>;
1431
+ }, z.core.$strict>;
1432
+ goal: z.ZodString;
1433
+ depth: z.ZodEnum<{
1434
+ low: "low";
1435
+ medium: "medium";
1436
+ high: "high";
1437
+ tournament: "tournament";
1438
+ autonomous: "autonomous";
1439
+ }>;
1440
+ selection: z.ZodOptional<z.ZodObject<{
1441
+ model: z.ZodOptional<z.ZodObject<{
1442
+ provider: z.ZodEnum<{
1443
+ custom: "custom";
1444
+ openai: "openai";
1445
+ anthropic: "anthropic";
1446
+ gemini: "gemini";
1447
+ }>;
1448
+ model: z.ZodString;
1449
+ }, z.core.$strict>>;
1450
+ effort: z.ZodOptional<z.ZodEnum<{
1451
+ low: "low";
1452
+ medium: "medium";
1453
+ high: "high";
1454
+ none: "none";
1455
+ minimal: "minimal";
1456
+ xhigh: "xhigh";
1457
+ max: "max";
1458
+ }>>;
1459
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1460
+ mode: z.ZodLiteral<"inherit">;
1461
+ }, z.core.$strict>, z.ZodObject<{
1462
+ mode: z.ZodLiteral<"replace">;
1463
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1464
+ }, z.core.$strict>, z.ZodObject<{
1465
+ mode: z.ZodLiteral<"append">;
1466
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1467
+ }, z.core.$strict>, z.ZodObject<{
1468
+ mode: z.ZodLiteral<"remove">;
1469
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1470
+ }, z.core.$strict>], "mode">>;
1471
+ depth: z.ZodOptional<z.ZodEnum<{
1472
+ low: "low";
1473
+ medium: "medium";
1474
+ high: "high";
1475
+ tournament: "tournament";
1476
+ autonomous: "autonomous";
1477
+ }>>;
1478
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1479
+ }, z.core.$strict>>;
1480
+ }, z.core.$strict>, z.ZodObject<{
1481
+ branch_id: z.ZodString;
1482
+ execution: z.ZodObject<{
1483
+ kind: z.ZodLiteral<"relay">;
1484
+ role: z.ZodEnum<{
1485
+ researcher: "researcher";
1486
+ implementer: "implementer";
1487
+ reviewer: "reviewer";
1488
+ }>;
1489
+ goal: z.ZodString;
1490
+ report_schema: z.ZodString;
1491
+ provenance_field: z.ZodOptional<z.ZodString>;
1492
+ }, z.core.$strict>;
1493
+ connector: z.ZodOptional<z.ZodString>;
1494
+ selection: z.ZodOptional<z.ZodObject<{
1495
+ model: z.ZodOptional<z.ZodObject<{
1496
+ provider: z.ZodEnum<{
1497
+ custom: "custom";
1498
+ openai: "openai";
1499
+ anthropic: "anthropic";
1500
+ gemini: "gemini";
1501
+ }>;
1502
+ model: z.ZodString;
1503
+ }, z.core.$strict>>;
1504
+ effort: z.ZodOptional<z.ZodEnum<{
1505
+ low: "low";
1506
+ medium: "medium";
1507
+ high: "high";
1508
+ none: "none";
1509
+ minimal: "minimal";
1510
+ xhigh: "xhigh";
1511
+ max: "max";
1512
+ }>>;
1513
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1514
+ mode: z.ZodLiteral<"inherit">;
1515
+ }, z.core.$strict>, z.ZodObject<{
1516
+ mode: z.ZodLiteral<"replace">;
1517
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1518
+ }, z.core.$strict>, z.ZodObject<{
1519
+ mode: z.ZodLiteral<"append">;
1520
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1521
+ }, z.core.$strict>, z.ZodObject<{
1522
+ mode: z.ZodLiteral<"remove">;
1523
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1524
+ }, z.core.$strict>], "mode">>;
1525
+ depth: z.ZodOptional<z.ZodEnum<{
1526
+ low: "low";
1527
+ medium: "medium";
1528
+ high: "high";
1529
+ tournament: "tournament";
1530
+ autonomous: "autonomous";
1531
+ }>>;
1532
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1533
+ }, z.core.$strict>>;
1534
+ }, z.core.$strict>]>>;
1535
+ }, z.core.$strict>, z.ZodObject<{
1536
+ kind: z.ZodLiteral<"dynamic">;
1537
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1538
+ items_path: z.ZodString;
1539
+ template: z.ZodUnion<readonly [z.ZodObject<{
1540
+ branch_id: z.ZodString;
1541
+ flow_ref: z.ZodObject<{
1542
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
1543
+ entry_mode: z.ZodString;
1544
+ version: z.ZodOptional<z.ZodString>;
1545
+ }, z.core.$strict>;
1546
+ goal: z.ZodString;
1547
+ depth: z.ZodEnum<{
1548
+ low: "low";
1549
+ medium: "medium";
1550
+ high: "high";
1551
+ tournament: "tournament";
1552
+ autonomous: "autonomous";
1553
+ }>;
1554
+ selection: z.ZodOptional<z.ZodUnknown>;
1555
+ }, z.core.$strict>, z.ZodObject<{
1556
+ branch_id: z.ZodString;
1557
+ execution: z.ZodObject<{
1558
+ kind: z.ZodLiteral<"relay">;
1559
+ role: z.ZodEnum<{
1560
+ researcher: "researcher";
1561
+ implementer: "implementer";
1562
+ reviewer: "reviewer";
1563
+ }>;
1564
+ goal: z.ZodString;
1565
+ report_schema: z.ZodString;
1566
+ provenance_field: z.ZodOptional<z.ZodString>;
1567
+ }, z.core.$strict>;
1568
+ connector: z.ZodOptional<z.ZodString>;
1569
+ selection: z.ZodOptional<z.ZodUnknown>;
1570
+ }, z.core.$strict>]>;
1571
+ max_branches: z.ZodDefault<z.ZodUnion<readonly [z.ZodNumber, z.ZodDiscriminatedUnion<[z.ZodObject<{
1572
+ kind: z.ZodLiteral<"constant">;
1573
+ value: z.ZodNumber;
1574
+ }, z.core.$strict>, z.ZodObject<{
1575
+ kind: z.ZodLiteral<"axis">;
1576
+ axis: z.ZodLiteral<"tournament_n">;
1577
+ }, z.core.$strict>], "kind">]>>;
1578
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1579
+ kind: z.ZodLiteral<"constant">;
1580
+ value: z.ZodNumber;
1581
+ }, z.core.$strict>, z.ZodObject<{
1582
+ kind: z.ZodLiteral<"axis">;
1583
+ axis: z.ZodLiteral<"tournament_n">;
1584
+ }, z.core.$strict>], "kind">>;
1585
+ }, z.core.$strict>], "kind">;
1586
+ concurrency: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1587
+ kind: z.ZodLiteral<"unbounded">;
1588
+ }, z.core.$strict>, z.ZodObject<{
1589
+ kind: z.ZodLiteral<"bounded">;
1590
+ max: z.ZodNumber;
1591
+ }, z.core.$strict>], "kind">>;
1592
+ on_child_failure: z.ZodDefault<z.ZodEnum<{
1593
+ "abort-all": "abort-all";
1594
+ "continue-others": "continue-others";
1595
+ }>>;
1596
+ rubric: z.ZodOptional<z.ZodObject<{
1597
+ model_judgments_path: z.ZodString;
1598
+ ordered_dims: z.ZodArray<z.ZodString>;
1599
+ runtime_signals: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
1600
+ kind: z.ZodLiteral<"constant">;
1601
+ signal: z.ZodEnum<{
1602
+ met: "met";
1603
+ missing: "missing";
1604
+ "n/a": "n/a";
1605
+ }>;
1606
+ }, z.core.$strict>, z.ZodObject<{
1607
+ kind: z.ZodLiteral<"non_empty_array">;
1608
+ path: z.ZodString;
1609
+ }, z.core.$strict>, z.ZodObject<{
1610
+ kind: z.ZodLiteral<"non_empty_string">;
1611
+ path: z.ZodString;
1612
+ }, z.core.$strict>], "kind">>;
1613
+ }, z.core.$strict>>;
1614
+ writes: z.ZodObject<{
1615
+ branches_dir: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1616
+ aggregate: z.ZodObject<{
1617
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1618
+ schema: z.ZodString;
1619
+ }, z.core.$strip>;
1620
+ }, z.core.$strict>;
1621
+ check: z.ZodObject<{
1622
+ kind: z.ZodLiteral<"fanout_aggregate">;
1623
+ source: z.ZodObject<{
1624
+ kind: z.ZodLiteral<"fanout_results">;
1625
+ ref: z.ZodLiteral<"aggregate">;
1626
+ }, z.core.$strict>;
1627
+ join: z.ZodDiscriminatedUnion<[z.ZodObject<{
1628
+ policy: z.ZodLiteral<"pick-winner">;
1629
+ }, z.core.$strict>, z.ZodObject<{
1630
+ policy: z.ZodLiteral<"disjoint-merge">;
1631
+ }, z.core.$strict>, z.ZodObject<{
1632
+ policy: z.ZodLiteral<"aggregate-only">;
1633
+ }, z.core.$strict>, z.ZodObject<{
1634
+ policy: z.ZodLiteral<"aggregate-survivors">;
1635
+ }, z.core.$strict>], "policy">;
1636
+ verdicts: z.ZodObject<{
1637
+ admit: z.ZodArray<z.ZodString>;
1638
+ }, z.core.$strict>;
1639
+ }, z.core.$strict>;
1640
+ }, z.core.$strict>;
1641
+ export type FanoutStep = z.infer<typeof FanoutStep>;
1642
+ export declare const Step: z.ZodDiscriminatedUnion<[z.ZodObject<{
1643
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
1644
+ title: z.ZodString;
1645
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
1646
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
1647
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
1648
+ selection: z.ZodOptional<z.ZodObject<{
1649
+ model: z.ZodOptional<z.ZodObject<{
1650
+ provider: z.ZodEnum<{
1651
+ custom: "custom";
1652
+ openai: "openai";
1653
+ anthropic: "anthropic";
1654
+ gemini: "gemini";
1655
+ }>;
1656
+ model: z.ZodString;
1657
+ }, z.core.$strict>>;
1658
+ effort: z.ZodOptional<z.ZodEnum<{
1659
+ low: "low";
1660
+ medium: "medium";
1661
+ high: "high";
1662
+ none: "none";
1663
+ minimal: "minimal";
1664
+ xhigh: "xhigh";
1665
+ max: "max";
1666
+ }>>;
1667
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1668
+ mode: z.ZodLiteral<"inherit">;
1669
+ }, z.core.$strict>, z.ZodObject<{
1670
+ mode: z.ZodLiteral<"replace">;
1671
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1672
+ }, z.core.$strict>, z.ZodObject<{
1673
+ mode: z.ZodLiteral<"append">;
1674
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1675
+ }, z.core.$strict>, z.ZodObject<{
1676
+ mode: z.ZodLiteral<"remove">;
1677
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1678
+ }, z.core.$strict>], "mode">>;
1679
+ depth: z.ZodOptional<z.ZodEnum<{
1680
+ low: "low";
1681
+ medium: "medium";
1682
+ high: "high";
1683
+ tournament: "tournament";
1684
+ autonomous: "autonomous";
1685
+ }>>;
1686
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1687
+ }, z.core.$strict>>;
1688
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
1689
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
1690
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
1691
+ description: z.ZodString;
1692
+ }, z.core.$strict>>>;
1693
+ equipment_scope: z.ZodOptional<z.ZodObject<{
1694
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
1695
+ allow: z.ZodArray<z.ZodString>;
1696
+ }, z.core.$strict>]>>;
1697
+ enforcement: z.ZodDefault<z.ZodEnum<{
1698
+ trusted: "trusted";
1699
+ enforced: "enforced";
1700
+ }>>;
1701
+ }, z.core.$strict>>;
1702
+ route_from_report: z.ZodOptional<z.ZodObject<{
1703
+ path: z.ZodArray<z.ZodString>;
1704
+ }, z.core.$strict>>;
1705
+ budgets: z.ZodOptional<z.ZodObject<{
1706
+ max_attempts: z.ZodNumber;
1707
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
1708
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
1709
+ }, z.core.$strip>>;
1710
+ executor: z.ZodLiteral<"orchestrator">;
1711
+ kind: z.ZodLiteral<"compose">;
1712
+ writes: z.ZodObject<{
1713
+ report: z.ZodObject<{
1714
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1715
+ schema: z.ZodString;
1716
+ }, z.core.$strip>;
1717
+ }, z.core.$strict>;
1718
+ check: z.ZodObject<{
1719
+ kind: z.ZodLiteral<"schema_sections">;
1720
+ source: z.ZodObject<{
1721
+ kind: z.ZodLiteral<"report">;
1722
+ ref: z.ZodLiteral<"report">;
1723
+ }, z.core.$strict>;
1724
+ required: z.ZodArray<z.ZodString>;
1725
+ }, z.core.$strict>;
1726
+ }, z.core.$strict>, z.ZodObject<{
1727
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
1728
+ title: z.ZodString;
1729
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
1730
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
1731
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
1732
+ selection: z.ZodOptional<z.ZodObject<{
1733
+ model: z.ZodOptional<z.ZodObject<{
1734
+ provider: z.ZodEnum<{
1735
+ custom: "custom";
1736
+ openai: "openai";
1737
+ anthropic: "anthropic";
1738
+ gemini: "gemini";
1739
+ }>;
1740
+ model: z.ZodString;
1741
+ }, z.core.$strict>>;
1742
+ effort: z.ZodOptional<z.ZodEnum<{
1743
+ low: "low";
1744
+ medium: "medium";
1745
+ high: "high";
1746
+ none: "none";
1747
+ minimal: "minimal";
1748
+ xhigh: "xhigh";
1749
+ max: "max";
1750
+ }>>;
1751
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1752
+ mode: z.ZodLiteral<"inherit">;
1753
+ }, z.core.$strict>, z.ZodObject<{
1754
+ mode: z.ZodLiteral<"replace">;
1755
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1756
+ }, z.core.$strict>, z.ZodObject<{
1757
+ mode: z.ZodLiteral<"append">;
1758
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1759
+ }, z.core.$strict>, z.ZodObject<{
1760
+ mode: z.ZodLiteral<"remove">;
1761
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1762
+ }, z.core.$strict>], "mode">>;
1763
+ depth: z.ZodOptional<z.ZodEnum<{
1764
+ low: "low";
1765
+ medium: "medium";
1766
+ high: "high";
1767
+ tournament: "tournament";
1768
+ autonomous: "autonomous";
1769
+ }>>;
1770
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1771
+ }, z.core.$strict>>;
1772
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
1773
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
1774
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
1775
+ description: z.ZodString;
1776
+ }, z.core.$strict>>>;
1777
+ equipment_scope: z.ZodOptional<z.ZodObject<{
1778
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
1779
+ allow: z.ZodArray<z.ZodString>;
1780
+ }, z.core.$strict>]>>;
1781
+ enforcement: z.ZodDefault<z.ZodEnum<{
1782
+ trusted: "trusted";
1783
+ enforced: "enforced";
1784
+ }>>;
1785
+ }, z.core.$strict>>;
1786
+ route_from_report: z.ZodOptional<z.ZodObject<{
1787
+ path: z.ZodArray<z.ZodString>;
1788
+ }, z.core.$strict>>;
1789
+ budgets: z.ZodOptional<z.ZodObject<{
1790
+ max_attempts: z.ZodNumber;
1791
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
1792
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
1793
+ }, z.core.$strip>>;
1794
+ executor: z.ZodLiteral<"orchestrator">;
1795
+ kind: z.ZodLiteral<"verification">;
1796
+ writes: z.ZodObject<{
1797
+ report: z.ZodObject<{
1798
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1799
+ schema: z.ZodString;
1800
+ }, z.core.$strip>;
1801
+ }, z.core.$strict>;
1802
+ check: z.ZodObject<{
1803
+ kind: z.ZodLiteral<"schema_sections">;
1804
+ source: z.ZodObject<{
1805
+ kind: z.ZodLiteral<"report">;
1806
+ ref: z.ZodLiteral<"report">;
1807
+ }, z.core.$strict>;
1808
+ required: z.ZodArray<z.ZodString>;
1809
+ }, z.core.$strict>;
1810
+ }, z.core.$strict>, z.ZodObject<{
1811
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
1812
+ title: z.ZodString;
1813
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
1814
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
1815
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
1816
+ selection: z.ZodOptional<z.ZodObject<{
1817
+ model: z.ZodOptional<z.ZodObject<{
1818
+ provider: z.ZodEnum<{
1819
+ custom: "custom";
1820
+ openai: "openai";
1821
+ anthropic: "anthropic";
1822
+ gemini: "gemini";
1823
+ }>;
1824
+ model: z.ZodString;
1825
+ }, z.core.$strict>>;
1826
+ effort: z.ZodOptional<z.ZodEnum<{
1827
+ low: "low";
1828
+ medium: "medium";
1829
+ high: "high";
1830
+ none: "none";
1831
+ minimal: "minimal";
1832
+ xhigh: "xhigh";
1833
+ max: "max";
1834
+ }>>;
1835
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1836
+ mode: z.ZodLiteral<"inherit">;
1837
+ }, z.core.$strict>, z.ZodObject<{
1838
+ mode: z.ZodLiteral<"replace">;
1839
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1840
+ }, z.core.$strict>, z.ZodObject<{
1841
+ mode: z.ZodLiteral<"append">;
1842
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1843
+ }, z.core.$strict>, z.ZodObject<{
1844
+ mode: z.ZodLiteral<"remove">;
1845
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1846
+ }, z.core.$strict>], "mode">>;
1847
+ depth: z.ZodOptional<z.ZodEnum<{
1848
+ low: "low";
1849
+ medium: "medium";
1850
+ high: "high";
1851
+ tournament: "tournament";
1852
+ autonomous: "autonomous";
1853
+ }>>;
1854
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1855
+ }, z.core.$strict>>;
1856
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
1857
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
1858
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
1859
+ description: z.ZodString;
1860
+ }, z.core.$strict>>>;
1861
+ equipment_scope: z.ZodOptional<z.ZodObject<{
1862
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
1863
+ allow: z.ZodArray<z.ZodString>;
1864
+ }, z.core.$strict>]>>;
1865
+ enforcement: z.ZodDefault<z.ZodEnum<{
1866
+ trusted: "trusted";
1867
+ enforced: "enforced";
1868
+ }>>;
1869
+ }, z.core.$strict>>;
1870
+ route_from_report: z.ZodOptional<z.ZodObject<{
1871
+ path: z.ZodArray<z.ZodString>;
1872
+ }, z.core.$strict>>;
1873
+ budgets: z.ZodOptional<z.ZodObject<{
1874
+ max_attempts: z.ZodNumber;
1875
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
1876
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
1877
+ }, z.core.$strip>>;
1878
+ executor: z.ZodLiteral<"orchestrator">;
1879
+ kind: z.ZodLiteral<"checkpoint">;
1880
+ policy: z.ZodObject<{
1881
+ prompt: z.ZodString;
1882
+ choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
1883
+ id: z.ZodString;
1884
+ label: z.ZodOptional<z.ZodString>;
1885
+ description: z.ZodOptional<z.ZodString>;
1886
+ }, z.core.$strict>>>;
1887
+ choices_from: z.ZodOptional<z.ZodObject<{
1888
+ kind: z.ZodLiteral<"report_items">;
1889
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1890
+ items_path: z.ZodString;
1891
+ filter: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1892
+ kind: z.ZodLiteral<"path_equals">;
1893
+ path: z.ZodString;
1894
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
1895
+ }, z.core.$strict>], "kind">>;
1896
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1897
+ kind: z.ZodLiteral<"constant">;
1898
+ value: z.ZodNumber;
1899
+ }, z.core.$strict>, z.ZodObject<{
1900
+ kind: z.ZodLiteral<"axis">;
1901
+ axis: z.ZodLiteral<"tournament_n">;
1902
+ }, z.core.$strict>], "kind">>;
1903
+ id_path: z.ZodString;
1904
+ label_path: z.ZodOptional<z.ZodString>;
1905
+ description_path: z.ZodOptional<z.ZodString>;
1906
+ }, z.core.$strict>>;
1907
+ safe_default_choice: z.ZodOptional<z.ZodString>;
1908
+ auto_resolution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1909
+ policy: z.ZodLiteral<"highest-score">;
1910
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1911
+ branches_path: z.ZodDefault<z.ZodString>;
1912
+ id_path: z.ZodDefault<z.ZodString>;
1913
+ rubric_result_path: z.ZodDefault<z.ZodString>;
1914
+ }, z.core.$strict>], "policy">>;
1915
+ auto_continuable_when_nested: z.ZodOptional<z.ZodBoolean>;
1916
+ report_template: z.ZodOptional<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1917
+ }, z.core.$strict>;
1918
+ writes: z.ZodObject<{
1919
+ request: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1920
+ response: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1921
+ report: z.ZodOptional<z.ZodObject<{
1922
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
1923
+ schema: z.ZodString;
1924
+ }, z.core.$strip>>;
1925
+ }, z.core.$strict>;
1926
+ check: z.ZodObject<{
1927
+ kind: z.ZodLiteral<"checkpoint_selection">;
1928
+ source: z.ZodObject<{
1929
+ kind: z.ZodLiteral<"checkpoint_response">;
1930
+ ref: z.ZodLiteral<"response">;
1931
+ }, z.core.$strict>;
1932
+ allow: z.ZodOptional<z.ZodArray<z.ZodString>>;
1933
+ allow_from: z.ZodOptional<z.ZodObject<{
1934
+ kind: z.ZodLiteral<"policy_choices">;
1935
+ }, z.core.$strict>>;
1936
+ }, z.core.$strict>;
1937
+ }, z.core.$strict>, z.ZodObject<{
1938
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
1939
+ title: z.ZodString;
1940
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
1941
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
1942
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
1943
+ selection: z.ZodOptional<z.ZodObject<{
1944
+ model: z.ZodOptional<z.ZodObject<{
1945
+ provider: z.ZodEnum<{
1946
+ custom: "custom";
1947
+ openai: "openai";
1948
+ anthropic: "anthropic";
1949
+ gemini: "gemini";
1950
+ }>;
1951
+ model: z.ZodString;
1952
+ }, z.core.$strict>>;
1953
+ effort: z.ZodOptional<z.ZodEnum<{
1954
+ low: "low";
1955
+ medium: "medium";
1956
+ high: "high";
1957
+ none: "none";
1958
+ minimal: "minimal";
1959
+ xhigh: "xhigh";
1960
+ max: "max";
1961
+ }>>;
1962
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1963
+ mode: z.ZodLiteral<"inherit">;
1964
+ }, z.core.$strict>, z.ZodObject<{
1965
+ mode: z.ZodLiteral<"replace">;
1966
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1967
+ }, z.core.$strict>, z.ZodObject<{
1968
+ mode: z.ZodLiteral<"append">;
1969
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1970
+ }, z.core.$strict>, z.ZodObject<{
1971
+ mode: z.ZodLiteral<"remove">;
1972
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
1973
+ }, z.core.$strict>], "mode">>;
1974
+ depth: z.ZodOptional<z.ZodEnum<{
1975
+ low: "low";
1976
+ medium: "medium";
1977
+ high: "high";
1978
+ tournament: "tournament";
1979
+ autonomous: "autonomous";
1980
+ }>>;
1981
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
1982
+ }, z.core.$strict>>;
1983
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
1984
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
1985
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
1986
+ description: z.ZodString;
1987
+ }, z.core.$strict>>>;
1988
+ equipment_scope: z.ZodOptional<z.ZodObject<{
1989
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
1990
+ allow: z.ZodArray<z.ZodString>;
1991
+ }, z.core.$strict>]>>;
1992
+ enforcement: z.ZodDefault<z.ZodEnum<{
1993
+ trusted: "trusted";
1994
+ enforced: "enforced";
1995
+ }>>;
1996
+ }, z.core.$strict>>;
1997
+ route_from_report: z.ZodOptional<z.ZodObject<{
1998
+ path: z.ZodArray<z.ZodString>;
1999
+ }, z.core.$strict>>;
2000
+ budgets: z.ZodOptional<z.ZodObject<{
2001
+ max_attempts: z.ZodNumber;
2002
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
2003
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
2004
+ }, z.core.$strip>>;
2005
+ executor: z.ZodLiteral<"worker">;
2006
+ kind: z.ZodLiteral<"relay">;
2007
+ role: z.ZodEnum<{
2008
+ researcher: "researcher";
2009
+ implementer: "implementer";
2010
+ reviewer: "reviewer";
2011
+ }>;
2012
+ connector: z.ZodOptional<z.ZodString>;
2013
+ acceptance_criteria: z.ZodOptional<z.ZodObject<{
2014
+ checks: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2015
+ kind: z.ZodLiteral<"command">;
2016
+ id: z.ZodString;
2017
+ command: z.ZodObject<{
2018
+ id: z.ZodString;
2019
+ cwd: z.ZodString;
2020
+ argv: z.ZodArray<z.ZodString>;
2021
+ timeout_ms: z.ZodNumber;
2022
+ max_output_bytes: z.ZodNumber;
2023
+ env: z.ZodRecord<z.ZodString, z.ZodString>;
2024
+ }, z.core.$strict>;
2025
+ expected_status: z.ZodLiteral<"passed">;
2026
+ }, z.core.$strict>, z.ZodObject<{
2027
+ kind: z.ZodLiteral<"report_field">;
2028
+ id: z.ZodString;
2029
+ path: z.ZodArray<z.ZodString>;
2030
+ predicate: z.ZodEnum<{
2031
+ present: "present";
2032
+ non_empty: "non_empty";
2033
+ changed_on_disk: "changed_on_disk";
2034
+ }>;
2035
+ }, z.core.$strict>], "kind">>;
2036
+ on_failure: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
2037
+ mode: z.ZodLiteral<"hard-fail">;
2038
+ }, z.core.$strict>, z.ZodObject<{
2039
+ mode: z.ZodLiteral<"retry-with-feedback">;
2040
+ }, z.core.$strict>], "mode">>;
2041
+ }, z.core.$strict>>;
2042
+ writes: z.ZodObject<{
2043
+ report: z.ZodOptional<z.ZodObject<{
2044
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2045
+ schema: z.ZodString;
2046
+ }, z.core.$strip>>;
2047
+ request: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2048
+ receipt: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2049
+ result: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2050
+ }, z.core.$strict>;
2051
+ check: z.ZodObject<{
2052
+ kind: z.ZodLiteral<"result_verdict">;
2053
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
2054
+ kind: z.ZodLiteral<"relay_result">;
2055
+ ref: z.ZodLiteral<"result">;
2056
+ }, z.core.$strict>, z.ZodObject<{
2057
+ kind: z.ZodLiteral<"sub_run_result">;
2058
+ ref: z.ZodLiteral<"result">;
2059
+ }, z.core.$strict>], "kind">;
2060
+ pass: z.ZodArray<z.ZodString>;
2061
+ }, z.core.$strict>;
2062
+ }, z.core.$strict>, z.ZodObject<{
2063
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
2064
+ title: z.ZodString;
2065
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
2066
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
2067
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
2068
+ selection: z.ZodOptional<z.ZodObject<{
2069
+ model: z.ZodOptional<z.ZodObject<{
2070
+ provider: z.ZodEnum<{
2071
+ custom: "custom";
2072
+ openai: "openai";
2073
+ anthropic: "anthropic";
2074
+ gemini: "gemini";
2075
+ }>;
2076
+ model: z.ZodString;
2077
+ }, z.core.$strict>>;
2078
+ effort: z.ZodOptional<z.ZodEnum<{
2079
+ low: "low";
2080
+ medium: "medium";
2081
+ high: "high";
2082
+ none: "none";
2083
+ minimal: "minimal";
2084
+ xhigh: "xhigh";
2085
+ max: "max";
2086
+ }>>;
2087
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
2088
+ mode: z.ZodLiteral<"inherit">;
2089
+ }, z.core.$strict>, z.ZodObject<{
2090
+ mode: z.ZodLiteral<"replace">;
2091
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2092
+ }, z.core.$strict>, z.ZodObject<{
2093
+ mode: z.ZodLiteral<"append">;
2094
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2095
+ }, z.core.$strict>, z.ZodObject<{
2096
+ mode: z.ZodLiteral<"remove">;
2097
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2098
+ }, z.core.$strict>], "mode">>;
2099
+ depth: z.ZodOptional<z.ZodEnum<{
2100
+ low: "low";
2101
+ medium: "medium";
2102
+ high: "high";
2103
+ tournament: "tournament";
2104
+ autonomous: "autonomous";
2105
+ }>>;
2106
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
2107
+ }, z.core.$strict>>;
2108
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
2109
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
2110
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
2111
+ description: z.ZodString;
2112
+ }, z.core.$strict>>>;
2113
+ equipment_scope: z.ZodOptional<z.ZodObject<{
2114
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
2115
+ allow: z.ZodArray<z.ZodString>;
2116
+ }, z.core.$strict>]>>;
2117
+ enforcement: z.ZodDefault<z.ZodEnum<{
2118
+ trusted: "trusted";
2119
+ enforced: "enforced";
2120
+ }>>;
2121
+ }, z.core.$strict>>;
2122
+ route_from_report: z.ZodOptional<z.ZodObject<{
2123
+ path: z.ZodArray<z.ZodString>;
2124
+ }, z.core.$strict>>;
2125
+ budgets: z.ZodOptional<z.ZodObject<{
2126
+ max_attempts: z.ZodNumber;
2127
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
2128
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
2129
+ }, z.core.$strip>>;
2130
+ executor: z.ZodLiteral<"orchestrator">;
2131
+ kind: z.ZodLiteral<"sub-run">;
2132
+ flow_ref: z.ZodObject<{
2133
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
2134
+ entry_mode: z.ZodString;
2135
+ version: z.ZodOptional<z.ZodString>;
2136
+ }, z.core.$strict>;
2137
+ goal: z.ZodString;
2138
+ depth: z.ZodEnum<{
2139
+ low: "low";
2140
+ medium: "medium";
2141
+ high: "high";
2142
+ tournament: "tournament";
2143
+ autonomous: "autonomous";
2144
+ }>;
2145
+ writes: z.ZodObject<{
2146
+ result: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2147
+ report: z.ZodOptional<z.ZodObject<{
2148
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2149
+ schema: z.ZodString;
2150
+ }, z.core.$strip>>;
2151
+ }, z.core.$strict>;
2152
+ check: z.ZodObject<{
2153
+ kind: z.ZodLiteral<"result_verdict">;
2154
+ source: z.ZodDiscriminatedUnion<[z.ZodObject<{
2155
+ kind: z.ZodLiteral<"relay_result">;
2156
+ ref: z.ZodLiteral<"result">;
2157
+ }, z.core.$strict>, z.ZodObject<{
2158
+ kind: z.ZodLiteral<"sub_run_result">;
2159
+ ref: z.ZodLiteral<"result">;
2160
+ }, z.core.$strict>], "kind">;
2161
+ pass: z.ZodArray<z.ZodString>;
2162
+ }, z.core.$strict>;
2163
+ }, z.core.$strict>, z.ZodObject<{
2164
+ id: z.core.$ZodBranded<z.ZodString, "StepId", "out">;
2165
+ title: z.ZodString;
2166
+ protocol: z.core.$ZodBranded<z.ZodString, "ProtocolId", "out">;
2167
+ reads: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">>>;
2168
+ routes: z.ZodRecord<z.ZodString, z.ZodString>;
2169
+ selection: z.ZodOptional<z.ZodObject<{
2170
+ model: z.ZodOptional<z.ZodObject<{
2171
+ provider: z.ZodEnum<{
2172
+ custom: "custom";
2173
+ openai: "openai";
2174
+ anthropic: "anthropic";
2175
+ gemini: "gemini";
2176
+ }>;
2177
+ model: z.ZodString;
2178
+ }, z.core.$strict>>;
2179
+ effort: z.ZodOptional<z.ZodEnum<{
2180
+ low: "low";
2181
+ medium: "medium";
2182
+ high: "high";
2183
+ none: "none";
2184
+ minimal: "minimal";
2185
+ xhigh: "xhigh";
2186
+ max: "max";
2187
+ }>>;
2188
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
2189
+ mode: z.ZodLiteral<"inherit">;
2190
+ }, z.core.$strict>, z.ZodObject<{
2191
+ mode: z.ZodLiteral<"replace">;
2192
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2193
+ }, z.core.$strict>, z.ZodObject<{
2194
+ mode: z.ZodLiteral<"append">;
2195
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2196
+ }, z.core.$strict>, z.ZodObject<{
2197
+ mode: z.ZodLiteral<"remove">;
2198
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2199
+ }, z.core.$strict>], "mode">>;
2200
+ depth: z.ZodOptional<z.ZodEnum<{
2201
+ low: "low";
2202
+ medium: "medium";
2203
+ high: "high";
2204
+ tournament: "tournament";
2205
+ autonomous: "autonomous";
2206
+ }>>;
2207
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
2208
+ }, z.core.$strict>>;
2209
+ skill_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
2210
+ skill_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
2211
+ id: z.core.$ZodBranded<z.ZodString, "SkillSlotId", "out">;
2212
+ description: z.ZodString;
2213
+ }, z.core.$strict>>>;
2214
+ equipment_scope: z.ZodOptional<z.ZodObject<{
2215
+ tools: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"full">, z.ZodObject<{
2216
+ allow: z.ZodArray<z.ZodString>;
2217
+ }, z.core.$strict>]>>;
2218
+ enforcement: z.ZodDefault<z.ZodEnum<{
2219
+ trusted: "trusted";
2220
+ enforced: "enforced";
2221
+ }>>;
2222
+ }, z.core.$strict>>;
2223
+ route_from_report: z.ZodOptional<z.ZodObject<{
2224
+ path: z.ZodArray<z.ZodString>;
2225
+ }, z.core.$strict>>;
2226
+ budgets: z.ZodOptional<z.ZodObject<{
2227
+ max_attempts: z.ZodNumber;
2228
+ wall_clock_ms: z.ZodOptional<z.ZodNumber>;
2229
+ inactivity_ms: z.ZodOptional<z.ZodNumber>;
2230
+ }, z.core.$strip>>;
2231
+ executor: z.ZodLiteral<"orchestrator">;
2232
+ kind: z.ZodLiteral<"fanout">;
2233
+ branches: z.ZodDiscriminatedUnion<[z.ZodObject<{
2234
+ kind: z.ZodLiteral<"static">;
2235
+ branches: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2236
+ branch_id: z.ZodString;
2237
+ flow_ref: z.ZodObject<{
2238
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
2239
+ entry_mode: z.ZodString;
2240
+ version: z.ZodOptional<z.ZodString>;
2241
+ }, z.core.$strict>;
2242
+ goal: z.ZodString;
2243
+ depth: z.ZodEnum<{
2244
+ low: "low";
2245
+ medium: "medium";
2246
+ high: "high";
2247
+ tournament: "tournament";
2248
+ autonomous: "autonomous";
2249
+ }>;
2250
+ selection: z.ZodOptional<z.ZodObject<{
2251
+ model: z.ZodOptional<z.ZodObject<{
2252
+ provider: z.ZodEnum<{
2253
+ custom: "custom";
2254
+ openai: "openai";
2255
+ anthropic: "anthropic";
2256
+ gemini: "gemini";
2257
+ }>;
2258
+ model: z.ZodString;
2259
+ }, z.core.$strict>>;
2260
+ effort: z.ZodOptional<z.ZodEnum<{
2261
+ low: "low";
2262
+ medium: "medium";
2263
+ high: "high";
2264
+ none: "none";
2265
+ minimal: "minimal";
2266
+ xhigh: "xhigh";
2267
+ max: "max";
2268
+ }>>;
2269
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
2270
+ mode: z.ZodLiteral<"inherit">;
2271
+ }, z.core.$strict>, z.ZodObject<{
2272
+ mode: z.ZodLiteral<"replace">;
2273
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2274
+ }, z.core.$strict>, z.ZodObject<{
2275
+ mode: z.ZodLiteral<"append">;
2276
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2277
+ }, z.core.$strict>, z.ZodObject<{
2278
+ mode: z.ZodLiteral<"remove">;
2279
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2280
+ }, z.core.$strict>], "mode">>;
2281
+ depth: z.ZodOptional<z.ZodEnum<{
2282
+ low: "low";
2283
+ medium: "medium";
2284
+ high: "high";
2285
+ tournament: "tournament";
2286
+ autonomous: "autonomous";
2287
+ }>>;
2288
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
2289
+ }, z.core.$strict>>;
2290
+ }, z.core.$strict>, z.ZodObject<{
2291
+ branch_id: z.ZodString;
2292
+ execution: z.ZodObject<{
2293
+ kind: z.ZodLiteral<"relay">;
2294
+ role: z.ZodEnum<{
2295
+ researcher: "researcher";
2296
+ implementer: "implementer";
2297
+ reviewer: "reviewer";
2298
+ }>;
2299
+ goal: z.ZodString;
2300
+ report_schema: z.ZodString;
2301
+ provenance_field: z.ZodOptional<z.ZodString>;
2302
+ }, z.core.$strict>;
2303
+ connector: z.ZodOptional<z.ZodString>;
2304
+ selection: z.ZodOptional<z.ZodObject<{
2305
+ model: z.ZodOptional<z.ZodObject<{
2306
+ provider: z.ZodEnum<{
2307
+ custom: "custom";
2308
+ openai: "openai";
2309
+ anthropic: "anthropic";
2310
+ gemini: "gemini";
2311
+ }>;
2312
+ model: z.ZodString;
2313
+ }, z.core.$strict>>;
2314
+ effort: z.ZodOptional<z.ZodEnum<{
2315
+ low: "low";
2316
+ medium: "medium";
2317
+ high: "high";
2318
+ none: "none";
2319
+ minimal: "minimal";
2320
+ xhigh: "xhigh";
2321
+ max: "max";
2322
+ }>>;
2323
+ skills: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
2324
+ mode: z.ZodLiteral<"inherit">;
2325
+ }, z.core.$strict>, z.ZodObject<{
2326
+ mode: z.ZodLiteral<"replace">;
2327
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2328
+ }, z.core.$strict>, z.ZodObject<{
2329
+ mode: z.ZodLiteral<"append">;
2330
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2331
+ }, z.core.$strict>, z.ZodObject<{
2332
+ mode: z.ZodLiteral<"remove">;
2333
+ skills: z.ZodArray<z.core.$ZodBranded<z.ZodString, "SkillId", "out">>;
2334
+ }, z.core.$strict>], "mode">>;
2335
+ depth: z.ZodOptional<z.ZodEnum<{
2336
+ low: "low";
2337
+ medium: "medium";
2338
+ high: "high";
2339
+ tournament: "tournament";
2340
+ autonomous: "autonomous";
2341
+ }>>;
2342
+ invocation_options: z.ZodDefault<z.ZodType<JsonObject, unknown, z.core.$ZodTypeInternals<JsonObject, unknown>>>;
2343
+ }, z.core.$strict>>;
2344
+ }, z.core.$strict>]>>;
2345
+ }, z.core.$strict>, z.ZodObject<{
2346
+ kind: z.ZodLiteral<"dynamic">;
2347
+ source_report: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2348
+ items_path: z.ZodString;
2349
+ template: z.ZodUnion<readonly [z.ZodObject<{
2350
+ branch_id: z.ZodString;
2351
+ flow_ref: z.ZodObject<{
2352
+ flow_id: z.core.$ZodBranded<z.ZodString, "CompiledFlowId", "out">;
2353
+ entry_mode: z.ZodString;
2354
+ version: z.ZodOptional<z.ZodString>;
2355
+ }, z.core.$strict>;
2356
+ goal: z.ZodString;
2357
+ depth: z.ZodEnum<{
2358
+ low: "low";
2359
+ medium: "medium";
2360
+ high: "high";
2361
+ tournament: "tournament";
2362
+ autonomous: "autonomous";
2363
+ }>;
2364
+ selection: z.ZodOptional<z.ZodUnknown>;
2365
+ }, z.core.$strict>, z.ZodObject<{
2366
+ branch_id: z.ZodString;
2367
+ execution: z.ZodObject<{
2368
+ kind: z.ZodLiteral<"relay">;
2369
+ role: z.ZodEnum<{
2370
+ researcher: "researcher";
2371
+ implementer: "implementer";
2372
+ reviewer: "reviewer";
2373
+ }>;
2374
+ goal: z.ZodString;
2375
+ report_schema: z.ZodString;
2376
+ provenance_field: z.ZodOptional<z.ZodString>;
2377
+ }, z.core.$strict>;
2378
+ connector: z.ZodOptional<z.ZodString>;
2379
+ selection: z.ZodOptional<z.ZodUnknown>;
2380
+ }, z.core.$strict>]>;
2381
+ max_branches: z.ZodDefault<z.ZodUnion<readonly [z.ZodNumber, z.ZodDiscriminatedUnion<[z.ZodObject<{
2382
+ kind: z.ZodLiteral<"constant">;
2383
+ value: z.ZodNumber;
2384
+ }, z.core.$strict>, z.ZodObject<{
2385
+ kind: z.ZodLiteral<"axis">;
2386
+ axis: z.ZodLiteral<"tournament_n">;
2387
+ }, z.core.$strict>], "kind">]>>;
2388
+ required_count: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2389
+ kind: z.ZodLiteral<"constant">;
2390
+ value: z.ZodNumber;
2391
+ }, z.core.$strict>, z.ZodObject<{
2392
+ kind: z.ZodLiteral<"axis">;
2393
+ axis: z.ZodLiteral<"tournament_n">;
2394
+ }, z.core.$strict>], "kind">>;
2395
+ }, z.core.$strict>], "kind">;
2396
+ concurrency: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
2397
+ kind: z.ZodLiteral<"unbounded">;
2398
+ }, z.core.$strict>, z.ZodObject<{
2399
+ kind: z.ZodLiteral<"bounded">;
2400
+ max: z.ZodNumber;
2401
+ }, z.core.$strict>], "kind">>;
2402
+ on_child_failure: z.ZodDefault<z.ZodEnum<{
2403
+ "abort-all": "abort-all";
2404
+ "continue-others": "continue-others";
2405
+ }>>;
2406
+ rubric: z.ZodOptional<z.ZodObject<{
2407
+ model_judgments_path: z.ZodString;
2408
+ ordered_dims: z.ZodArray<z.ZodString>;
2409
+ runtime_signals: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
2410
+ kind: z.ZodLiteral<"constant">;
2411
+ signal: z.ZodEnum<{
2412
+ met: "met";
2413
+ missing: "missing";
2414
+ "n/a": "n/a";
2415
+ }>;
2416
+ }, z.core.$strict>, z.ZodObject<{
2417
+ kind: z.ZodLiteral<"non_empty_array">;
2418
+ path: z.ZodString;
2419
+ }, z.core.$strict>, z.ZodObject<{
2420
+ kind: z.ZodLiteral<"non_empty_string">;
2421
+ path: z.ZodString;
2422
+ }, z.core.$strict>], "kind">>;
2423
+ }, z.core.$strict>>;
2424
+ writes: z.ZodObject<{
2425
+ branches_dir: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2426
+ aggregate: z.ZodObject<{
2427
+ path: z.core.$ZodBranded<z.ZodString, "RunRelativePath", "out">;
2428
+ schema: z.ZodString;
2429
+ }, z.core.$strip>;
2430
+ }, z.core.$strict>;
2431
+ check: z.ZodObject<{
2432
+ kind: z.ZodLiteral<"fanout_aggregate">;
2433
+ source: z.ZodObject<{
2434
+ kind: z.ZodLiteral<"fanout_results">;
2435
+ ref: z.ZodLiteral<"aggregate">;
2436
+ }, z.core.$strict>;
2437
+ join: z.ZodDiscriminatedUnion<[z.ZodObject<{
2438
+ policy: z.ZodLiteral<"pick-winner">;
2439
+ }, z.core.$strict>, z.ZodObject<{
2440
+ policy: z.ZodLiteral<"disjoint-merge">;
2441
+ }, z.core.$strict>, z.ZodObject<{
2442
+ policy: z.ZodLiteral<"aggregate-only">;
2443
+ }, z.core.$strict>, z.ZodObject<{
2444
+ policy: z.ZodLiteral<"aggregate-survivors">;
2445
+ }, z.core.$strict>], "policy">;
2446
+ verdicts: z.ZodObject<{
2447
+ admit: z.ZodArray<z.ZodString>;
2448
+ }, z.core.$strict>;
2449
+ }, z.core.$strict>;
2450
+ }, z.core.$strict>], "kind">;
2451
+ export type Step = z.infer<typeof Step>;
2452
+ export declare const RouteMap: z.ZodRecord<z.ZodString, z.ZodString>;
2453
+ export type RouteMap = z.infer<typeof RouteMap>;
2454
+ export {};
2455
+ //# sourceMappingURL=step.d.ts.map