@interf/compiler 0.13.0 → 0.16.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 (292) hide show
  1. package/README.md +40 -0
  2. package/agent-skills/interf-actions/SKILL.md +51 -5
  3. package/agent-skills/interf-actions/references/cli.md +82 -82
  4. package/dist/cli/commands/agents.d.ts +2 -0
  5. package/dist/cli/commands/agents.js +213 -0
  6. package/dist/cli/commands/compile.js +10 -1
  7. package/dist/cli/commands/doctor.js +1 -1
  8. package/dist/cli/commands/login.js +1 -1
  9. package/dist/cli/commands/logout.js +1 -1
  10. package/dist/cli/commands/mcp.d.ts +42 -0
  11. package/dist/cli/commands/mcp.js +239 -0
  12. package/dist/cli/commands/method.js +1 -1
  13. package/dist/cli/commands/prep.js +23 -5
  14. package/dist/cli/commands/reset.js +1 -1
  15. package/dist/cli/commands/runs.js +1 -1
  16. package/dist/cli/commands/status.js +1 -1
  17. package/dist/cli/commands/verify.d.ts +8 -0
  18. package/dist/cli/commands/{test.js → verify.js} +24 -18
  19. package/dist/cli/commands/web.js +71 -18
  20. package/dist/cli/commands/wizard.js +373 -126
  21. package/dist/cli/index.d.ts +4 -2
  22. package/dist/cli/index.js +7 -3
  23. package/dist/compiler-ui/404.html +1 -1
  24. package/dist/compiler-ui/__next.__PAGE__.txt +2 -2
  25. package/dist/compiler-ui/__next._full.txt +3 -3
  26. package/dist/compiler-ui/__next._head.txt +1 -1
  27. package/dist/compiler-ui/__next._index.txt +2 -2
  28. package/dist/compiler-ui/__next._tree.txt +2 -2
  29. package/dist/compiler-ui/_next/static/chunks/{17t-lulmyawg5.js → 0jipmpez3_ehh.js} +16 -16
  30. package/dist/compiler-ui/_next/static/chunks/{045gole2ojo3g.css → 13awzu4tooflw.css} +1 -1
  31. package/dist/compiler-ui/_not-found/__next._full.txt +2 -2
  32. package/dist/compiler-ui/_not-found/__next._head.txt +1 -1
  33. package/dist/compiler-ui/_not-found/__next._index.txt +2 -2
  34. package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
  35. package/dist/compiler-ui/_not-found/__next._not-found.txt +1 -1
  36. package/dist/compiler-ui/_not-found/__next._tree.txt +2 -2
  37. package/dist/compiler-ui/_not-found.html +1 -1
  38. package/dist/compiler-ui/_not-found.txt +2 -2
  39. package/dist/compiler-ui/index.html +1 -1
  40. package/dist/compiler-ui/index.txt +3 -3
  41. package/dist/index.d.ts +2 -2
  42. package/dist/index.js +2 -2
  43. package/dist/packages/contracts/index.d.ts +2 -1
  44. package/dist/packages/contracts/index.js +1 -0
  45. package/dist/packages/contracts/lib/schema.d.ts +102 -8
  46. package/dist/packages/contracts/lib/schema.js +102 -2
  47. package/dist/packages/{local-service → engine}/action-definitions.js +8 -1
  48. package/dist/packages/{local-service → engine}/action-planner.d.ts +1 -1
  49. package/dist/packages/{local-service → engine}/action-planner.js +1 -1
  50. package/dist/packages/{agents → engine/agents}/index.d.ts +3 -0
  51. package/dist/packages/{agents → engine/agents}/index.js +3 -0
  52. package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.js +2 -2
  53. package/dist/packages/engine/agents/lib/detection.d.ts +13 -0
  54. package/dist/packages/{agents → engine/agents}/lib/detection.js +11 -0
  55. package/dist/packages/{agents → engine/agents}/lib/executors.d.ts +2 -2
  56. package/dist/packages/{agents → engine/agents}/lib/shells.d.ts +4 -4
  57. package/dist/packages/{agents → engine/agents}/lib/shells.js +8 -8
  58. package/dist/packages/{agents → engine/agents}/lib/user-config.js +2 -2
  59. package/dist/packages/engine/agents/registry.d.ts +91 -0
  60. package/dist/packages/engine/agents/registry.js +321 -0
  61. package/dist/packages/engine/agents/role-executors.d.ts +35 -0
  62. package/dist/packages/engine/agents/role-executors.js +88 -0
  63. package/dist/packages/engine/agents/role-router.d.ts +66 -0
  64. package/dist/packages/engine/agents/role-router.js +73 -0
  65. package/dist/packages/{local-service → engine}/client.d.ts +9 -9
  66. package/dist/packages/{local-service → engine}/client.js +11 -11
  67. package/dist/packages/{compiler → engine/compile}/artifact-counts.js +1 -1
  68. package/dist/packages/{compiler → engine/compile}/compiled-pipeline.d.ts +12 -1
  69. package/dist/packages/{compiler → engine/compile}/compiled-pipeline.js +16 -6
  70. package/dist/packages/{compiler → engine/compile}/compiled-schema.d.ts +2 -2
  71. package/dist/packages/{compiler → engine/compile}/compiled-schema.js +4 -4
  72. package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.d.ts +1 -1
  73. package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.js +4 -4
  74. package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.d.ts +1 -1
  75. package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.js +3 -3
  76. package/dist/packages/{compiler → engine/compile}/compiled-target.d.ts +2 -2
  77. package/dist/packages/{compiler → engine/compile}/compiled-target.js +2 -2
  78. package/dist/packages/{compiler → engine/compile}/discovery.js +1 -1
  79. package/dist/packages/{compiler → engine/compile}/lib/schema.d.ts +4 -4
  80. package/dist/packages/{compiler → engine/compile}/lib/schema.js +2 -2
  81. package/dist/packages/{compiler → engine/compile}/method-runs.d.ts +3 -3
  82. package/dist/packages/{compiler → engine/compile}/method-runs.js +3 -3
  83. package/dist/packages/{compiler → engine/compile}/runtime-acceptance.js +17 -14
  84. package/dist/packages/{compiler → engine/compile}/runtime-reconcile.d.ts +1 -1
  85. package/dist/packages/{compiler → engine/compile}/runtime-reconcile.js +12 -10
  86. package/dist/packages/{compiler → engine/compile}/runtime-runs.d.ts +1 -2
  87. package/dist/packages/{compiler → engine/compile}/runtime-runs.js +3 -43
  88. package/dist/packages/{compiler → engine/compile}/runtime-types.d.ts +1 -5
  89. package/dist/packages/{compiler → engine/compile}/runtime.d.ts +2 -2
  90. package/dist/packages/{compiler → engine/compile}/runtime.js +1 -1
  91. package/dist/packages/{compiler → engine/compile}/source-files.d.ts +1 -1
  92. package/dist/packages/{compiler → engine/compile}/source-files.js +3 -3
  93. package/dist/packages/{compiler → engine/compile}/state-health.js +2 -2
  94. package/dist/packages/{compiler → engine/compile}/state-io.js +2 -2
  95. package/dist/packages/{compiler → engine/compile}/state-view.js +2 -2
  96. package/dist/packages/{compiler → engine/compile}/validate-compiled.js +2 -2
  97. package/dist/packages/{compiler → engine/compile}/validate.d.ts +1 -1
  98. package/dist/packages/{compiler → engine/compile}/validate.js +3 -3
  99. package/dist/packages/{execution → engine/execution}/lib/schema.d.ts +2 -22
  100. package/dist/packages/{execution → engine/execution}/lib/schema.js +2 -2
  101. package/dist/packages/{local-service → engine}/index.d.ts +4 -4
  102. package/dist/packages/{local-service → engine}/index.js +2 -2
  103. package/dist/packages/{local-service → engine}/lib/schema.d.ts +85 -209
  104. package/dist/packages/{local-service → engine}/lib/schema.js +58 -54
  105. package/dist/packages/{local-service → engine}/native-run-handlers.d.ts +7 -5
  106. package/dist/packages/{local-service → engine}/native-run-handlers.js +69 -25
  107. package/dist/packages/{local-service → engine}/preparation-store.d.ts +16 -4
  108. package/dist/packages/{local-service → engine}/preparation-store.js +48 -25
  109. package/dist/packages/{local-service → engine}/readiness-check-draft.d.ts +2 -2
  110. package/dist/packages/{local-service → engine}/routes.d.ts +30 -1
  111. package/dist/packages/{local-service → engine}/routes.js +32 -1
  112. package/dist/packages/{local-service → engine}/run-observability.d.ts +3 -3
  113. package/dist/packages/{local-service → engine}/run-observability.js +14 -13
  114. package/dist/packages/{local-service → engine}/runtime-event-applier.d.ts +1 -1
  115. package/dist/packages/{local-service → engine}/runtime-persistence.d.ts +6 -6
  116. package/dist/packages/{local-service → engine}/runtime-persistence.js +9 -9
  117. package/dist/packages/{local-service → engine}/runtime-proposal-helpers.d.ts +1 -1
  118. package/dist/packages/{local-service → engine}/runtime-proposal-helpers.js +5 -5
  119. package/dist/packages/{local-service → engine}/runtime-resource-builders.d.ts +6 -6
  120. package/dist/packages/{local-service → engine}/runtime-resource-builders.js +1 -1
  121. package/dist/packages/{local-service → engine}/runtime.d.ts +80 -49
  122. package/dist/packages/{local-service → engine}/runtime.js +177 -179
  123. package/dist/packages/{local-service → engine}/server.js +276 -14
  124. package/dist/packages/{testing → engine/verify}/lib/schema.d.ts +1 -1
  125. package/dist/packages/{testing → engine/verify}/lib/schema.js +1 -1
  126. package/dist/packages/{testing → engine/verify}/readiness-check-run.d.ts +6 -13
  127. package/dist/packages/{testing → engine/verify}/readiness-check-run.js +25 -81
  128. package/dist/packages/{testing → engine/verify}/test-paths.js +2 -2
  129. package/dist/packages/{testing → engine/verify}/test-sandbox.js +6 -6
  130. package/dist/packages/{testing → engine/verify}/test-specs.js +1 -1
  131. package/dist/packages/{testing → engine/verify}/test-targets.js +3 -3
  132. package/dist/packages/{method-authoring → methods/authoring}/method-authoring.d.ts +11 -3
  133. package/dist/packages/{method-authoring → methods/authoring}/method-authoring.js +68 -5
  134. package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.d.ts +2 -2
  135. package/dist/packages/{method-authoring → methods/authoring}/method-improvement.d.ts +4 -4
  136. package/dist/packages/{method-authoring → methods/authoring}/method-improvement.js +15 -9
  137. package/dist/packages/{method-package → methods/package}/builtin-compiled-method.d.ts +1 -1
  138. package/dist/packages/{method-package → methods/package}/builtin-compiled-method.js +2 -2
  139. package/dist/packages/{method-package → methods/package}/context-interface.d.ts +1 -1
  140. package/dist/packages/{method-package → methods/package}/context-interface.js +3 -3
  141. package/dist/packages/{method-package → methods/package}/interf-method-package.js +3 -2
  142. package/dist/packages/{method-package → methods/package}/lib/package-root.js +2 -2
  143. package/dist/packages/{method-package → methods/package}/local-methods.d.ts +8 -2
  144. package/dist/packages/{method-package → methods/package}/local-methods.js +8 -7
  145. package/dist/packages/{method-package → methods/package}/method-definitions.d.ts +8 -2
  146. package/dist/packages/{method-package → methods/package}/method-definitions.js +5 -4
  147. package/dist/packages/{method-package → methods/package}/method-helpers.d.ts +1 -1
  148. package/dist/packages/{method-package → methods/package}/method-helpers.js +4 -4
  149. package/dist/packages/{method-package → methods/package}/method-review-paths.d.ts +1 -1
  150. package/dist/packages/{method-package → methods/package}/method-review-paths.js +1 -1
  151. package/dist/packages/{method-package → methods/package}/method-stage-runner.d.ts +4 -9
  152. package/dist/packages/{method-package → methods/package}/method-stage-runner.js +1 -29
  153. package/dist/packages/{method-package → methods/package}/user-methods.js +2 -2
  154. package/dist/packages/{project-model → project}/interf-bootstrap.d.ts +1 -1
  155. package/dist/packages/{project-model → project}/interf-bootstrap.js +1 -1
  156. package/dist/packages/{project-model → project}/interf-detect.js +4 -4
  157. package/dist/packages/{project-model → project}/interf-scaffold.js +7 -7
  158. package/dist/packages/{project-model → project}/lib/schema.d.ts +2 -2
  159. package/dist/packages/{project-model → project}/lib/schema.js +1 -1
  160. package/dist/packages/{project-model → project}/source-config.d.ts +1 -1
  161. package/dist/packages/{project-model → project}/source-config.js +7 -7
  162. package/dist/packages/{project-model → project}/source-folders.js +2 -2
  163. package/package.json +6 -5
  164. package/dist/cli/commands/test.d.ts +0 -9
  165. package/dist/packages/agents/lib/detection.d.ts +0 -7
  166. /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → a3UiUF0DiMEbfWy_0gihg}/_buildManifest.js +0 -0
  167. /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → a3UiUF0DiMEbfWy_0gihg}/_clientMiddlewareManifest.js +0 -0
  168. /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → a3UiUF0DiMEbfWy_0gihg}/_ssgManifest.js +0 -0
  169. /package/dist/packages/{shared → contracts/utils}/file-types.d.ts +0 -0
  170. /package/dist/packages/{shared → contracts/utils}/file-types.js +0 -0
  171. /package/dist/packages/{shared → contracts/utils}/filesystem.d.ts +0 -0
  172. /package/dist/packages/{shared → contracts/utils}/filesystem.js +0 -0
  173. /package/dist/packages/{shared → contracts/utils}/logger.d.ts +0 -0
  174. /package/dist/packages/{shared → contracts/utils}/logger.js +0 -0
  175. /package/dist/packages/{shared → contracts/utils}/naming.d.ts +0 -0
  176. /package/dist/packages/{shared → contracts/utils}/naming.js +0 -0
  177. /package/dist/packages/{shared → contracts/utils}/parse.d.ts +0 -0
  178. /package/dist/packages/{shared → contracts/utils}/parse.js +0 -0
  179. /package/dist/packages/{shared → contracts/utils}/path-guards.d.ts +0 -0
  180. /package/dist/packages/{shared → contracts/utils}/path-guards.js +0 -0
  181. /package/dist/packages/{local-service → engine}/action-definitions.d.ts +0 -0
  182. /package/dist/packages/{local-service → engine}/action-values.d.ts +0 -0
  183. /package/dist/packages/{local-service → engine}/action-values.js +0 -0
  184. /package/dist/packages/{agents → engine/agents}/lib/agents.d.ts +0 -0
  185. /package/dist/packages/{agents → engine/agents}/lib/agents.js +0 -0
  186. /package/dist/packages/{agents → engine/agents}/lib/args.d.ts +0 -0
  187. /package/dist/packages/{agents → engine/agents}/lib/args.js +0 -0
  188. /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.d.ts +0 -0
  189. /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.js +0 -0
  190. /package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.d.ts +0 -0
  191. /package/dist/packages/{agents → engine/agents}/lib/constants.d.ts +0 -0
  192. /package/dist/packages/{agents → engine/agents}/lib/constants.js +0 -0
  193. /package/dist/packages/{agents → engine/agents}/lib/execution-profile.d.ts +0 -0
  194. /package/dist/packages/{agents → engine/agents}/lib/execution-profile.js +0 -0
  195. /package/dist/packages/{agents → engine/agents}/lib/execution.d.ts +0 -0
  196. /package/dist/packages/{agents → engine/agents}/lib/execution.js +0 -0
  197. /package/dist/packages/{agents → engine/agents}/lib/executors.js +0 -0
  198. /package/dist/packages/{agents → engine/agents}/lib/logs.d.ts +0 -0
  199. /package/dist/packages/{agents → engine/agents}/lib/logs.js +0 -0
  200. /package/dist/packages/{agents → engine/agents}/lib/preflight.d.ts +0 -0
  201. /package/dist/packages/{agents → engine/agents}/lib/preflight.js +0 -0
  202. /package/dist/packages/{agents → engine/agents}/lib/render.d.ts +0 -0
  203. /package/dist/packages/{agents → engine/agents}/lib/render.js +0 -0
  204. /package/dist/packages/{agents → engine/agents}/lib/schema.d.ts +0 -0
  205. /package/dist/packages/{agents → engine/agents}/lib/schema.js +0 -0
  206. /package/dist/packages/{agents → engine/agents}/lib/status.d.ts +0 -0
  207. /package/dist/packages/{agents → engine/agents}/lib/status.js +0 -0
  208. /package/dist/packages/{agents → engine/agents}/lib/types.d.ts +0 -0
  209. /package/dist/packages/{agents → engine/agents}/lib/types.js +0 -0
  210. /package/dist/packages/{agents → engine/agents}/lib/user-config.d.ts +0 -0
  211. /package/dist/packages/{compiler → engine/compile}/artifact-counts.d.ts +0 -0
  212. /package/dist/packages/{compiler → engine/compile}/compiled-compile.d.ts +0 -0
  213. /package/dist/packages/{compiler → engine/compile}/compiled-compile.js +0 -0
  214. /package/dist/packages/{compiler → engine/compile}/compiled-paths.d.ts +0 -0
  215. /package/dist/packages/{compiler → engine/compile}/compiled-paths.js +0 -0
  216. /package/dist/packages/{compiler → engine/compile}/discovery.d.ts +0 -0
  217. /package/dist/packages/{compiler → engine/compile}/index.d.ts +0 -0
  218. /package/dist/packages/{compiler → engine/compile}/index.js +0 -0
  219. /package/dist/packages/{compiler → engine/compile}/method-primitives.d.ts +0 -0
  220. /package/dist/packages/{compiler → engine/compile}/method-primitives.js +0 -0
  221. /package/dist/packages/{compiler → engine/compile}/reset.d.ts +0 -0
  222. /package/dist/packages/{compiler → engine/compile}/reset.js +0 -0
  223. /package/dist/packages/{compiler → engine/compile}/runtime-acceptance.d.ts +0 -0
  224. /package/dist/packages/{compiler → engine/compile}/runtime-contracts.d.ts +0 -0
  225. /package/dist/packages/{compiler → engine/compile}/runtime-contracts.js +0 -0
  226. /package/dist/packages/{compiler → engine/compile}/runtime-inventory.d.ts +0 -0
  227. /package/dist/packages/{compiler → engine/compile}/runtime-inventory.js +0 -0
  228. /package/dist/packages/{compiler → engine/compile}/runtime-paths.d.ts +0 -0
  229. /package/dist/packages/{compiler → engine/compile}/runtime-paths.js +0 -0
  230. /package/dist/packages/{compiler → engine/compile}/runtime-prompt.d.ts +0 -0
  231. /package/dist/packages/{compiler → engine/compile}/runtime-prompt.js +0 -0
  232. /package/dist/packages/{compiler → engine/compile}/runtime-types.js +0 -0
  233. /package/dist/packages/{compiler → engine/compile}/state-artifacts.d.ts +0 -0
  234. /package/dist/packages/{compiler → engine/compile}/state-artifacts.js +0 -0
  235. /package/dist/packages/{compiler → engine/compile}/state-health.d.ts +0 -0
  236. /package/dist/packages/{compiler → engine/compile}/state-io.d.ts +0 -0
  237. /package/dist/packages/{compiler → engine/compile}/state-paths.d.ts +0 -0
  238. /package/dist/packages/{compiler → engine/compile}/state-paths.js +0 -0
  239. /package/dist/packages/{compiler → engine/compile}/state-view.d.ts +0 -0
  240. /package/dist/packages/{compiler → engine/compile}/state.d.ts +0 -0
  241. /package/dist/packages/{compiler → engine/compile}/state.js +0 -0
  242. /package/dist/packages/{compiler → engine/compile}/validate-compiled.d.ts +0 -0
  243. /package/dist/packages/{compiler → engine/compile}/validate-helpers.d.ts +0 -0
  244. /package/dist/packages/{compiler → engine/compile}/validate-helpers.js +0 -0
  245. /package/dist/packages/{local-service → engine}/connection-config.d.ts +0 -0
  246. /package/dist/packages/{local-service → engine}/connection-config.js +0 -0
  247. /package/dist/packages/{execution → engine/execution}/adapters.d.ts +0 -0
  248. /package/dist/packages/{execution → engine/execution}/adapters.js +0 -0
  249. /package/dist/packages/{execution → engine/execution}/events.d.ts +0 -0
  250. /package/dist/packages/{execution → engine/execution}/events.js +0 -0
  251. /package/dist/packages/{execution → engine/execution}/index.d.ts +0 -0
  252. /package/dist/packages/{execution → engine/execution}/index.js +0 -0
  253. /package/dist/packages/{local-service → engine}/instance-paths.d.ts +0 -0
  254. /package/dist/packages/{local-service → engine}/instance-paths.js +0 -0
  255. /package/dist/packages/{local-service → engine}/readiness-check-draft.js +0 -0
  256. /package/dist/packages/{local-service → engine}/runtime-caches.d.ts +0 -0
  257. /package/dist/packages/{local-service → engine}/runtime-caches.js +0 -0
  258. /package/dist/packages/{local-service → engine}/runtime-event-applier.js +0 -0
  259. /package/dist/packages/{local-service → engine}/server.d.ts +0 -0
  260. /package/dist/packages/{local-service → engine}/service-registry.d.ts +0 -0
  261. /package/dist/packages/{local-service → engine}/service-registry.js +0 -0
  262. /package/dist/packages/{testing → engine/verify}/index.d.ts +0 -0
  263. /package/dist/packages/{testing → engine/verify}/index.js +0 -0
  264. /package/dist/packages/{testing → engine/verify}/test-execution.d.ts +0 -0
  265. /package/dist/packages/{testing → engine/verify}/test-execution.js +0 -0
  266. /package/dist/packages/{testing → engine/verify}/test-paths.d.ts +0 -0
  267. /package/dist/packages/{testing → engine/verify}/test-profile-presets.d.ts +0 -0
  268. /package/dist/packages/{testing → engine/verify}/test-profile-presets.js +0 -0
  269. /package/dist/packages/{testing → engine/verify}/test-sandbox.d.ts +0 -0
  270. /package/dist/packages/{testing → engine/verify}/test-specs.d.ts +0 -0
  271. /package/dist/packages/{testing → engine/verify}/test-targets.d.ts +0 -0
  272. /package/dist/packages/{testing → engine/verify}/test-types.d.ts +0 -0
  273. /package/dist/packages/{testing → engine/verify}/test-types.js +0 -0
  274. /package/dist/packages/{testing → engine/verify}/test.d.ts +0 -0
  275. /package/dist/packages/{testing → engine/verify}/test.js +0 -0
  276. /package/dist/packages/{method-authoring → methods/authoring}/index.d.ts +0 -0
  277. /package/dist/packages/{method-authoring → methods/authoring}/index.js +0 -0
  278. /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.d.ts +0 -0
  279. /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.js +0 -0
  280. /package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.js +0 -0
  281. /package/dist/packages/{method-package → methods/package}/interf-method-package.d.ts +0 -0
  282. /package/dist/packages/{method-package → methods/package}/lib/package-root.d.ts +0 -0
  283. /package/dist/packages/{method-package → methods/package}/user-methods.d.ts +0 -0
  284. /package/dist/packages/{project-model → project}/index.d.ts +0 -0
  285. /package/dist/packages/{project-model → project}/index.js +0 -0
  286. /package/dist/packages/{project-model → project}/interf-detect.d.ts +0 -0
  287. /package/dist/packages/{project-model → project}/interf-scaffold.d.ts +0 -0
  288. /package/dist/packages/{project-model → project}/interf.d.ts +0 -0
  289. /package/dist/packages/{project-model → project}/interf.js +0 -0
  290. /package/dist/packages/{project-model → project}/preparation-entries.d.ts +0 -0
  291. /package/dist/packages/{project-model → project}/preparation-entries.js +0 -0
  292. /package/dist/packages/{project-model → project}/source-folders.d.ts +0 -0
@@ -6,11 +6,17 @@ export declare const SourceBindingSchema: z.ZodObject<{
6
6
  }>;
7
7
  locator: z.ZodString;
8
8
  }, z.core.$strict>;
9
- /** Discriminated locator for an artifact returned by the API. */
9
+ /**
10
+ * Discriminated locator for an artifact returned by the API. Aliases the
11
+ * canonical `LocatorSchema` from contracts so all three kinds —
12
+ * `local-path`, `remote-url`, `api-served` — flow through the same
13
+ * resource-access pattern.
14
+ */
10
15
  export declare const ArtifactLocatorSchema: z.ZodObject<{
11
16
  kind: z.ZodEnum<{
12
17
  "local-path": "local-path";
13
18
  "remote-url": "remote-url";
19
+ "api-served": "api-served";
14
20
  }>;
15
21
  value: z.ZodString;
16
22
  }, z.core.$strict>;
@@ -27,6 +33,10 @@ export declare const InstanceResourceSchema: z.ZodObject<{
27
33
  active_run_count: z.ZodNumber;
28
34
  idle_for_seconds: z.ZodNumber;
29
35
  auth_required: z.ZodBoolean;
36
+ connection_kind: z.ZodOptional<z.ZodEnum<{
37
+ local: "local";
38
+ remote: "remote";
39
+ }>>;
30
40
  }, z.core.$strict>;
31
41
  /** Body of `POST /v1/preparations` — the 0.13 preparation create request. */
32
42
  export declare const PreparationCreateRequestSchema: z.ZodObject<{
@@ -37,7 +47,7 @@ export declare const PreparationCreateRequestSchema: z.ZodObject<{
37
47
  }>;
38
48
  locator: z.ZodString;
39
49
  }, z.core.$strict>;
40
- method_id: z.ZodString;
50
+ method_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
51
  about: z.ZodOptional<z.ZodString>;
42
52
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
43
53
  id: z.ZodOptional<z.ZodString>;
@@ -55,6 +65,11 @@ export declare const PreparationCreateRequestSchema: z.ZodObject<{
55
65
  max_attempts: z.ZodOptional<z.ZodNumber>;
56
66
  max_loops: z.ZodOptional<z.ZodNumber>;
57
67
  }, z.core.$strict>;
68
+ /** Body of `PATCH /v1/preparations/<id>` — update mutable preparation fields. */
69
+ export declare const PreparationUpdateRequestSchema: z.ZodObject<{
70
+ method_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
71
+ about: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72
+ }, z.core.$strict>;
58
73
  /** Body of `POST /v1/methods` — install a Method package by path. */
59
74
  export declare const MethodInstallRequestSchema: z.ZodObject<{
60
75
  source_path: z.ZodString;
@@ -73,6 +88,7 @@ export type SourceBinding = z.infer<typeof SourceBindingSchema>;
73
88
  export type ArtifactLocator = z.infer<typeof ArtifactLocatorSchema>;
74
89
  export type InstanceResource = z.infer<typeof InstanceResourceSchema>;
75
90
  export type PreparationCreateRequest = z.infer<typeof PreparationCreateRequestSchema>;
91
+ export type PreparationUpdateRequest = z.infer<typeof PreparationUpdateRequestSchema>;
76
92
  export type MethodInstallRequest = z.infer<typeof MethodInstallRequestSchema>;
77
93
  export type MethodInstallResult = z.infer<typeof MethodInstallResultSchema>;
78
94
  export type PreparationDeleteResponse = z.infer<typeof PreparationDeleteResponseSchema>;
@@ -129,41 +145,6 @@ export declare const ServiceRegistrySchema: z.ZodObject<{
129
145
  }, z.core.$strict>>>;
130
146
  }, z.core.$strict>>>;
131
147
  }, z.core.$strict>;
132
- export declare const WorkspaceRegistrationRequestSchema: z.ZodObject<{
133
- control_path: z.ZodString;
134
- }, z.core.$strict>;
135
- export declare const WorkspaceRegistrationResponseSchema: z.ZodObject<{
136
- workspace: z.ZodObject<{
137
- control_path: z.ZodString;
138
- registered_at: z.ZodString;
139
- last_activity: z.ZodString;
140
- }, z.core.$strict>;
141
- service: z.ZodObject<{
142
- pid: z.ZodNumber;
143
- host: z.ZodString;
144
- port: z.ZodNumber;
145
- url: z.ZodString;
146
- started_at: z.ZodString;
147
- auth_token: z.ZodOptional<z.ZodString>;
148
- workspaces: z.ZodDefault<z.ZodArray<z.ZodObject<{
149
- control_path: z.ZodString;
150
- registered_at: z.ZodString;
151
- last_activity: z.ZodString;
152
- }, z.core.$strict>>>;
153
- }, z.core.$strict>;
154
- }, z.core.$strict>;
155
- export declare const WorkspaceListResponseSchema: z.ZodObject<{
156
- workspaces: z.ZodArray<z.ZodObject<{
157
- control_path: z.ZodString;
158
- registered_at: z.ZodString;
159
- last_activity: z.ZodString;
160
- }, z.core.$strict>>;
161
- }, z.core.$strict>;
162
- export declare const WorkspaceDeregisterResponseSchema: z.ZodObject<{
163
- deregistered: z.ZodBoolean;
164
- control_path: z.ZodString;
165
- remaining_workspaces: z.ZodNumber;
166
- }, z.core.$strict>;
167
148
  export declare const LocalServiceHealthSchema: z.ZodObject<{
168
149
  kind: z.ZodLiteral<"interf-local-service-health">;
169
150
  version: z.ZodLiteral<1>;
@@ -287,8 +268,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
287
268
  "preparation-config": "preparation-config";
288
269
  "compile-run": "compile-run";
289
270
  "readiness-checks": "readiness-checks";
290
- "source-baseline": "source-baseline";
291
- "portable-context-check": "portable-context-check";
292
271
  "checks-current": "checks-current";
293
272
  }>;
294
273
  ok: z.ZodBoolean;
@@ -336,8 +315,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
336
315
  "preparation-config": "preparation-config";
337
316
  "compile-run": "compile-run";
338
317
  "readiness-checks": "readiness-checks";
339
- "source-baseline": "source-baseline";
340
- "portable-context-check": "portable-context-check";
341
318
  "checks-current": "checks-current";
342
319
  }>;
343
320
  ok: z.ZodBoolean;
@@ -384,6 +361,7 @@ export declare const MethodResourceSchema: z.ZodObject<{
384
361
  description: z.ZodOptional<z.ZodString>;
385
362
  contract_type: z.ZodString;
386
363
  skill_dir: z.ZodString;
364
+ role: z.ZodDefault<z.ZodString>;
387
365
  reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
388
366
  writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
389
367
  acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -577,8 +555,6 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
577
555
  "preparation-config": "preparation-config";
578
556
  "compile-run": "compile-run";
579
557
  "readiness-checks": "readiness-checks";
580
- "source-baseline": "source-baseline";
581
- "portable-context-check": "portable-context-check";
582
558
  "checks-current": "checks-current";
583
559
  }>;
584
560
  ok: z.ZodBoolean;
@@ -626,8 +602,6 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
626
602
  "preparation-config": "preparation-config";
627
603
  "compile-run": "compile-run";
628
604
  "readiness-checks": "readiness-checks";
629
- "source-baseline": "source-baseline";
630
- "portable-context-check": "portable-context-check";
631
605
  "checks-current": "checks-current";
632
606
  }>;
633
607
  ok: z.ZodBoolean;
@@ -949,8 +923,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
949
923
  "preparation-config": "preparation-config";
950
924
  "compile-run": "compile-run";
951
925
  "readiness-checks": "readiness-checks";
952
- "source-baseline": "source-baseline";
953
- "portable-context-check": "portable-context-check";
954
926
  "checks-current": "checks-current";
955
927
  }>;
956
928
  ok: z.ZodBoolean;
@@ -998,8 +970,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
998
970
  "preparation-config": "preparation-config";
999
971
  "compile-run": "compile-run";
1000
972
  "readiness-checks": "readiness-checks";
1001
- "source-baseline": "source-baseline";
1002
- "portable-context-check": "portable-context-check";
1003
973
  "checks-current": "checks-current";
1004
974
  }>;
1005
975
  ok: z.ZodBoolean;
@@ -1075,8 +1045,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1075
1045
  "preparation-config": "preparation-config";
1076
1046
  "compile-run": "compile-run";
1077
1047
  "readiness-checks": "readiness-checks";
1078
- "source-baseline": "source-baseline";
1079
- "portable-context-check": "portable-context-check";
1080
1048
  "checks-current": "checks-current";
1081
1049
  }>;
1082
1050
  ok: z.ZodBoolean;
@@ -1124,8 +1092,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1124
1092
  "preparation-config": "preparation-config";
1125
1093
  "compile-run": "compile-run";
1126
1094
  "readiness-checks": "readiness-checks";
1127
- "source-baseline": "source-baseline";
1128
- "portable-context-check": "portable-context-check";
1129
1095
  "checks-current": "checks-current";
1130
1096
  }>;
1131
1097
  ok: z.ZodBoolean;
@@ -1364,24 +1330,6 @@ export declare const PreparationSetupResultSchema: z.ZodObject<{
1364
1330
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1365
1331
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodLiteral<"compile-run">>>;
1366
1332
  }, z.core.$strict>;
1367
- export declare const WorkspaceBootstrapCreateRequestSchema: z.ZodObject<{
1368
- source_folder: z.ZodOptional<z.ZodObject<{
1369
- path: z.ZodString;
1370
- }, z.core.$strict>>;
1371
- seed_default_method: z.ZodDefault<z.ZodBoolean>;
1372
- }, z.core.$strict>;
1373
- export declare const WorkspaceBootstrapResultSchema: z.ZodObject<{
1374
- kind: z.ZodLiteral<"interf-workspace-bootstrap-result">;
1375
- version: z.ZodLiteral<1>;
1376
- control_path: z.ZodString;
1377
- config_path: z.ZodString;
1378
- source_folder_path: z.ZodNullable<z.ZodString>;
1379
- preparations: z.ZodNumber;
1380
- seeded_default_method: z.ZodBoolean;
1381
- default_method_id: z.ZodNullable<z.ZodString>;
1382
- changed: z.ZodBoolean;
1383
- message: z.ZodString;
1384
- }, z.core.$strict>;
1385
1333
  export declare const MethodChangeCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1386
1334
  action_type: z.ZodOptional<z.ZodLiteral<"method-change">>;
1387
1335
  operation: z.ZodLiteral<"duplicate">;
@@ -1611,22 +1559,26 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1611
1559
  result: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1612
1560
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1613
1561
  }, z.core.$strict>;
1614
- export declare const TestRunStatusSchema: z.ZodEnum<{
1562
+ export declare const VerifyRunStatusSchema: z.ZodEnum<{
1615
1563
  succeeded: "succeeded";
1616
1564
  failed: "failed";
1617
1565
  running: "running";
1618
1566
  cancelled: "cancelled";
1619
1567
  queued: "queued";
1620
1568
  }>;
1621
- export declare const TestRunCreateRequestSchema: z.ZodObject<{
1569
+ /**
1570
+ * 0.15 cleanup — `mode` was a 0.13 hold-over from when verify could
1571
+ * judge against either the source-files baseline or the compiled
1572
+ * portable context. 0.13.1 redirected every verify run to compiled-
1573
+ * only, which made `mode` a vestigial field. We drop it here so the
1574
+ * wire shape matches the runtime behavior. Older clients sending
1575
+ * `mode` get it ignored by the strict-but-tolerant runtime parser
1576
+ * upstream.
1577
+ */
1578
+ export declare const VerifyRunCreateRequestSchema: z.ZodObject<{
1622
1579
  preparation: z.ZodString;
1623
- mode: z.ZodDefault<z.ZodEnum<{
1624
- "source-files": "source-files";
1625
- compiled: "compiled";
1626
- both: "both";
1627
- }>>;
1628
1580
  }, z.core.$strict>;
1629
- export declare const TestRunResourceSchema: z.ZodObject<{
1581
+ export declare const VerifyRunResourceSchema: z.ZodObject<{
1630
1582
  run_id: z.ZodString;
1631
1583
  status: z.ZodEnum<{
1632
1584
  succeeded: "succeeded";
@@ -1636,11 +1588,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1636
1588
  queued: "queued";
1637
1589
  }>;
1638
1590
  preparation: z.ZodString;
1639
- mode: z.ZodEnum<{
1640
- "source-files": "source-files";
1641
- compiled: "compiled";
1642
- both: "both";
1643
- }>;
1644
1591
  source_path: z.ZodString;
1645
1592
  portable_context_path: z.ZodNullable<z.ZodString>;
1646
1593
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1728,8 +1675,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1728
1675
  "preparation-config": "preparation-config";
1729
1676
  "compile-run": "compile-run";
1730
1677
  "readiness-checks": "readiness-checks";
1731
- "source-baseline": "source-baseline";
1732
- "portable-context-check": "portable-context-check";
1733
1678
  "checks-current": "checks-current";
1734
1679
  }>;
1735
1680
  ok: z.ZodBoolean;
@@ -1777,8 +1722,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1777
1722
  "preparation-config": "preparation-config";
1778
1723
  "compile-run": "compile-run";
1779
1724
  "readiness-checks": "readiness-checks";
1780
- "source-baseline": "source-baseline";
1781
- "portable-context-check": "portable-context-check";
1782
1725
  "checks-current": "checks-current";
1783
1726
  }>;
1784
1727
  ok: z.ZodBoolean;
@@ -1963,8 +1906,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1963
1906
  "preparation-config": "preparation-config";
1964
1907
  "compile-run": "compile-run";
1965
1908
  "readiness-checks": "readiness-checks";
1966
- "source-baseline": "source-baseline";
1967
- "portable-context-check": "portable-context-check";
1968
1909
  "checks-current": "checks-current";
1969
1910
  }>;
1970
1911
  ok: z.ZodBoolean;
@@ -2012,8 +1953,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
2012
1953
  "preparation-config": "preparation-config";
2013
1954
  "compile-run": "compile-run";
2014
1955
  "readiness-checks": "readiness-checks";
2015
- "source-baseline": "source-baseline";
2016
- "portable-context-check": "portable-context-check";
2017
1956
  "checks-current": "checks-current";
2018
1957
  }>;
2019
1958
  ok: z.ZodBoolean;
@@ -2045,7 +1984,7 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
2045
1984
  compile: "compile";
2046
1985
  "method-authoring": "method-authoring";
2047
1986
  "method-improvement": "method-improvement";
2048
- test: "test";
1987
+ verify: "verify";
2049
1988
  "readiness-check-draft": "readiness-check-draft";
2050
1989
  job: "job";
2051
1990
  }>;
@@ -2130,8 +2069,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
2130
2069
  "preparation-config": "preparation-config";
2131
2070
  "compile-run": "compile-run";
2132
2071
  "readiness-checks": "readiness-checks";
2133
- "source-baseline": "source-baseline";
2134
- "portable-context-check": "portable-context-check";
2135
2072
  "checks-current": "checks-current";
2136
2073
  }>;
2137
2074
  ok: z.ZodBoolean;
@@ -2179,8 +2116,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
2179
2116
  "preparation-config": "preparation-config";
2180
2117
  "compile-run": "compile-run";
2181
2118
  "readiness-checks": "readiness-checks";
2182
- "source-baseline": "source-baseline";
2183
- "portable-context-check": "portable-context-check";
2184
2119
  "checks-current": "checks-current";
2185
2120
  }>;
2186
2121
  ok: z.ZodBoolean;
@@ -2292,16 +2227,16 @@ export declare const ActionProposalTypeSchema: z.ZodEnum<{
2292
2227
  compile: "compile";
2293
2228
  "method-authoring": "method-authoring";
2294
2229
  "method-improvement": "method-improvement";
2295
- test: "test";
2296
2230
  "readiness-check-draft": "readiness-check-draft";
2231
+ test: "test";
2297
2232
  clarification: "clarification";
2298
2233
  }>;
2299
2234
  export declare const ActionProposalPlanActionTypeSchema: z.ZodEnum<{
2300
2235
  compile: "compile";
2301
2236
  "method-authoring": "method-authoring";
2302
2237
  "method-improvement": "method-improvement";
2303
- test: "test";
2304
2238
  "readiness-check-draft": "readiness-check-draft";
2239
+ test: "test";
2305
2240
  "method-change": "method-change";
2306
2241
  "preparation-change": "preparation-change";
2307
2242
  clarification: "clarification";
@@ -2317,22 +2252,22 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
2317
2252
  }>;
2318
2253
  export declare const ActionClientOriginSchema: z.ZodEnum<{
2319
2254
  unknown: "unknown";
2320
- service: "service";
2255
+ mcp: "mcp";
2321
2256
  "ui-chat": "ui-chat";
2322
2257
  cli: "cli";
2323
2258
  "agent-cli": "agent-cli";
2324
- mcp: "mcp";
2259
+ service: "service";
2325
2260
  }>;
2326
2261
  export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
2327
2262
  message: z.ZodString;
2328
2263
  preparation: z.ZodOptional<z.ZodString>;
2329
2264
  client_origin: z.ZodDefault<z.ZodEnum<{
2330
2265
  unknown: "unknown";
2331
- service: "service";
2266
+ mcp: "mcp";
2332
2267
  "ui-chat": "ui-chat";
2333
2268
  cli: "cli";
2334
2269
  "agent-cli": "agent-cli";
2335
- mcp: "mcp";
2270
+ service: "service";
2336
2271
  }>>;
2337
2272
  values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2338
2273
  }, z.core.$strict>;
@@ -2341,8 +2276,8 @@ export declare const ActionProposalPlanSchema: z.ZodObject<{
2341
2276
  compile: "compile";
2342
2277
  "method-authoring": "method-authoring";
2343
2278
  "method-improvement": "method-improvement";
2344
- test: "test";
2345
2279
  "readiness-check-draft": "readiness-check-draft";
2280
+ test: "test";
2346
2281
  "method-change": "method-change";
2347
2282
  "preparation-change": "preparation-change";
2348
2283
  clarification: "clarification";
@@ -2386,11 +2321,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2386
2321
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2387
2322
  client_origin: z.ZodDefault<z.ZodEnum<{
2388
2323
  unknown: "unknown";
2389
- service: "service";
2324
+ mcp: "mcp";
2390
2325
  "ui-chat": "ui-chat";
2391
2326
  cli: "cli";
2392
2327
  "agent-cli": "agent-cli";
2393
- mcp: "mcp";
2328
+ service: "service";
2394
2329
  }>>;
2395
2330
  created_at: z.ZodString;
2396
2331
  updated_at: z.ZodString;
@@ -2407,7 +2342,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2407
2342
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2408
2343
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2409
2344
  "compile-run": "compile-run";
2410
- "test-run": "test-run";
2345
+ "verify-run": "verify-run";
2411
2346
  "job-run": "job-run";
2412
2347
  }>>>;
2413
2348
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2434,11 +2369,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2434
2369
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2435
2370
  client_origin: z.ZodDefault<z.ZodEnum<{
2436
2371
  unknown: "unknown";
2437
- service: "service";
2372
+ mcp: "mcp";
2438
2373
  "ui-chat": "ui-chat";
2439
2374
  cli: "cli";
2440
2375
  "agent-cli": "agent-cli";
2441
- mcp: "mcp";
2376
+ service: "service";
2442
2377
  }>>;
2443
2378
  created_at: z.ZodString;
2444
2379
  updated_at: z.ZodString;
@@ -2455,7 +2390,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2455
2390
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2456
2391
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2457
2392
  "compile-run": "compile-run";
2458
- "test-run": "test-run";
2393
+ "verify-run": "verify-run";
2459
2394
  "job-run": "job-run";
2460
2395
  }>>>;
2461
2396
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2491,11 +2426,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2491
2426
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2492
2427
  client_origin: z.ZodDefault<z.ZodEnum<{
2493
2428
  unknown: "unknown";
2494
- service: "service";
2429
+ mcp: "mcp";
2495
2430
  "ui-chat": "ui-chat";
2496
2431
  cli: "cli";
2497
2432
  "agent-cli": "agent-cli";
2498
- mcp: "mcp";
2433
+ service: "service";
2499
2434
  }>>;
2500
2435
  created_at: z.ZodString;
2501
2436
  updated_at: z.ZodString;
@@ -2512,18 +2447,13 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2512
2447
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2513
2448
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2514
2449
  "compile-run": "compile-run";
2515
- "test-run": "test-run";
2450
+ "verify-run": "verify-run";
2516
2451
  "job-run": "job-run";
2517
2452
  }>>>;
2518
2453
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2519
2454
  action_type: z.ZodLiteral<"test">;
2520
2455
  request: z.ZodObject<{
2521
2456
  preparation: z.ZodString;
2522
- mode: z.ZodDefault<z.ZodEnum<{
2523
- "source-files": "source-files";
2524
- compiled: "compiled";
2525
- both: "both";
2526
- }>>;
2527
2457
  }, z.core.$strict>;
2528
2458
  }, z.core.$strict>, z.ZodObject<{
2529
2459
  kind: z.ZodLiteral<"interf-action-proposal">;
@@ -2546,11 +2476,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2546
2476
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2547
2477
  client_origin: z.ZodDefault<z.ZodEnum<{
2548
2478
  unknown: "unknown";
2549
- service: "service";
2479
+ mcp: "mcp";
2550
2480
  "ui-chat": "ui-chat";
2551
2481
  cli: "cli";
2552
2482
  "agent-cli": "agent-cli";
2553
- mcp: "mcp";
2483
+ service: "service";
2554
2484
  }>>;
2555
2485
  created_at: z.ZodString;
2556
2486
  updated_at: z.ZodString;
@@ -2567,7 +2497,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2567
2497
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2568
2498
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2569
2499
  "compile-run": "compile-run";
2570
- "test-run": "test-run";
2500
+ "verify-run": "verify-run";
2571
2501
  "job-run": "job-run";
2572
2502
  }>>>;
2573
2503
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2599,11 +2529,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2599
2529
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2600
2530
  client_origin: z.ZodDefault<z.ZodEnum<{
2601
2531
  unknown: "unknown";
2602
- service: "service";
2532
+ mcp: "mcp";
2603
2533
  "ui-chat": "ui-chat";
2604
2534
  cli: "cli";
2605
2535
  "agent-cli": "agent-cli";
2606
- mcp: "mcp";
2536
+ service: "service";
2607
2537
  }>>;
2608
2538
  created_at: z.ZodString;
2609
2539
  updated_at: z.ZodString;
@@ -2620,7 +2550,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2620
2550
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2621
2551
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2622
2552
  "compile-run": "compile-run";
2623
- "test-run": "test-run";
2553
+ "verify-run": "verify-run";
2624
2554
  "job-run": "job-run";
2625
2555
  }>>>;
2626
2556
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2669,11 +2599,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2669
2599
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2670
2600
  client_origin: z.ZodDefault<z.ZodEnum<{
2671
2601
  unknown: "unknown";
2672
- service: "service";
2602
+ mcp: "mcp";
2673
2603
  "ui-chat": "ui-chat";
2674
2604
  cli: "cli";
2675
2605
  "agent-cli": "agent-cli";
2676
- mcp: "mcp";
2606
+ service: "service";
2677
2607
  }>>;
2678
2608
  created_at: z.ZodString;
2679
2609
  updated_at: z.ZodString;
@@ -2690,7 +2620,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2690
2620
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2691
2621
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2692
2622
  "compile-run": "compile-run";
2693
- "test-run": "test-run";
2623
+ "verify-run": "verify-run";
2694
2624
  "job-run": "job-run";
2695
2625
  }>>>;
2696
2626
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2750,8 +2680,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2750
2680
  "preparation-config": "preparation-config";
2751
2681
  "compile-run": "compile-run";
2752
2682
  "readiness-checks": "readiness-checks";
2753
- "source-baseline": "source-baseline";
2754
- "portable-context-check": "portable-context-check";
2755
2683
  "checks-current": "checks-current";
2756
2684
  }>;
2757
2685
  ok: z.ZodBoolean;
@@ -2799,8 +2727,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2799
2727
  "preparation-config": "preparation-config";
2800
2728
  "compile-run": "compile-run";
2801
2729
  "readiness-checks": "readiness-checks";
2802
- "source-baseline": "source-baseline";
2803
- "portable-context-check": "portable-context-check";
2804
2730
  "checks-current": "checks-current";
2805
2731
  }>;
2806
2732
  ok: z.ZodBoolean;
@@ -2865,8 +2791,6 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
2865
2791
  "preparation-config": "preparation-config";
2866
2792
  "compile-run": "compile-run";
2867
2793
  "readiness-checks": "readiness-checks";
2868
- "source-baseline": "source-baseline";
2869
- "portable-context-check": "portable-context-check";
2870
2794
  "checks-current": "checks-current";
2871
2795
  }>;
2872
2796
  ok: z.ZodBoolean;
@@ -2914,8 +2838,6 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
2914
2838
  "preparation-config": "preparation-config";
2915
2839
  "compile-run": "compile-run";
2916
2840
  "readiness-checks": "readiness-checks";
2917
- "source-baseline": "source-baseline";
2918
- "portable-context-check": "portable-context-check";
2919
2841
  "checks-current": "checks-current";
2920
2842
  }>;
2921
2843
  ok: z.ZodBoolean;
@@ -2970,9 +2892,10 @@ export declare const LocalServiceDiscoverySchema: z.ZodObject<{
2970
2892
  method_authoring_runs: z.ZodString;
2971
2893
  method_improvement_runs: z.ZodString;
2972
2894
  compile_runs: z.ZodString;
2973
- test_runs: z.ZodString;
2895
+ verify_runs: z.ZodString;
2974
2896
  reset: z.ZodString;
2975
2897
  executor: z.ZodString;
2898
+ agents: z.ZodOptional<z.ZodString>;
2976
2899
  workspaces: z.ZodOptional<z.ZodString>;
2977
2900
  status: z.ZodOptional<z.ZodString>;
2978
2901
  }, z.core.$strict>;
@@ -3061,8 +2984,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
3061
2984
  "preparation-config": "preparation-config";
3062
2985
  "compile-run": "compile-run";
3063
2986
  "readiness-checks": "readiness-checks";
3064
- "source-baseline": "source-baseline";
3065
- "portable-context-check": "portable-context-check";
3066
2987
  "checks-current": "checks-current";
3067
2988
  }>;
3068
2989
  ok: z.ZodBoolean;
@@ -3110,8 +3031,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
3110
3031
  "preparation-config": "preparation-config";
3111
3032
  "compile-run": "compile-run";
3112
3033
  "readiness-checks": "readiness-checks";
3113
- "source-baseline": "source-baseline";
3114
- "portable-context-check": "portable-context-check";
3115
3034
  "checks-current": "checks-current";
3116
3035
  }>;
3117
3036
  ok: z.ZodBoolean;
@@ -3160,6 +3079,7 @@ export declare const MethodListResponseSchema: z.ZodObject<{
3160
3079
  description: z.ZodOptional<z.ZodString>;
3161
3080
  contract_type: z.ZodString;
3162
3081
  skill_dir: z.ZodString;
3082
+ role: z.ZodDefault<z.ZodString>;
3163
3083
  reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
3164
3084
  writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
3165
3085
  acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -3439,8 +3359,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
3439
3359
  "preparation-config": "preparation-config";
3440
3360
  "compile-run": "compile-run";
3441
3361
  "readiness-checks": "readiness-checks";
3442
- "source-baseline": "source-baseline";
3443
- "portable-context-check": "portable-context-check";
3444
3362
  "checks-current": "checks-current";
3445
3363
  }>;
3446
3364
  ok: z.ZodBoolean;
@@ -3488,8 +3406,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
3488
3406
  "preparation-config": "preparation-config";
3489
3407
  "compile-run": "compile-run";
3490
3408
  "readiness-checks": "readiness-checks";
3491
- "source-baseline": "source-baseline";
3492
- "portable-context-check": "portable-context-check";
3493
3409
  "checks-current": "checks-current";
3494
3410
  }>;
3495
3411
  ok: z.ZodBoolean;
@@ -3565,8 +3481,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
3565
3481
  "preparation-config": "preparation-config";
3566
3482
  "compile-run": "compile-run";
3567
3483
  "readiness-checks": "readiness-checks";
3568
- "source-baseline": "source-baseline";
3569
- "portable-context-check": "portable-context-check";
3570
3484
  "checks-current": "checks-current";
3571
3485
  }>;
3572
3486
  ok: z.ZodBoolean;
@@ -3614,8 +3528,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
3614
3528
  "preparation-config": "preparation-config";
3615
3529
  "compile-run": "compile-run";
3616
3530
  "readiness-checks": "readiness-checks";
3617
- "source-baseline": "source-baseline";
3618
- "portable-context-check": "portable-context-check";
3619
3531
  "checks-current": "checks-current";
3620
3532
  }>;
3621
3533
  ok: z.ZodBoolean;
@@ -3721,8 +3633,8 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
3721
3633
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3722
3634
  }, z.core.$strict>>;
3723
3635
  }, z.core.$strict>;
3724
- export declare const TestRunListResponseSchema: z.ZodObject<{
3725
- test_runs: z.ZodArray<z.ZodObject<{
3636
+ export declare const VerifyRunListResponseSchema: z.ZodObject<{
3637
+ verify_runs: z.ZodArray<z.ZodObject<{
3726
3638
  run_id: z.ZodString;
3727
3639
  status: z.ZodEnum<{
3728
3640
  succeeded: "succeeded";
@@ -3732,11 +3644,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
3732
3644
  queued: "queued";
3733
3645
  }>;
3734
3646
  preparation: z.ZodString;
3735
- mode: z.ZodEnum<{
3736
- "source-files": "source-files";
3737
- compiled: "compiled";
3738
- both: "both";
3739
- }>;
3740
3647
  source_path: z.ZodString;
3741
3648
  portable_context_path: z.ZodNullable<z.ZodString>;
3742
3649
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3824,8 +3731,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
3824
3731
  "preparation-config": "preparation-config";
3825
3732
  "compile-run": "compile-run";
3826
3733
  "readiness-checks": "readiness-checks";
3827
- "source-baseline": "source-baseline";
3828
- "portable-context-check": "portable-context-check";
3829
3734
  "checks-current": "checks-current";
3830
3735
  }>;
3831
3736
  ok: z.ZodBoolean;
@@ -3873,8 +3778,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
3873
3778
  "preparation-config": "preparation-config";
3874
3779
  "compile-run": "compile-run";
3875
3780
  "readiness-checks": "readiness-checks";
3876
- "source-baseline": "source-baseline";
3877
- "portable-context-check": "portable-context-check";
3878
3781
  "checks-current": "checks-current";
3879
3782
  }>;
3880
3783
  ok: z.ZodBoolean;
@@ -4059,8 +3962,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
4059
3962
  "preparation-config": "preparation-config";
4060
3963
  "compile-run": "compile-run";
4061
3964
  "readiness-checks": "readiness-checks";
4062
- "source-baseline": "source-baseline";
4063
- "portable-context-check": "portable-context-check";
4064
3965
  "checks-current": "checks-current";
4065
3966
  }>;
4066
3967
  ok: z.ZodBoolean;
@@ -4108,8 +4009,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
4108
4009
  "preparation-config": "preparation-config";
4109
4010
  "compile-run": "compile-run";
4110
4011
  "readiness-checks": "readiness-checks";
4111
- "source-baseline": "source-baseline";
4112
- "portable-context-check": "portable-context-check";
4113
4012
  "checks-current": "checks-current";
4114
4013
  }>;
4115
4014
  ok: z.ZodBoolean;
@@ -4143,7 +4042,7 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
4143
4042
  compile: "compile";
4144
4043
  "method-authoring": "method-authoring";
4145
4044
  "method-improvement": "method-improvement";
4146
- test: "test";
4045
+ verify: "verify";
4147
4046
  "readiness-check-draft": "readiness-check-draft";
4148
4047
  job: "job";
4149
4048
  }>;
@@ -4228,8 +4127,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
4228
4127
  "preparation-config": "preparation-config";
4229
4128
  "compile-run": "compile-run";
4230
4129
  "readiness-checks": "readiness-checks";
4231
- "source-baseline": "source-baseline";
4232
- "portable-context-check": "portable-context-check";
4233
4130
  "checks-current": "checks-current";
4234
4131
  }>;
4235
4132
  ok: z.ZodBoolean;
@@ -4277,8 +4174,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
4277
4174
  "preparation-config": "preparation-config";
4278
4175
  "compile-run": "compile-run";
4279
4176
  "readiness-checks": "readiness-checks";
4280
- "source-baseline": "source-baseline";
4281
- "portable-context-check": "portable-context-check";
4282
4177
  "checks-current": "checks-current";
4283
4178
  }>;
4284
4179
  ok: z.ZodBoolean;
@@ -4385,11 +4280,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4385
4280
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4386
4281
  client_origin: z.ZodDefault<z.ZodEnum<{
4387
4282
  unknown: "unknown";
4388
- service: "service";
4283
+ mcp: "mcp";
4389
4284
  "ui-chat": "ui-chat";
4390
4285
  cli: "cli";
4391
4286
  "agent-cli": "agent-cli";
4392
- mcp: "mcp";
4287
+ service: "service";
4393
4288
  }>>;
4394
4289
  created_at: z.ZodString;
4395
4290
  updated_at: z.ZodString;
@@ -4406,7 +4301,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4406
4301
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4407
4302
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4408
4303
  "compile-run": "compile-run";
4409
- "test-run": "test-run";
4304
+ "verify-run": "verify-run";
4410
4305
  "job-run": "job-run";
4411
4306
  }>>>;
4412
4307
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4433,11 +4328,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4433
4328
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4434
4329
  client_origin: z.ZodDefault<z.ZodEnum<{
4435
4330
  unknown: "unknown";
4436
- service: "service";
4331
+ mcp: "mcp";
4437
4332
  "ui-chat": "ui-chat";
4438
4333
  cli: "cli";
4439
4334
  "agent-cli": "agent-cli";
4440
- mcp: "mcp";
4335
+ service: "service";
4441
4336
  }>>;
4442
4337
  created_at: z.ZodString;
4443
4338
  updated_at: z.ZodString;
@@ -4454,7 +4349,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4454
4349
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4455
4350
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4456
4351
  "compile-run": "compile-run";
4457
- "test-run": "test-run";
4352
+ "verify-run": "verify-run";
4458
4353
  "job-run": "job-run";
4459
4354
  }>>>;
4460
4355
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4490,11 +4385,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4490
4385
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4491
4386
  client_origin: z.ZodDefault<z.ZodEnum<{
4492
4387
  unknown: "unknown";
4493
- service: "service";
4388
+ mcp: "mcp";
4494
4389
  "ui-chat": "ui-chat";
4495
4390
  cli: "cli";
4496
4391
  "agent-cli": "agent-cli";
4497
- mcp: "mcp";
4392
+ service: "service";
4498
4393
  }>>;
4499
4394
  created_at: z.ZodString;
4500
4395
  updated_at: z.ZodString;
@@ -4511,18 +4406,13 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4511
4406
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4512
4407
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4513
4408
  "compile-run": "compile-run";
4514
- "test-run": "test-run";
4409
+ "verify-run": "verify-run";
4515
4410
  "job-run": "job-run";
4516
4411
  }>>>;
4517
4412
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4518
4413
  action_type: z.ZodLiteral<"test">;
4519
4414
  request: z.ZodObject<{
4520
4415
  preparation: z.ZodString;
4521
- mode: z.ZodDefault<z.ZodEnum<{
4522
- "source-files": "source-files";
4523
- compiled: "compiled";
4524
- both: "both";
4525
- }>>;
4526
4416
  }, z.core.$strict>;
4527
4417
  }, z.core.$strict>, z.ZodObject<{
4528
4418
  kind: z.ZodLiteral<"interf-action-proposal">;
@@ -4545,11 +4435,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4545
4435
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4546
4436
  client_origin: z.ZodDefault<z.ZodEnum<{
4547
4437
  unknown: "unknown";
4548
- service: "service";
4438
+ mcp: "mcp";
4549
4439
  "ui-chat": "ui-chat";
4550
4440
  cli: "cli";
4551
4441
  "agent-cli": "agent-cli";
4552
- mcp: "mcp";
4442
+ service: "service";
4553
4443
  }>>;
4554
4444
  created_at: z.ZodString;
4555
4445
  updated_at: z.ZodString;
@@ -4566,7 +4456,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4566
4456
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4567
4457
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4568
4458
  "compile-run": "compile-run";
4569
- "test-run": "test-run";
4459
+ "verify-run": "verify-run";
4570
4460
  "job-run": "job-run";
4571
4461
  }>>>;
4572
4462
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4598,11 +4488,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4598
4488
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4599
4489
  client_origin: z.ZodDefault<z.ZodEnum<{
4600
4490
  unknown: "unknown";
4601
- service: "service";
4491
+ mcp: "mcp";
4602
4492
  "ui-chat": "ui-chat";
4603
4493
  cli: "cli";
4604
4494
  "agent-cli": "agent-cli";
4605
- mcp: "mcp";
4495
+ service: "service";
4606
4496
  }>>;
4607
4497
  created_at: z.ZodString;
4608
4498
  updated_at: z.ZodString;
@@ -4619,7 +4509,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4619
4509
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4620
4510
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4621
4511
  "compile-run": "compile-run";
4622
- "test-run": "test-run";
4512
+ "verify-run": "verify-run";
4623
4513
  "job-run": "job-run";
4624
4514
  }>>>;
4625
4515
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4668,11 +4558,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4668
4558
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4669
4559
  client_origin: z.ZodDefault<z.ZodEnum<{
4670
4560
  unknown: "unknown";
4671
- service: "service";
4561
+ mcp: "mcp";
4672
4562
  "ui-chat": "ui-chat";
4673
4563
  cli: "cli";
4674
4564
  "agent-cli": "agent-cli";
4675
- mcp: "mcp";
4565
+ service: "service";
4676
4566
  }>>;
4677
4567
  created_at: z.ZodString;
4678
4568
  updated_at: z.ZodString;
@@ -4689,7 +4579,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
4689
4579
  submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4690
4580
  submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4691
4581
  "compile-run": "compile-run";
4692
- "test-run": "test-run";
4582
+ "verify-run": "verify-run";
4693
4583
  "job-run": "job-run";
4694
4584
  }>>>;
4695
4585
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4751,8 +4641,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
4751
4641
  "preparation-config": "preparation-config";
4752
4642
  "compile-run": "compile-run";
4753
4643
  "readiness-checks": "readiness-checks";
4754
- "source-baseline": "source-baseline";
4755
- "portable-context-check": "portable-context-check";
4756
4644
  "checks-current": "checks-current";
4757
4645
  }>;
4758
4646
  ok: z.ZodBoolean;
@@ -4800,8 +4688,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
4800
4688
  "preparation-config": "preparation-config";
4801
4689
  "compile-run": "compile-run";
4802
4690
  "readiness-checks": "readiness-checks";
4803
- "source-baseline": "source-baseline";
4804
- "portable-context-check": "portable-context-check";
4805
4691
  "checks-current": "checks-current";
4806
4692
  }>;
4807
4693
  ok: z.ZodBoolean;
@@ -4868,8 +4754,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
4868
4754
  "preparation-config": "preparation-config";
4869
4755
  "compile-run": "compile-run";
4870
4756
  "readiness-checks": "readiness-checks";
4871
- "source-baseline": "source-baseline";
4872
- "portable-context-check": "portable-context-check";
4873
4757
  "checks-current": "checks-current";
4874
4758
  }>;
4875
4759
  ok: z.ZodBoolean;
@@ -4917,8 +4801,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
4917
4801
  "preparation-config": "preparation-config";
4918
4802
  "compile-run": "compile-run";
4919
4803
  "readiness-checks": "readiness-checks";
4920
- "source-baseline": "source-baseline";
4921
- "portable-context-check": "portable-context-check";
4922
4804
  "checks-current": "checks-current";
4923
4805
  }>;
4924
4806
  ok: z.ZodBoolean;
@@ -4982,8 +4864,6 @@ export type LocalJobEvent = z.infer<typeof LocalJobEventSchema>;
4982
4864
  export type LocalJobRunCreateRequest = z.infer<typeof LocalJobRunCreateRequestSchema>;
4983
4865
  export type PreparationSetupCreateRequest = z.infer<typeof PreparationSetupCreateRequestSchema>;
4984
4866
  export type PreparationSetupResult = z.infer<typeof PreparationSetupResultSchema>;
4985
- export type WorkspaceBootstrapCreateRequest = z.infer<typeof WorkspaceBootstrapCreateRequestSchema>;
4986
- export type WorkspaceBootstrapResult = z.infer<typeof WorkspaceBootstrapResultSchema>;
4987
4867
  export type MethodChangeCreateRequest = z.infer<typeof MethodChangeCreateRequestSchema>;
4988
4868
  export type MethodChangeResult = z.infer<typeof MethodChangeResultSchema>;
4989
4869
  export type PreparationChangeCreateRequest = z.infer<typeof PreparationChangeCreateRequestSchema>;
@@ -4996,9 +4876,9 @@ export type MethodAuthoringCreateRequest = z.infer<typeof MethodAuthoringCreateR
4996
4876
  export type MethodAuthoringResult = z.infer<typeof MethodAuthoringResultSchema>;
4997
4877
  export type LocalJobEventAppendRequest = z.infer<typeof LocalJobEventAppendRequestSchema>;
4998
4878
  export type LocalJobRunResource = z.infer<typeof LocalJobRunResourceSchema>;
4999
- export type TestRunStatus = z.infer<typeof TestRunStatusSchema>;
5000
- export type TestRunCreateRequest = z.infer<typeof TestRunCreateRequestSchema>;
5001
- export type TestRunResource = z.infer<typeof TestRunResourceSchema>;
4879
+ export type VerifyRunStatus = z.infer<typeof VerifyRunStatusSchema>;
4880
+ export type VerifyRunCreateRequest = z.infer<typeof VerifyRunCreateRequestSchema>;
4881
+ export type VerifyRunResource = z.infer<typeof VerifyRunResourceSchema>;
5002
4882
  export type RunObservabilityResource = z.infer<typeof RunObservabilityResourceSchema>;
5003
4883
  export type LocalExecutorStatus = z.infer<typeof LocalExecutorStatusSchema>;
5004
4884
  export type ActionProposalType = z.infer<typeof ActionProposalTypeSchema>;
@@ -5019,7 +4899,7 @@ export type PreparationListResponse = z.infer<typeof PreparationListResponseSche
5019
4899
  export type MethodListResponse = z.infer<typeof MethodListResponseSchema>;
5020
4900
  export type CompileRunListResponse = z.infer<typeof CompileRunListResponseSchema>;
5021
4901
  export type LocalJobRunListResponse = z.infer<typeof LocalJobRunListResponseSchema>;
5022
- export type TestRunListResponse = z.infer<typeof TestRunListResponseSchema>;
4902
+ export type VerifyRunListResponse = z.infer<typeof VerifyRunListResponseSchema>;
5023
4903
  export type RunObservabilityListResponse = z.infer<typeof RunObservabilityListResponseSchema>;
5024
4904
  export type ActionProposalListResponse = z.infer<typeof ActionProposalListResponseSchema>;
5025
4905
  export type PortableContextListResponse = z.infer<typeof PortableContextListResponseSchema>;
@@ -5029,7 +4909,3 @@ export type WorkspaceFileListResponse = z.infer<typeof WorkspaceFileListResponse
5029
4909
  export type ServiceRegistryWorkspace = z.infer<typeof ServiceRegistryWorkspaceSchema>;
5030
4910
  export type ServiceRegistryEntry = z.infer<typeof ServiceRegistryEntrySchema>;
5031
4911
  export type ServiceRegistry = z.infer<typeof ServiceRegistrySchema>;
5032
- export type WorkspaceRegistrationRequest = z.infer<typeof WorkspaceRegistrationRequestSchema>;
5033
- export type WorkspaceRegistrationResponse = z.infer<typeof WorkspaceRegistrationResponseSchema>;
5034
- export type WorkspaceListResponse = z.infer<typeof WorkspaceListResponseSchema>;
5035
- export type WorkspaceDeregisterResponse = z.infer<typeof WorkspaceDeregisterResponseSchema>;