@kynetic-ai/spec 0.10.0 → 0.12.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 (487) hide show
  1. package/README.md +55 -455
  2. package/dist/agent-runtime/bootstrap.d.ts +31 -0
  3. package/dist/agent-runtime/bootstrap.d.ts.map +1 -0
  4. package/dist/agent-runtime/bootstrap.js +302 -0
  5. package/dist/agent-runtime/bootstrap.js.map +1 -0
  6. package/dist/agent-runtime/dispatch.d.ts +150 -10
  7. package/dist/agent-runtime/dispatch.d.ts.map +1 -1
  8. package/dist/agent-runtime/dispatch.js +1248 -244
  9. package/dist/agent-runtime/dispatch.js.map +1 -1
  10. package/dist/agent-runtime/invocation.d.ts +28 -1
  11. package/dist/agent-runtime/invocation.d.ts.map +1 -1
  12. package/dist/agent-runtime/invocation.js +172 -60
  13. package/dist/agent-runtime/invocation.js.map +1 -1
  14. package/dist/agent-runtime/prompts.d.ts +9 -0
  15. package/dist/agent-runtime/prompts.d.ts.map +1 -1
  16. package/dist/agent-runtime/prompts.js +42 -7
  17. package/dist/agent-runtime/prompts.js.map +1 -1
  18. package/dist/agent-runtime/session-event-accumulator.d.ts +83 -0
  19. package/dist/agent-runtime/session-event-accumulator.d.ts.map +1 -0
  20. package/dist/agent-runtime/session-event-accumulator.js +203 -0
  21. package/dist/agent-runtime/session-event-accumulator.js.map +1 -0
  22. package/dist/agent-runtime/session-event-types.d.ts +67 -0
  23. package/dist/agent-runtime/session-event-types.d.ts.map +1 -0
  24. package/dist/agent-runtime/session-event-types.js +13 -0
  25. package/dist/agent-runtime/session-event-types.js.map +1 -0
  26. package/dist/agent-runtime/workspace.d.ts +244 -0
  27. package/dist/agent-runtime/workspace.d.ts.map +1 -0
  28. package/dist/agent-runtime/workspace.js +2025 -0
  29. package/dist/agent-runtime/workspace.js.map +1 -0
  30. package/dist/agents/adapters.d.ts.map +1 -1
  31. package/dist/agents/adapters.js +58 -13
  32. package/dist/agents/adapters.js.map +1 -1
  33. package/dist/agents/spawner.d.ts +8 -0
  34. package/dist/agents/spawner.d.ts.map +1 -1
  35. package/dist/agents/spawner.js +25 -3
  36. package/dist/agents/spawner.js.map +1 -1
  37. package/dist/cli/batch-exec.js +1 -1
  38. package/dist/cli/batch-exec.js.map +1 -1
  39. package/dist/cli/command-annotations.d.ts +15 -3
  40. package/dist/cli/command-annotations.d.ts.map +1 -1
  41. package/dist/cli/command-annotations.js +23 -3
  42. package/dist/cli/command-annotations.js.map +1 -1
  43. package/dist/cli/commands/agent.d.ts +2 -0
  44. package/dist/cli/commands/agent.d.ts.map +1 -1
  45. package/dist/cli/commands/agent.js +144 -27
  46. package/dist/cli/commands/agent.js.map +1 -1
  47. package/dist/cli/commands/agents.d.ts.map +1 -1
  48. package/dist/cli/commands/agents.js +5 -5
  49. package/dist/cli/commands/agents.js.map +1 -1
  50. package/dist/cli/commands/derive.d.ts.map +1 -1
  51. package/dist/cli/commands/derive.js +118 -3
  52. package/dist/cli/commands/derive.js.map +1 -1
  53. package/dist/cli/commands/guard.d.ts.map +1 -1
  54. package/dist/cli/commands/guard.js +8 -6
  55. package/dist/cli/commands/guard.js.map +1 -1
  56. package/dist/cli/commands/index.d.ts +1 -0
  57. package/dist/cli/commands/index.d.ts.map +1 -1
  58. package/dist/cli/commands/index.js +1 -0
  59. package/dist/cli/commands/index.js.map +1 -1
  60. package/dist/cli/commands/init.d.ts.map +1 -1
  61. package/dist/cli/commands/init.js +20 -0
  62. package/dist/cli/commands/init.js.map +1 -1
  63. package/dist/cli/commands/item.d.ts.map +1 -1
  64. package/dist/cli/commands/item.js +205 -47
  65. package/dist/cli/commands/item.js.map +1 -1
  66. package/dist/cli/commands/log.d.ts.map +1 -1
  67. package/dist/cli/commands/log.js +24 -10
  68. package/dist/cli/commands/log.js.map +1 -1
  69. package/dist/cli/commands/meta.d.ts.map +1 -1
  70. package/dist/cli/commands/meta.js +10 -1
  71. package/dist/cli/commands/meta.js.map +1 -1
  72. package/dist/cli/commands/plan-import.d.ts +3 -3
  73. package/dist/cli/commands/plan-import.d.ts.map +1 -1
  74. package/dist/cli/commands/plan-import.js +213 -528
  75. package/dist/cli/commands/plan-import.js.map +1 -1
  76. package/dist/cli/commands/plan.d.ts.map +1 -1
  77. package/dist/cli/commands/plan.js +533 -83
  78. package/dist/cli/commands/plan.js.map +1 -1
  79. package/dist/cli/commands/review.d.ts +14 -0
  80. package/dist/cli/commands/review.d.ts.map +1 -0
  81. package/dist/cli/commands/review.js +1142 -0
  82. package/dist/cli/commands/review.js.map +1 -0
  83. package/dist/cli/commands/serve.d.ts +1 -0
  84. package/dist/cli/commands/serve.d.ts.map +1 -1
  85. package/dist/cli/commands/serve.js +33 -10
  86. package/dist/cli/commands/serve.js.map +1 -1
  87. package/dist/cli/commands/session/checkpoint.d.ts +2 -4
  88. package/dist/cli/commands/session/checkpoint.d.ts.map +1 -1
  89. package/dist/cli/commands/session/checkpoint.js +6 -107
  90. package/dist/cli/commands/session/checkpoint.js.map +1 -1
  91. package/dist/cli/commands/session/commands.d.ts.map +1 -1
  92. package/dist/cli/commands/session/commands.js +33 -23
  93. package/dist/cli/commands/session/commands.js.map +1 -1
  94. package/dist/cli/commands/session/compact.js +4 -4
  95. package/dist/cli/commands/session/compact.js.map +1 -1
  96. package/dist/cli/commands/session/create.js +2 -2
  97. package/dist/cli/commands/session/create.js.map +1 -1
  98. package/dist/cli/commands/session/format.d.ts.map +1 -1
  99. package/dist/cli/commands/session/format.js +1 -6
  100. package/dist/cli/commands/session/format.js.map +1 -1
  101. package/dist/cli/commands/session/log.d.ts +32 -7
  102. package/dist/cli/commands/session/log.d.ts.map +1 -1
  103. package/dist/cli/commands/session/log.js +166 -60
  104. package/dist/cli/commands/session/log.js.map +1 -1
  105. package/dist/cli/commands/session/migrate.d.ts +9 -0
  106. package/dist/cli/commands/session/migrate.d.ts.map +1 -0
  107. package/dist/cli/commands/session/migrate.js +46 -0
  108. package/dist/cli/commands/session/migrate.js.map +1 -0
  109. package/dist/cli/commands/session/stale-close.d.ts.map +1 -1
  110. package/dist/cli/commands/session/stale-close.js +5 -8
  111. package/dist/cli/commands/session/stale-close.js.map +1 -1
  112. package/dist/cli/commands/session/types.d.ts +1 -1
  113. package/dist/cli/commands/session/types.d.ts.map +1 -1
  114. package/dist/cli/commands/setup.d.ts +2 -2
  115. package/dist/cli/commands/setup.d.ts.map +1 -1
  116. package/dist/cli/commands/setup.js +287 -257
  117. package/dist/cli/commands/setup.js.map +1 -1
  118. package/dist/cli/commands/shadow.d.ts.map +1 -1
  119. package/dist/cli/commands/shadow.js +147 -31
  120. package/dist/cli/commands/shadow.js.map +1 -1
  121. package/dist/cli/commands/skill-crud.d.ts +7 -0
  122. package/dist/cli/commands/skill-crud.d.ts.map +1 -1
  123. package/dist/cli/commands/skill-crud.js +41 -18
  124. package/dist/cli/commands/skill-crud.js.map +1 -1
  125. package/dist/cli/commands/skill-diff.d.ts.map +1 -1
  126. package/dist/cli/commands/skill-diff.js +29 -3
  127. package/dist/cli/commands/skill-diff.js.map +1 -1
  128. package/dist/cli/commands/skill-install.d.ts.map +1 -1
  129. package/dist/cli/commands/skill-install.js +5 -4
  130. package/dist/cli/commands/skill-install.js.map +1 -1
  131. package/dist/cli/commands/task.d.ts.map +1 -1
  132. package/dist/cli/commands/task.js +359 -49
  133. package/dist/cli/commands/task.js.map +1 -1
  134. package/dist/cli/commands/trait.d.ts.map +1 -1
  135. package/dist/cli/commands/trait.js +5 -27
  136. package/dist/cli/commands/trait.js.map +1 -1
  137. package/dist/cli/commands/validate.d.ts.map +1 -1
  138. package/dist/cli/commands/validate.js +113 -52
  139. package/dist/cli/commands/validate.js.map +1 -1
  140. package/dist/cli/index.d.ts.map +1 -1
  141. package/dist/cli/index.js +69 -2
  142. package/dist/cli/index.js.map +1 -1
  143. package/dist/cli/output.d.ts +26 -0
  144. package/dist/cli/output.d.ts.map +1 -1
  145. package/dist/cli/output.js +108 -1
  146. package/dist/cli/output.js.map +1 -1
  147. package/dist/cli/sync-mode.d.ts +44 -0
  148. package/dist/cli/sync-mode.d.ts.map +1 -0
  149. package/dist/cli/sync-mode.js +64 -0
  150. package/dist/cli/sync-mode.js.map +1 -0
  151. package/dist/daemon/middleware/project-context.ts +25 -7
  152. package/dist/daemon/project-context.ts +18 -0
  153. package/dist/daemon/routes/agent-dispatch.ts +107 -23
  154. package/dist/daemon/routes/aggregation.ts +184 -0
  155. package/dist/daemon/routes/inbox.ts +5 -0
  156. package/dist/daemon/routes/items.ts +167 -0
  157. package/dist/daemon/routes/meta.ts +141 -1
  158. package/dist/daemon/routes/plans.ts +147 -0
  159. package/dist/daemon/routes/projects.ts +28 -6
  160. package/dist/daemon/routes/ref-resolution.ts +119 -0
  161. package/dist/daemon/routes/refs.ts +42 -0
  162. package/dist/daemon/routes/session-related.ts +140 -0
  163. package/dist/daemon/routes/sessions.ts +581 -0
  164. package/dist/daemon/routes/tasks.ts +257 -2
  165. package/dist/daemon/routes/triage.ts +40 -1
  166. package/dist/daemon/routes/validation.ts +1 -1
  167. package/dist/daemon/server.ts +165 -50
  168. package/dist/daemon/session-sync.ts +11 -0
  169. package/dist/daemon/shadow-sync.ts +11 -0
  170. package/dist/daemon/watcher.ts +56 -5
  171. package/dist/daemon/websocket/project-resolution.ts +77 -0
  172. package/dist/export/json.d.ts.map +1 -1
  173. package/dist/export/json.js +104 -1
  174. package/dist/export/json.js.map +1 -1
  175. package/dist/export/types.d.ts +52 -1
  176. package/dist/export/types.d.ts.map +1 -1
  177. package/dist/index.d.ts +1 -0
  178. package/dist/index.d.ts.map +1 -1
  179. package/dist/index.js +1 -0
  180. package/dist/index.js.map +1 -1
  181. package/dist/parser/agent-detection.d.ts +1 -1
  182. package/dist/parser/agent-detection.d.ts.map +1 -1
  183. package/dist/parser/agent-detection.js +10 -0
  184. package/dist/parser/agent-detection.js.map +1 -1
  185. package/dist/parser/alignment.d.ts.map +1 -1
  186. package/dist/parser/alignment.js +4 -2
  187. package/dist/parser/alignment.js.map +1 -1
  188. package/dist/parser/config.d.ts +397 -2
  189. package/dist/parser/config.d.ts.map +1 -1
  190. package/dist/parser/config.js +125 -3
  191. package/dist/parser/config.js.map +1 -1
  192. package/dist/parser/dispatch-workspaces.d.ts +18 -0
  193. package/dist/parser/dispatch-workspaces.d.ts.map +1 -0
  194. package/dist/parser/dispatch-workspaces.js +209 -0
  195. package/dist/parser/dispatch-workspaces.js.map +1 -0
  196. package/dist/parser/doctor.d.ts.map +1 -1
  197. package/dist/parser/doctor.js +27 -8
  198. package/dist/parser/doctor.js.map +1 -1
  199. package/dist/parser/file-lock.d.ts.map +1 -1
  200. package/dist/parser/file-lock.js +9 -2
  201. package/dist/parser/file-lock.js.map +1 -1
  202. package/dist/parser/index.d.ts +6 -0
  203. package/dist/parser/index.d.ts.map +1 -1
  204. package/dist/parser/index.js +6 -0
  205. package/dist/parser/index.js.map +1 -1
  206. package/dist/parser/plans.d.ts.map +1 -1
  207. package/dist/parser/plans.js +1 -0
  208. package/dist/parser/plans.js.map +1 -1
  209. package/dist/parser/refs.d.ts +8 -1
  210. package/dist/parser/refs.d.ts.map +1 -1
  211. package/dist/parser/refs.js +27 -1
  212. package/dist/parser/refs.js.map +1 -1
  213. package/dist/parser/review-operations.d.ts +72 -0
  214. package/dist/parser/review-operations.d.ts.map +1 -0
  215. package/dist/parser/review-operations.js +185 -0
  216. package/dist/parser/review-operations.js.map +1 -0
  217. package/dist/parser/review-task-integration.d.ts +78 -0
  218. package/dist/parser/review-task-integration.d.ts.map +1 -0
  219. package/dist/parser/review-task-integration.js +173 -0
  220. package/dist/parser/review-task-integration.js.map +1 -0
  221. package/dist/parser/review-threads.d.ts +101 -0
  222. package/dist/parser/review-threads.d.ts.map +1 -0
  223. package/dist/parser/review-threads.js +222 -0
  224. package/dist/parser/review-threads.js.map +1 -0
  225. package/dist/parser/review-validation.d.ts +69 -0
  226. package/dist/parser/review-validation.d.ts.map +1 -0
  227. package/dist/parser/review-validation.js +207 -0
  228. package/dist/parser/review-validation.js.map +1 -0
  229. package/dist/parser/reviews.d.ts +58 -0
  230. package/dist/parser/reviews.d.ts.map +1 -0
  231. package/dist/parser/reviews.js +230 -0
  232. package/dist/parser/reviews.js.map +1 -0
  233. package/dist/parser/session-branch.d.ts +91 -0
  234. package/dist/parser/session-branch.d.ts.map +1 -0
  235. package/dist/parser/session-branch.js +565 -0
  236. package/dist/parser/session-branch.js.map +1 -0
  237. package/dist/parser/session-sync-scheduler.d.ts +53 -0
  238. package/dist/parser/session-sync-scheduler.d.ts.map +1 -0
  239. package/dist/parser/session-sync-scheduler.js +100 -0
  240. package/dist/parser/session-sync-scheduler.js.map +1 -0
  241. package/dist/parser/setup-status.d.ts +7 -1
  242. package/dist/parser/setup-status.d.ts.map +1 -1
  243. package/dist/parser/setup-status.js +104 -39
  244. package/dist/parser/setup-status.js.map +1 -1
  245. package/dist/parser/shadow-sync-scheduler.d.ts +71 -0
  246. package/dist/parser/shadow-sync-scheduler.d.ts.map +1 -0
  247. package/dist/parser/shadow-sync-scheduler.js +139 -0
  248. package/dist/parser/shadow-sync-scheduler.js.map +1 -0
  249. package/dist/parser/shadow.d.ts +121 -14
  250. package/dist/parser/shadow.d.ts.map +1 -1
  251. package/dist/parser/shadow.js +752 -27
  252. package/dist/parser/shadow.js.map +1 -1
  253. package/dist/parser/skill-render.d.ts +24 -0
  254. package/dist/parser/skill-render.d.ts.map +1 -1
  255. package/dist/parser/skill-render.js +98 -26
  256. package/dist/parser/skill-render.js.map +1 -1
  257. package/dist/parser/validate.d.ts +43 -3
  258. package/dist/parser/validate.d.ts.map +1 -1
  259. package/dist/parser/validate.js +204 -30
  260. package/dist/parser/validate.js.map +1 -1
  261. package/dist/parser/yaml.d.ts +47 -11
  262. package/dist/parser/yaml.d.ts.map +1 -1
  263. package/dist/parser/yaml.js +329 -149
  264. package/dist/parser/yaml.js.map +1 -1
  265. package/dist/review/checks.d.ts +97 -0
  266. package/dist/review/checks.d.ts.map +1 -0
  267. package/dist/review/checks.js +175 -0
  268. package/dist/review/checks.js.map +1 -0
  269. package/dist/review/index.d.ts +3 -0
  270. package/dist/review/index.d.ts.map +1 -0
  271. package/dist/review/index.js +3 -0
  272. package/dist/review/index.js.map +1 -0
  273. package/dist/review/subject-bindings.d.ts +83 -0
  274. package/dist/review/subject-bindings.d.ts.map +1 -0
  275. package/dist/review/subject-bindings.js +175 -0
  276. package/dist/review/subject-bindings.js.map +1 -0
  277. package/dist/schema/common.d.ts +26 -0
  278. package/dist/schema/common.d.ts.map +1 -1
  279. package/dist/schema/common.js +13 -0
  280. package/dist/schema/common.js.map +1 -1
  281. package/dist/schema/dispatch-workspace.d.ts +2643 -0
  282. package/dist/schema/dispatch-workspace.d.ts.map +1 -0
  283. package/dist/schema/dispatch-workspace.js +187 -0
  284. package/dist/schema/dispatch-workspace.js.map +1 -0
  285. package/dist/schema/inbox.d.ts +8 -8
  286. package/dist/schema/index.d.ts +2 -0
  287. package/dist/schema/index.d.ts.map +1 -1
  288. package/dist/schema/index.js +2 -0
  289. package/dist/schema/index.js.map +1 -1
  290. package/dist/schema/meta.d.ts +663 -116
  291. package/dist/schema/meta.d.ts.map +1 -1
  292. package/dist/schema/meta.js +28 -0
  293. package/dist/schema/meta.js.map +1 -1
  294. package/dist/schema/plan.d.ts +30 -19
  295. package/dist/schema/plan.d.ts.map +1 -1
  296. package/dist/schema/plan.js +3 -1
  297. package/dist/schema/plan.js.map +1 -1
  298. package/dist/schema/review-records.d.ts +2676 -0
  299. package/dist/schema/review-records.d.ts.map +1 -0
  300. package/dist/schema/review-records.js +232 -0
  301. package/dist/schema/review-records.js.map +1 -0
  302. package/dist/schema/spec.d.ts +32 -14
  303. package/dist/schema/spec.d.ts.map +1 -1
  304. package/dist/schema/spec.js +5 -0
  305. package/dist/schema/spec.js.map +1 -1
  306. package/dist/schema/task.d.ts +187 -29
  307. package/dist/schema/task.d.ts.map +1 -1
  308. package/dist/schema/task.js +12 -2
  309. package/dist/schema/task.js.map +1 -1
  310. package/dist/schema/triage.d.ts +22 -22
  311. package/dist/sessions/cache.d.ts +119 -0
  312. package/dist/sessions/cache.d.ts.map +1 -0
  313. package/dist/sessions/cache.js +284 -0
  314. package/dist/sessions/cache.js.map +1 -0
  315. package/dist/sessions/index.d.ts +1 -0
  316. package/dist/sessions/index.d.ts.map +1 -1
  317. package/dist/sessions/index.js +2 -0
  318. package/dist/sessions/index.js.map +1 -1
  319. package/dist/sessions/legacy.d.ts +77 -0
  320. package/dist/sessions/legacy.d.ts.map +1 -0
  321. package/dist/sessions/legacy.js +146 -0
  322. package/dist/sessions/legacy.js.map +1 -0
  323. package/dist/sessions/store.d.ts +115 -71
  324. package/dist/sessions/store.d.ts.map +1 -1
  325. package/dist/sessions/store.js +357 -182
  326. package/dist/sessions/store.js.map +1 -1
  327. package/dist/sessions/types.d.ts +44 -16
  328. package/dist/sessions/types.d.ts.map +1 -1
  329. package/dist/sessions/types.js +11 -2
  330. package/dist/sessions/types.js.map +1 -1
  331. package/dist/strings/errors.d.ts +32 -0
  332. package/dist/strings/errors.d.ts.map +1 -1
  333. package/dist/strings/errors.js +17 -0
  334. package/dist/strings/errors.js.map +1 -1
  335. package/dist/strings/labels.d.ts +1 -0
  336. package/dist/strings/labels.d.ts.map +1 -1
  337. package/dist/strings/labels.js +1 -0
  338. package/dist/strings/labels.js.map +1 -1
  339. package/dist/utils/activity.d.ts +101 -0
  340. package/dist/utils/activity.d.ts.map +1 -0
  341. package/dist/utils/activity.js +408 -0
  342. package/dist/utils/activity.js.map +1 -0
  343. package/dist/utils/git.d.ts +31 -0
  344. package/dist/utils/git.d.ts.map +1 -1
  345. package/dist/utils/git.js +87 -0
  346. package/dist/utils/git.js.map +1 -1
  347. package/dist/utils/index.d.ts +2 -0
  348. package/dist/utils/index.d.ts.map +1 -1
  349. package/dist/utils/index.js +1 -0
  350. package/dist/utils/index.js.map +1 -1
  351. package/dist/web-ui/_app/immutable/assets/0.tmlwn-Ih.css +1 -0
  352. package/dist/web-ui/_app/immutable/assets/9.BwwJybWx.css +1 -0
  353. package/dist/web-ui/_app/immutable/chunks/2KqE8gtn.js +1 -0
  354. package/dist/web-ui/_app/immutable/chunks/70-t_QvE.js +1 -0
  355. package/dist/web-ui/_app/immutable/chunks/AiWQj974.js +1 -0
  356. package/dist/web-ui/_app/immutable/chunks/B25nWFyA.js +5 -0
  357. package/dist/web-ui/_app/immutable/chunks/B2bcA_Q_.js +1 -0
  358. package/dist/web-ui/_app/immutable/chunks/B5e5HYyB.js +1 -0
  359. package/dist/web-ui/_app/immutable/chunks/B7-5z6eA.js +1 -0
  360. package/dist/web-ui/_app/immutable/chunks/B7bGmhK0.js +1 -0
  361. package/dist/web-ui/_app/immutable/chunks/B8tYZKAE.js +1 -0
  362. package/dist/web-ui/_app/immutable/chunks/BFGAyJjD.js +1 -0
  363. package/dist/web-ui/_app/immutable/chunks/BG0850zf.js +1 -0
  364. package/dist/web-ui/_app/immutable/chunks/BG8eSzAd.js +1 -0
  365. package/dist/web-ui/_app/immutable/chunks/BIMxXS8I.js +1 -0
  366. package/dist/web-ui/_app/immutable/chunks/BSzL1fpU.js +1 -0
  367. package/dist/web-ui/_app/immutable/chunks/BYtjHfeq.js +1 -0
  368. package/dist/web-ui/_app/immutable/chunks/{D1ArdqNb.js → Bp5pFYXL.js} +1 -1
  369. package/dist/web-ui/_app/immutable/chunks/BsJFsuAT.js +1 -0
  370. package/dist/web-ui/_app/immutable/chunks/BvpNHcD6.js +1 -0
  371. package/dist/web-ui/_app/immutable/chunks/BypqA25-.js +1 -0
  372. package/dist/web-ui/_app/immutable/chunks/C0w6WDm5.js +1 -0
  373. package/dist/web-ui/_app/immutable/chunks/C5_PAZ0y.js +1 -0
  374. package/dist/web-ui/_app/immutable/chunks/CDRO15Iv.js +1 -0
  375. package/dist/web-ui/_app/immutable/chunks/CF1CoqD5.js +1 -0
  376. package/dist/web-ui/_app/immutable/chunks/CS2sa4_m.js +1 -0
  377. package/dist/web-ui/_app/immutable/chunks/CWUQwB9H.js +1 -0
  378. package/dist/web-ui/_app/immutable/chunks/CY5FDdSU.js +1 -0
  379. package/dist/web-ui/_app/immutable/chunks/C_7MTDoj.js +1 -0
  380. package/dist/web-ui/_app/immutable/chunks/CaAJD3dl.js +1 -0
  381. package/dist/web-ui/_app/immutable/chunks/{i-XnOIX0.js → ChB5iyEL.js} +1 -1
  382. package/dist/web-ui/_app/immutable/chunks/ChQD-6N8.js +1 -0
  383. package/dist/web-ui/_app/immutable/chunks/{BCkp8Hs8.js → CqbsoCwA.js} +1 -1
  384. package/dist/web-ui/_app/immutable/chunks/DCeJW50p.js +1 -0
  385. package/dist/web-ui/_app/immutable/chunks/DJtZNgcs.js +1 -0
  386. package/dist/web-ui/_app/immutable/chunks/DKIeaprD.js +1 -0
  387. package/dist/web-ui/_app/immutable/chunks/DLd2uVIA.js +1 -0
  388. package/dist/web-ui/_app/immutable/chunks/DW_subyT.js +2 -0
  389. package/dist/web-ui/_app/immutable/chunks/DbU6lVn0.js +1 -0
  390. package/dist/web-ui/_app/immutable/chunks/Dc7ZCC5m.js +1 -0
  391. package/dist/web-ui/_app/immutable/chunks/Dd5umPsk.js +2 -0
  392. package/dist/web-ui/_app/immutable/chunks/Dg_zDpDS.js +1 -0
  393. package/dist/web-ui/_app/immutable/chunks/Dgqu8Yuc.js +1 -0
  394. package/dist/web-ui/_app/immutable/chunks/DmxsPZTB.js +1 -0
  395. package/dist/web-ui/_app/immutable/chunks/DphTaFUB.js +1 -0
  396. package/dist/web-ui/_app/immutable/chunks/DqK4iHp0.js +1 -0
  397. package/dist/web-ui/_app/immutable/chunks/DqT6OH_u.js +2 -0
  398. package/dist/web-ui/_app/immutable/chunks/Ds9I9wQb.js +1 -0
  399. package/dist/web-ui/_app/immutable/chunks/Du5ng3u4.js +1 -0
  400. package/dist/web-ui/_app/immutable/chunks/DxJw79Wi.js +1 -0
  401. package/dist/web-ui/_app/immutable/chunks/GFTX8GgV.js +1 -0
  402. package/dist/web-ui/_app/immutable/chunks/HNjs76Zz.js +1 -0
  403. package/dist/web-ui/_app/immutable/chunks/HVMjDi4_.js +1 -0
  404. package/dist/web-ui/_app/immutable/chunks/P0A_fJvS.js +1 -0
  405. package/dist/web-ui/_app/immutable/chunks/T3vGWjIL.js +1 -0
  406. package/dist/web-ui/_app/immutable/chunks/VTmrX9Qu.js +1 -0
  407. package/dist/web-ui/_app/immutable/chunks/Xvwhx_F1.js +1 -0
  408. package/dist/web-ui/_app/immutable/chunks/Yyz1XMQA.js +1 -0
  409. package/dist/web-ui/_app/immutable/chunks/dh5HeqUr.js +1 -0
  410. package/dist/web-ui/_app/immutable/chunks/fZMteyca.js +62 -0
  411. package/dist/web-ui/_app/immutable/chunks/{D28BF5MJ.js → gPrj-hqC.js} +1 -1
  412. package/dist/web-ui/_app/immutable/chunks/htcWMiYN.js +1 -0
  413. package/dist/web-ui/_app/immutable/chunks/oTsvd9y4.js +1 -0
  414. package/dist/web-ui/_app/immutable/chunks/qJfLUwU4.js +1 -0
  415. package/dist/web-ui/_app/immutable/chunks/xCtiO_JE.js +1 -0
  416. package/dist/web-ui/_app/immutable/chunks/y4GeEH6k.js +1 -0
  417. package/dist/web-ui/_app/immutable/entry/app.C4h_eOn6.js +2 -0
  418. package/dist/web-ui/_app/immutable/entry/start.CQFTf9ep.js +1 -0
  419. package/dist/web-ui/_app/immutable/nodes/0.Dh1xO970.js +1 -0
  420. package/dist/web-ui/_app/immutable/nodes/1.l75D3Opx.js +1 -0
  421. package/dist/web-ui/_app/immutable/nodes/10.DBidBPc-.js +1 -0
  422. package/dist/web-ui/_app/immutable/nodes/11.Ab0gUKWe.js +1 -0
  423. package/dist/web-ui/_app/immutable/nodes/12.CMsnoxfs.js +1 -0
  424. package/dist/web-ui/_app/immutable/nodes/13.D8YKuknB.js +1 -0
  425. package/dist/web-ui/_app/immutable/nodes/14.DZ0aan7y.js +1 -0
  426. package/dist/web-ui/_app/immutable/nodes/15.CUIKreDL.js +2 -0
  427. package/dist/web-ui/_app/immutable/nodes/16.BWc8--BO.js +1 -0
  428. package/dist/web-ui/_app/immutable/nodes/2.CDUonbuh.js +1 -0
  429. package/dist/web-ui/_app/immutable/nodes/3.Ctg3M00i.js +1 -0
  430. package/dist/web-ui/_app/immutable/nodes/4.Ci-JDwbA.js +2 -0
  431. package/dist/web-ui/_app/immutable/nodes/5.CTyEDAq0.js +1 -0
  432. package/dist/web-ui/_app/immutable/nodes/6.BTZZqsAb.js +1 -0
  433. package/dist/web-ui/_app/immutable/nodes/7.BI52g_Jo.js +137 -0
  434. package/dist/web-ui/_app/immutable/nodes/8.3hZPaB9x.js +1 -0
  435. package/dist/web-ui/_app/immutable/nodes/9.DS49kvwl.js +29 -0
  436. package/dist/web-ui/_app/version.json +1 -1
  437. package/dist/web-ui/favicon-192.png +0 -0
  438. package/dist/web-ui/favicon-32.png +0 -0
  439. package/dist/web-ui/favicon.ico +0 -0
  440. package/dist/web-ui/index.html +14 -11
  441. package/package.json +14 -7
  442. package/plugin/.claude-plugin/marketplace.json +1 -1
  443. package/plugin/.claude-plugin/plugin.json +1 -1
  444. package/plugin/plugins/kspec/skills/merge/SKILL.md +127 -0
  445. package/plugin/plugins/kspec/skills/plan/SKILL.md +55 -26
  446. package/plugin/plugins/kspec/skills/review/SKILL.md +350 -133
  447. package/plugin/plugins/kspec/skills/task-work/SKILL.md +96 -106
  448. package/templates/agents-sections/04-pr-workflow.md +15 -12
  449. package/templates/agents-sections/06-ralph-loop.md +15 -10
  450. package/templates/skills/manifest.yaml +25 -7
  451. package/templates/skills/merge/SKILL.md +120 -0
  452. package/templates/skills/plan/SKILL.md +55 -26
  453. package/templates/skills/review/SKILL.md +346 -130
  454. package/templates/skills/task-work/SKILL.md +93 -103
  455. package/dist/web-ui/_app/immutable/assets/0.BxCxvrZR.css +0 -1
  456. package/dist/web-ui/_app/immutable/chunks/B-CZR0q8.js +0 -1
  457. package/dist/web-ui/_app/immutable/chunks/B1IR5Su5.js +0 -1
  458. package/dist/web-ui/_app/immutable/chunks/B_Cvvtc4.js +0 -1
  459. package/dist/web-ui/_app/immutable/chunks/BtFaGGII.js +0 -1
  460. package/dist/web-ui/_app/immutable/chunks/Bu8JVsCH.js +0 -1
  461. package/dist/web-ui/_app/immutable/chunks/C87u-CNA.js +0 -1
  462. package/dist/web-ui/_app/immutable/chunks/CrFkBTYp.js +0 -1
  463. package/dist/web-ui/_app/immutable/chunks/D6RtLpzL.js +0 -1
  464. package/dist/web-ui/_app/immutable/chunks/D7FHSgx2.js +0 -1
  465. package/dist/web-ui/_app/immutable/chunks/DBXrsxZQ.js +0 -2
  466. package/dist/web-ui/_app/immutable/chunks/Da_hHMuA.js +0 -1
  467. package/dist/web-ui/_app/immutable/chunks/Do6LchSF.js +0 -1
  468. package/dist/web-ui/_app/immutable/chunks/DoNPtcAw.js +0 -1
  469. package/dist/web-ui/_app/immutable/chunks/DtUbXRZz.js +0 -1
  470. package/dist/web-ui/_app/immutable/chunks/DyFPRlLl.js +0 -1
  471. package/dist/web-ui/_app/immutable/chunks/DzAP8lRM.js +0 -1
  472. package/dist/web-ui/_app/immutable/chunks/DzVXElzN.js +0 -2
  473. package/dist/web-ui/_app/immutable/chunks/aoPBFken.js +0 -1
  474. package/dist/web-ui/_app/immutable/chunks/laxtrUO3.js +0 -1
  475. package/dist/web-ui/_app/immutable/chunks/q1nIWgqB.js +0 -1
  476. package/dist/web-ui/_app/immutable/chunks/sTLbk5Nm.js +0 -1
  477. package/dist/web-ui/_app/immutable/chunks/vwKgQu5P.js +0 -5
  478. package/dist/web-ui/_app/immutable/entry/app.BCwMcqnT.js +0 -2
  479. package/dist/web-ui/_app/immutable/entry/start.wKCQH-tt.js +0 -1
  480. package/dist/web-ui/_app/immutable/nodes/0.CjGVMG74.js +0 -1
  481. package/dist/web-ui/_app/immutable/nodes/1.B6_AIPan.js +0 -1
  482. package/dist/web-ui/_app/immutable/nodes/2.q4oCS7Ws.js +0 -1
  483. package/dist/web-ui/_app/immutable/nodes/3.rTKZf9o2.js +0 -1
  484. package/dist/web-ui/_app/immutable/nodes/4.DVIDRu1d.js +0 -1
  485. package/dist/web-ui/_app/immutable/nodes/5.8PtPXIOd.js +0 -1
  486. package/dist/web-ui/_app/immutable/nodes/6.ZZrTemy_.js +0 -1
  487. package/dist/web-ui/_app/immutable/nodes/7.IP-gxCxi.js +0 -1
@@ -77,13 +77,19 @@ export declare const AgentDispatchRuleSchema: z.ZodObject<{
77
77
  */
78
78
  export declare const AgentBudgetSchema: z.ZodObject<{
79
79
  max_tasks: z.ZodOptional<z.ZodNumber>;
80
+ max_retries: z.ZodOptional<z.ZodNumber>;
80
81
  timeout_minutes: z.ZodOptional<z.ZodNumber>;
82
+ initial_response_timeout_seconds: z.ZodOptional<z.ZodNumber>;
81
83
  }, "strip", z.ZodTypeAny, {
82
84
  max_tasks?: number | undefined;
85
+ max_retries?: number | undefined;
83
86
  timeout_minutes?: number | undefined;
87
+ initial_response_timeout_seconds?: number | undefined;
84
88
  }, {
85
89
  max_tasks?: number | undefined;
90
+ max_retries?: number | undefined;
86
91
  timeout_minutes?: number | undefined;
92
+ initial_response_timeout_seconds?: number | undefined;
87
93
  }>;
88
94
  /**
89
95
  * Agent concurrency settings
@@ -96,6 +102,70 @@ export declare const AgentConcurrencySchema: z.ZodObject<{
96
102
  }, {
97
103
  max_concurrent?: number | undefined;
98
104
  }>;
105
+ export declare const AgentBootstrapStepSchema: z.ZodObject<{
106
+ run: z.ZodString;
107
+ name: z.ZodOptional<z.ZodString>;
108
+ roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
109
+ idempotent: z.ZodOptional<z.ZodBoolean>;
110
+ allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
111
+ reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
112
+ }, "strip", z.ZodTypeAny, {
113
+ run: string;
114
+ name?: string | undefined;
115
+ idempotent?: boolean | undefined;
116
+ roles?: ("worker" | "reviewer")[] | undefined;
117
+ allow_tracked_changes?: boolean | undefined;
118
+ reviewer_rerun_allowed?: boolean | undefined;
119
+ }, {
120
+ run: string;
121
+ name?: string | undefined;
122
+ idempotent?: boolean | undefined;
123
+ roles?: ("worker" | "reviewer")[] | undefined;
124
+ allow_tracked_changes?: boolean | undefined;
125
+ reviewer_rerun_allowed?: boolean | undefined;
126
+ }>;
127
+ export declare const AgentBootstrapSchema: z.ZodObject<{
128
+ steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
129
+ run: z.ZodString;
130
+ name: z.ZodOptional<z.ZodString>;
131
+ roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
132
+ idempotent: z.ZodOptional<z.ZodBoolean>;
133
+ allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
134
+ reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
135
+ }, "strip", z.ZodTypeAny, {
136
+ run: string;
137
+ name?: string | undefined;
138
+ idempotent?: boolean | undefined;
139
+ roles?: ("worker" | "reviewer")[] | undefined;
140
+ allow_tracked_changes?: boolean | undefined;
141
+ reviewer_rerun_allowed?: boolean | undefined;
142
+ }, {
143
+ run: string;
144
+ name?: string | undefined;
145
+ idempotent?: boolean | undefined;
146
+ roles?: ("worker" | "reviewer")[] | undefined;
147
+ allow_tracked_changes?: boolean | undefined;
148
+ reviewer_rerun_allowed?: boolean | undefined;
149
+ }>, "many">>;
150
+ }, "strip", z.ZodTypeAny, {
151
+ steps: {
152
+ run: string;
153
+ name?: string | undefined;
154
+ idempotent?: boolean | undefined;
155
+ roles?: ("worker" | "reviewer")[] | undefined;
156
+ allow_tracked_changes?: boolean | undefined;
157
+ reviewer_rerun_allowed?: boolean | undefined;
158
+ }[];
159
+ }, {
160
+ steps?: {
161
+ run: string;
162
+ name?: string | undefined;
163
+ idempotent?: boolean | undefined;
164
+ roles?: ("worker" | "reviewer")[] | undefined;
165
+ allow_tracked_changes?: boolean | undefined;
166
+ reviewer_rerun_allowed?: boolean | undefined;
167
+ }[] | undefined;
168
+ }>;
99
169
  /**
100
170
  * Agent definition - describes an agent's role and capabilities
101
171
  * AC: @agent-definition-schema ac-1 through ac-8
@@ -155,13 +225,19 @@ export declare const AgentSchema: z.ZodObject<{
155
225
  skills: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
156
226
  budget: z.ZodOptional<z.ZodObject<{
157
227
  max_tasks: z.ZodOptional<z.ZodNumber>;
228
+ max_retries: z.ZodOptional<z.ZodNumber>;
158
229
  timeout_minutes: z.ZodOptional<z.ZodNumber>;
230
+ initial_response_timeout_seconds: z.ZodOptional<z.ZodNumber>;
159
231
  }, "strip", z.ZodTypeAny, {
160
232
  max_tasks?: number | undefined;
233
+ max_retries?: number | undefined;
161
234
  timeout_minutes?: number | undefined;
235
+ initial_response_timeout_seconds?: number | undefined;
162
236
  }, {
163
237
  max_tasks?: number | undefined;
238
+ max_retries?: number | undefined;
164
239
  timeout_minutes?: number | undefined;
240
+ initial_response_timeout_seconds?: number | undefined;
165
241
  }>>;
166
242
  concurrency: z.ZodDefault<z.ZodObject<{
167
243
  max_concurrent: z.ZodDefault<z.ZodNumber>;
@@ -170,6 +246,48 @@ export declare const AgentSchema: z.ZodObject<{
170
246
  }, {
171
247
  max_concurrent?: number | undefined;
172
248
  }>>;
249
+ bootstrap: z.ZodOptional<z.ZodObject<{
250
+ steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
251
+ run: z.ZodString;
252
+ name: z.ZodOptional<z.ZodString>;
253
+ roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
254
+ idempotent: z.ZodOptional<z.ZodBoolean>;
255
+ allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
256
+ reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
257
+ }, "strip", z.ZodTypeAny, {
258
+ run: string;
259
+ name?: string | undefined;
260
+ idempotent?: boolean | undefined;
261
+ roles?: ("worker" | "reviewer")[] | undefined;
262
+ allow_tracked_changes?: boolean | undefined;
263
+ reviewer_rerun_allowed?: boolean | undefined;
264
+ }, {
265
+ run: string;
266
+ name?: string | undefined;
267
+ idempotent?: boolean | undefined;
268
+ roles?: ("worker" | "reviewer")[] | undefined;
269
+ allow_tracked_changes?: boolean | undefined;
270
+ reviewer_rerun_allowed?: boolean | undefined;
271
+ }>, "many">>;
272
+ }, "strip", z.ZodTypeAny, {
273
+ steps: {
274
+ run: string;
275
+ name?: string | undefined;
276
+ idempotent?: boolean | undefined;
277
+ roles?: ("worker" | "reviewer")[] | undefined;
278
+ allow_tracked_changes?: boolean | undefined;
279
+ reviewer_rerun_allowed?: boolean | undefined;
280
+ }[];
281
+ }, {
282
+ steps?: {
283
+ run: string;
284
+ name?: string | undefined;
285
+ idempotent?: boolean | undefined;
286
+ roles?: ("worker" | "reviewer")[] | undefined;
287
+ allow_tracked_changes?: boolean | undefined;
288
+ reviewer_rerun_allowed?: boolean | undefined;
289
+ }[] | undefined;
290
+ }>>;
173
291
  auto_approve: z.ZodDefault<z.ZodBoolean>;
174
292
  prompt_template: z.ZodOptional<z.ZodString>;
175
293
  /** Automation eligibility for agent list filtering (eligible|ineligible) */
@@ -178,11 +296,6 @@ export declare const AgentSchema: z.ZodObject<{
178
296
  tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
179
297
  }, "strip", z.ZodTypeAny, {
180
298
  name: string;
181
- _ulid: string;
182
- id: string;
183
- capabilities: string[];
184
- tools: string[];
185
- conventions: string[];
186
299
  dispatch: {
187
300
  on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
188
301
  filter?: {
@@ -191,11 +304,26 @@ export declare const AgentSchema: z.ZodObject<{
191
304
  priority?: number | undefined;
192
305
  } | undefined;
193
306
  }[];
307
+ _ulid: string;
308
+ id: string;
309
+ capabilities: string[];
310
+ tools: string[];
311
+ conventions: string[];
194
312
  skills: string[];
195
313
  concurrency: {
196
314
  max_concurrent: number;
197
315
  };
198
316
  auto_approve: boolean;
317
+ bootstrap?: {
318
+ steps: {
319
+ run: string;
320
+ name?: string | undefined;
321
+ idempotent?: boolean | undefined;
322
+ roles?: ("worker" | "reviewer")[] | undefined;
323
+ allow_tracked_changes?: boolean | undefined;
324
+ reviewer_rerun_allowed?: boolean | undefined;
325
+ }[];
326
+ } | undefined;
199
327
  tags?: string[] | undefined;
200
328
  automation?: "eligible" | "ineligible" | undefined;
201
329
  description?: string | undefined;
@@ -207,13 +335,33 @@ export declare const AgentSchema: z.ZodObject<{
207
335
  adapter?: string | undefined;
208
336
  budget?: {
209
337
  max_tasks?: number | undefined;
338
+ max_retries?: number | undefined;
210
339
  timeout_minutes?: number | undefined;
340
+ initial_response_timeout_seconds?: number | undefined;
211
341
  } | undefined;
212
342
  prompt_template?: string | undefined;
213
343
  }, {
214
344
  name: string;
215
345
  _ulid: string;
216
346
  id: string;
347
+ dispatch?: {
348
+ on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
349
+ filter?: {
350
+ tags?: string[] | undefined;
351
+ automation?: "eligible" | "ineligible" | undefined;
352
+ priority?: number | undefined;
353
+ } | undefined;
354
+ }[] | undefined;
355
+ bootstrap?: {
356
+ steps?: {
357
+ run: string;
358
+ name?: string | undefined;
359
+ idempotent?: boolean | undefined;
360
+ roles?: ("worker" | "reviewer")[] | undefined;
361
+ allow_tracked_changes?: boolean | undefined;
362
+ reviewer_rerun_allowed?: boolean | undefined;
363
+ }[] | undefined;
364
+ } | undefined;
217
365
  tags?: string[] | undefined;
218
366
  automation?: "eligible" | "ineligible" | undefined;
219
367
  description?: string | undefined;
@@ -226,18 +374,12 @@ export declare const AgentSchema: z.ZodObject<{
226
374
  } | undefined;
227
375
  conventions?: string[] | undefined;
228
376
  adapter?: string | undefined;
229
- dispatch?: {
230
- on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
231
- filter?: {
232
- tags?: string[] | undefined;
233
- automation?: "eligible" | "ineligible" | undefined;
234
- priority?: number | undefined;
235
- } | undefined;
236
- }[] | undefined;
237
377
  skills?: string[] | undefined;
238
378
  budget?: {
239
379
  max_tasks?: number | undefined;
380
+ max_retries?: number | undefined;
240
381
  timeout_minutes?: number | undefined;
382
+ initial_response_timeout_seconds?: number | undefined;
241
383
  } | undefined;
242
384
  concurrency?: {
243
385
  max_concurrent?: number | undefined;
@@ -437,9 +579,6 @@ export declare const WorkflowSchema: z.ZodObject<{
437
579
  based_on: z.ZodOptional<z.ZodString>;
438
580
  tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
439
581
  }, "strip", z.ZodTypeAny, {
440
- _ulid: string;
441
- id: string;
442
- trigger: string;
443
582
  steps: {
444
583
  content: string;
445
584
  type: "decision" | "check" | "action";
@@ -458,6 +597,9 @@ export declare const WorkflowSchema: z.ZodObject<{
458
597
  required?: boolean | undefined;
459
598
  }[] | undefined;
460
599
  }[];
600
+ _ulid: string;
601
+ id: string;
602
+ trigger: string;
461
603
  tags?: string[] | undefined;
462
604
  description?: string | undefined;
463
605
  mode?: "interactive" | "loop" | undefined;
@@ -467,9 +609,6 @@ export declare const WorkflowSchema: z.ZodObject<{
467
609
  _ulid: string;
468
610
  id: string;
469
611
  trigger: string;
470
- tags?: string[] | undefined;
471
- description?: string | undefined;
472
- mode?: "interactive" | "loop" | undefined;
473
612
  steps?: {
474
613
  content: string;
475
614
  type: "decision" | "check" | "action";
@@ -488,6 +627,9 @@ export declare const WorkflowSchema: z.ZodObject<{
488
627
  required?: boolean | undefined;
489
628
  }[] | undefined;
490
629
  }[] | undefined;
630
+ tags?: string[] | undefined;
631
+ description?: string | undefined;
632
+ mode?: "interactive" | "loop" | undefined;
491
633
  enforcement?: "advisory" | "strict" | undefined;
492
634
  based_on?: string | undefined;
493
635
  }>;
@@ -631,8 +773,8 @@ export declare const ObservationSchema: z.ZodObject<{
631
773
  }, "strip", z.ZodTypeAny, {
632
774
  content: string;
633
775
  type: "friction" | "success" | "question" | "idea";
634
- _ulid: string;
635
776
  created_at: string;
777
+ _ulid: string;
636
778
  resolved: boolean;
637
779
  workflow_ref?: string | undefined;
638
780
  author?: string | undefined;
@@ -643,8 +785,8 @@ export declare const ObservationSchema: z.ZodObject<{
643
785
  }, {
644
786
  content: string;
645
787
  type: "friction" | "success" | "question" | "idea";
646
- _ulid: string;
647
788
  created_at: string;
789
+ _ulid: string;
648
790
  workflow_ref?: string | undefined;
649
791
  author?: string | undefined;
650
792
  resolved?: boolean | undefined;
@@ -668,17 +810,17 @@ export declare const ClaudeCodeConfigSchema: z.ZodObject<{
668
810
  model: z.ZodOptional<z.ZodString>;
669
811
  argument_hint: z.ZodOptional<z.ZodString>;
670
812
  }, "strict", z.ZodTypeAny, {
813
+ agent?: string | undefined;
671
814
  disable_model_invocation?: boolean | undefined;
672
815
  user_invocable?: boolean | undefined;
673
816
  context?: string | undefined;
674
- agent?: string | undefined;
675
817
  model?: string | undefined;
676
818
  argument_hint?: string | undefined;
677
819
  }, {
820
+ agent?: string | undefined;
678
821
  disable_model_invocation?: boolean | undefined;
679
822
  user_invocable?: boolean | undefined;
680
823
  context?: string | undefined;
681
- agent?: string | undefined;
682
824
  model?: string | undefined;
683
825
  argument_hint?: string | undefined;
684
826
  }>;
@@ -710,6 +852,29 @@ export declare const CodexConfigSchema: z.ZodObject<{
710
852
  brand_color?: string | undefined;
711
853
  default_prompt?: string | undefined;
712
854
  }>;
855
+ /**
856
+ * Droid platform config - same portable frontmatter shape as Claude Code
857
+ * without the Claude-specific agent field.
858
+ */
859
+ export declare const DroidConfigSchema: z.ZodObject<{
860
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
861
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
862
+ context: z.ZodOptional<z.ZodString>;
863
+ model: z.ZodOptional<z.ZodString>;
864
+ argument_hint: z.ZodOptional<z.ZodString>;
865
+ }, "strict", z.ZodTypeAny, {
866
+ disable_model_invocation?: boolean | undefined;
867
+ user_invocable?: boolean | undefined;
868
+ context?: string | undefined;
869
+ model?: string | undefined;
870
+ argument_hint?: string | undefined;
871
+ }, {
872
+ disable_model_invocation?: boolean | undefined;
873
+ user_invocable?: boolean | undefined;
874
+ context?: string | undefined;
875
+ model?: string | undefined;
876
+ argument_hint?: string | undefined;
877
+ }>;
713
878
  /**
714
879
  * Platform config - container for platform-specific settings
715
880
  * Uses passthrough for unknown platforms to support future extensibility
@@ -723,17 +888,17 @@ export declare const PlatformConfigSchema: z.ZodObject<{
723
888
  model: z.ZodOptional<z.ZodString>;
724
889
  argument_hint: z.ZodOptional<z.ZodString>;
725
890
  }, "strict", z.ZodTypeAny, {
891
+ agent?: string | undefined;
726
892
  disable_model_invocation?: boolean | undefined;
727
893
  user_invocable?: boolean | undefined;
728
894
  context?: string | undefined;
729
- agent?: string | undefined;
730
895
  model?: string | undefined;
731
896
  argument_hint?: string | undefined;
732
897
  }, {
898
+ agent?: string | undefined;
733
899
  disable_model_invocation?: boolean | undefined;
734
900
  user_invocable?: boolean | undefined;
735
901
  context?: string | undefined;
736
- agent?: string | undefined;
737
902
  model?: string | undefined;
738
903
  argument_hint?: string | undefined;
739
904
  }>>;
@@ -762,6 +927,25 @@ export declare const PlatformConfigSchema: z.ZodObject<{
762
927
  brand_color?: string | undefined;
763
928
  default_prompt?: string | undefined;
764
929
  }>>;
930
+ droid: z.ZodOptional<z.ZodObject<{
931
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
932
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
933
+ context: z.ZodOptional<z.ZodString>;
934
+ model: z.ZodOptional<z.ZodString>;
935
+ argument_hint: z.ZodOptional<z.ZodString>;
936
+ }, "strict", z.ZodTypeAny, {
937
+ disable_model_invocation?: boolean | undefined;
938
+ user_invocable?: boolean | undefined;
939
+ context?: string | undefined;
940
+ model?: string | undefined;
941
+ argument_hint?: string | undefined;
942
+ }, {
943
+ disable_model_invocation?: boolean | undefined;
944
+ user_invocable?: boolean | undefined;
945
+ context?: string | undefined;
946
+ model?: string | undefined;
947
+ argument_hint?: string | undefined;
948
+ }>>;
765
949
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
766
950
  claude_code: z.ZodOptional<z.ZodObject<{
767
951
  disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
@@ -771,17 +955,17 @@ export declare const PlatformConfigSchema: z.ZodObject<{
771
955
  model: z.ZodOptional<z.ZodString>;
772
956
  argument_hint: z.ZodOptional<z.ZodString>;
773
957
  }, "strict", z.ZodTypeAny, {
958
+ agent?: string | undefined;
774
959
  disable_model_invocation?: boolean | undefined;
775
960
  user_invocable?: boolean | undefined;
776
961
  context?: string | undefined;
777
- agent?: string | undefined;
778
962
  model?: string | undefined;
779
963
  argument_hint?: string | undefined;
780
964
  }, {
965
+ agent?: string | undefined;
781
966
  disable_model_invocation?: boolean | undefined;
782
967
  user_invocable?: boolean | undefined;
783
968
  context?: string | undefined;
784
- agent?: string | undefined;
785
969
  model?: string | undefined;
786
970
  argument_hint?: string | undefined;
787
971
  }>>;
@@ -810,6 +994,25 @@ export declare const PlatformConfigSchema: z.ZodObject<{
810
994
  brand_color?: string | undefined;
811
995
  default_prompt?: string | undefined;
812
996
  }>>;
997
+ droid: z.ZodOptional<z.ZodObject<{
998
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
999
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1000
+ context: z.ZodOptional<z.ZodString>;
1001
+ model: z.ZodOptional<z.ZodString>;
1002
+ argument_hint: z.ZodOptional<z.ZodString>;
1003
+ }, "strict", z.ZodTypeAny, {
1004
+ disable_model_invocation?: boolean | undefined;
1005
+ user_invocable?: boolean | undefined;
1006
+ context?: string | undefined;
1007
+ model?: string | undefined;
1008
+ argument_hint?: string | undefined;
1009
+ }, {
1010
+ disable_model_invocation?: boolean | undefined;
1011
+ user_invocable?: boolean | undefined;
1012
+ context?: string | undefined;
1013
+ model?: string | undefined;
1014
+ argument_hint?: string | undefined;
1015
+ }>>;
813
1016
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
814
1017
  claude_code: z.ZodOptional<z.ZodObject<{
815
1018
  disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
@@ -819,17 +1022,17 @@ export declare const PlatformConfigSchema: z.ZodObject<{
819
1022
  model: z.ZodOptional<z.ZodString>;
820
1023
  argument_hint: z.ZodOptional<z.ZodString>;
821
1024
  }, "strict", z.ZodTypeAny, {
1025
+ agent?: string | undefined;
822
1026
  disable_model_invocation?: boolean | undefined;
823
1027
  user_invocable?: boolean | undefined;
824
1028
  context?: string | undefined;
825
- agent?: string | undefined;
826
1029
  model?: string | undefined;
827
1030
  argument_hint?: string | undefined;
828
1031
  }, {
1032
+ agent?: string | undefined;
829
1033
  disable_model_invocation?: boolean | undefined;
830
1034
  user_invocable?: boolean | undefined;
831
1035
  context?: string | undefined;
832
- agent?: string | undefined;
833
1036
  model?: string | undefined;
834
1037
  argument_hint?: string | undefined;
835
1038
  }>>;
@@ -858,6 +1061,25 @@ export declare const PlatformConfigSchema: z.ZodObject<{
858
1061
  brand_color?: string | undefined;
859
1062
  default_prompt?: string | undefined;
860
1063
  }>>;
1064
+ droid: z.ZodOptional<z.ZodObject<{
1065
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
1066
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1067
+ context: z.ZodOptional<z.ZodString>;
1068
+ model: z.ZodOptional<z.ZodString>;
1069
+ argument_hint: z.ZodOptional<z.ZodString>;
1070
+ }, "strict", z.ZodTypeAny, {
1071
+ disable_model_invocation?: boolean | undefined;
1072
+ user_invocable?: boolean | undefined;
1073
+ context?: string | undefined;
1074
+ model?: string | undefined;
1075
+ argument_hint?: string | undefined;
1076
+ }, {
1077
+ disable_model_invocation?: boolean | undefined;
1078
+ user_invocable?: boolean | undefined;
1079
+ context?: string | undefined;
1080
+ model?: string | undefined;
1081
+ argument_hint?: string | undefined;
1082
+ }>>;
861
1083
  }, z.ZodTypeAny, "passthrough">>;
862
1084
  /**
863
1085
  * Skill definition - reusable agent capabilities stored in files
@@ -892,17 +1114,17 @@ export declare const SkillSchema: z.ZodObject<{
892
1114
  model: z.ZodOptional<z.ZodString>;
893
1115
  argument_hint: z.ZodOptional<z.ZodString>;
894
1116
  }, "strict", z.ZodTypeAny, {
1117
+ agent?: string | undefined;
895
1118
  disable_model_invocation?: boolean | undefined;
896
1119
  user_invocable?: boolean | undefined;
897
1120
  context?: string | undefined;
898
- agent?: string | undefined;
899
1121
  model?: string | undefined;
900
1122
  argument_hint?: string | undefined;
901
1123
  }, {
1124
+ agent?: string | undefined;
902
1125
  disable_model_invocation?: boolean | undefined;
903
1126
  user_invocable?: boolean | undefined;
904
1127
  context?: string | undefined;
905
- agent?: string | undefined;
906
1128
  model?: string | undefined;
907
1129
  argument_hint?: string | undefined;
908
1130
  }>>;
@@ -931,6 +1153,25 @@ export declare const SkillSchema: z.ZodObject<{
931
1153
  brand_color?: string | undefined;
932
1154
  default_prompt?: string | undefined;
933
1155
  }>>;
1156
+ droid: z.ZodOptional<z.ZodObject<{
1157
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
1158
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1159
+ context: z.ZodOptional<z.ZodString>;
1160
+ model: z.ZodOptional<z.ZodString>;
1161
+ argument_hint: z.ZodOptional<z.ZodString>;
1162
+ }, "strict", z.ZodTypeAny, {
1163
+ disable_model_invocation?: boolean | undefined;
1164
+ user_invocable?: boolean | undefined;
1165
+ context?: string | undefined;
1166
+ model?: string | undefined;
1167
+ argument_hint?: string | undefined;
1168
+ }, {
1169
+ disable_model_invocation?: boolean | undefined;
1170
+ user_invocable?: boolean | undefined;
1171
+ context?: string | undefined;
1172
+ model?: string | undefined;
1173
+ argument_hint?: string | undefined;
1174
+ }>>;
934
1175
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
935
1176
  claude_code: z.ZodOptional<z.ZodObject<{
936
1177
  disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
@@ -940,17 +1181,17 @@ export declare const SkillSchema: z.ZodObject<{
940
1181
  model: z.ZodOptional<z.ZodString>;
941
1182
  argument_hint: z.ZodOptional<z.ZodString>;
942
1183
  }, "strict", z.ZodTypeAny, {
1184
+ agent?: string | undefined;
943
1185
  disable_model_invocation?: boolean | undefined;
944
1186
  user_invocable?: boolean | undefined;
945
1187
  context?: string | undefined;
946
- agent?: string | undefined;
947
1188
  model?: string | undefined;
948
1189
  argument_hint?: string | undefined;
949
1190
  }, {
1191
+ agent?: string | undefined;
950
1192
  disable_model_invocation?: boolean | undefined;
951
1193
  user_invocable?: boolean | undefined;
952
1194
  context?: string | undefined;
953
- agent?: string | undefined;
954
1195
  model?: string | undefined;
955
1196
  argument_hint?: string | undefined;
956
1197
  }>>;
@@ -979,6 +1220,25 @@ export declare const SkillSchema: z.ZodObject<{
979
1220
  brand_color?: string | undefined;
980
1221
  default_prompt?: string | undefined;
981
1222
  }>>;
1223
+ droid: z.ZodOptional<z.ZodObject<{
1224
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
1225
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1226
+ context: z.ZodOptional<z.ZodString>;
1227
+ model: z.ZodOptional<z.ZodString>;
1228
+ argument_hint: z.ZodOptional<z.ZodString>;
1229
+ }, "strict", z.ZodTypeAny, {
1230
+ disable_model_invocation?: boolean | undefined;
1231
+ user_invocable?: boolean | undefined;
1232
+ context?: string | undefined;
1233
+ model?: string | undefined;
1234
+ argument_hint?: string | undefined;
1235
+ }, {
1236
+ disable_model_invocation?: boolean | undefined;
1237
+ user_invocable?: boolean | undefined;
1238
+ context?: string | undefined;
1239
+ model?: string | undefined;
1240
+ argument_hint?: string | undefined;
1241
+ }>>;
982
1242
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
983
1243
  claude_code: z.ZodOptional<z.ZodObject<{
984
1244
  disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
@@ -988,17 +1248,17 @@ export declare const SkillSchema: z.ZodObject<{
988
1248
  model: z.ZodOptional<z.ZodString>;
989
1249
  argument_hint: z.ZodOptional<z.ZodString>;
990
1250
  }, "strict", z.ZodTypeAny, {
1251
+ agent?: string | undefined;
991
1252
  disable_model_invocation?: boolean | undefined;
992
1253
  user_invocable?: boolean | undefined;
993
1254
  context?: string | undefined;
994
- agent?: string | undefined;
995
1255
  model?: string | undefined;
996
1256
  argument_hint?: string | undefined;
997
1257
  }, {
1258
+ agent?: string | undefined;
998
1259
  disable_model_invocation?: boolean | undefined;
999
1260
  user_invocable?: boolean | undefined;
1000
1261
  context?: string | undefined;
1001
- agent?: string | undefined;
1002
1262
  model?: string | undefined;
1003
1263
  argument_hint?: string | undefined;
1004
1264
  }>>;
@@ -1027,6 +1287,25 @@ export declare const SkillSchema: z.ZodObject<{
1027
1287
  brand_color?: string | undefined;
1028
1288
  default_prompt?: string | undefined;
1029
1289
  }>>;
1290
+ droid: z.ZodOptional<z.ZodObject<{
1291
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
1292
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1293
+ context: z.ZodOptional<z.ZodString>;
1294
+ model: z.ZodOptional<z.ZodString>;
1295
+ argument_hint: z.ZodOptional<z.ZodString>;
1296
+ }, "strict", z.ZodTypeAny, {
1297
+ disable_model_invocation?: boolean | undefined;
1298
+ user_invocable?: boolean | undefined;
1299
+ context?: string | undefined;
1300
+ model?: string | undefined;
1301
+ argument_hint?: string | undefined;
1302
+ }, {
1303
+ disable_model_invocation?: boolean | undefined;
1304
+ user_invocable?: boolean | undefined;
1305
+ context?: string | undefined;
1306
+ model?: string | undefined;
1307
+ argument_hint?: string | undefined;
1308
+ }>>;
1030
1309
  }, z.ZodTypeAny, "passthrough">>>;
1031
1310
  }, "strip", z.ZodTypeAny, {
1032
1311
  name: string;
@@ -1052,17 +1331,17 @@ export declare const SkillSchema: z.ZodObject<{
1052
1331
  model: z.ZodOptional<z.ZodString>;
1053
1332
  argument_hint: z.ZodOptional<z.ZodString>;
1054
1333
  }, "strict", z.ZodTypeAny, {
1334
+ agent?: string | undefined;
1055
1335
  disable_model_invocation?: boolean | undefined;
1056
1336
  user_invocable?: boolean | undefined;
1057
1337
  context?: string | undefined;
1058
- agent?: string | undefined;
1059
1338
  model?: string | undefined;
1060
1339
  argument_hint?: string | undefined;
1061
1340
  }, {
1341
+ agent?: string | undefined;
1062
1342
  disable_model_invocation?: boolean | undefined;
1063
1343
  user_invocable?: boolean | undefined;
1064
1344
  context?: string | undefined;
1065
- agent?: string | undefined;
1066
1345
  model?: string | undefined;
1067
1346
  argument_hint?: string | undefined;
1068
1347
  }>>;
@@ -1091,6 +1370,25 @@ export declare const SkillSchema: z.ZodObject<{
1091
1370
  brand_color?: string | undefined;
1092
1371
  default_prompt?: string | undefined;
1093
1372
  }>>;
1373
+ droid: z.ZodOptional<z.ZodObject<{
1374
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
1375
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1376
+ context: z.ZodOptional<z.ZodString>;
1377
+ model: z.ZodOptional<z.ZodString>;
1378
+ argument_hint: z.ZodOptional<z.ZodString>;
1379
+ }, "strict", z.ZodTypeAny, {
1380
+ disable_model_invocation?: boolean | undefined;
1381
+ user_invocable?: boolean | undefined;
1382
+ context?: string | undefined;
1383
+ model?: string | undefined;
1384
+ argument_hint?: string | undefined;
1385
+ }, {
1386
+ disable_model_invocation?: boolean | undefined;
1387
+ user_invocable?: boolean | undefined;
1388
+ context?: string | undefined;
1389
+ model?: string | undefined;
1390
+ argument_hint?: string | undefined;
1391
+ }>>;
1094
1392
  }, z.ZodTypeAny, "passthrough"> | undefined;
1095
1393
  }, {
1096
1394
  name: string;
@@ -1116,17 +1414,17 @@ export declare const SkillSchema: z.ZodObject<{
1116
1414
  model: z.ZodOptional<z.ZodString>;
1117
1415
  argument_hint: z.ZodOptional<z.ZodString>;
1118
1416
  }, "strict", z.ZodTypeAny, {
1417
+ agent?: string | undefined;
1119
1418
  disable_model_invocation?: boolean | undefined;
1120
1419
  user_invocable?: boolean | undefined;
1121
1420
  context?: string | undefined;
1122
- agent?: string | undefined;
1123
1421
  model?: string | undefined;
1124
1422
  argument_hint?: string | undefined;
1125
1423
  }, {
1424
+ agent?: string | undefined;
1126
1425
  disable_model_invocation?: boolean | undefined;
1127
1426
  user_invocable?: boolean | undefined;
1128
1427
  context?: string | undefined;
1129
- agent?: string | undefined;
1130
1428
  model?: string | undefined;
1131
1429
  argument_hint?: string | undefined;
1132
1430
  }>>;
@@ -1155,7 +1453,26 @@ export declare const SkillSchema: z.ZodObject<{
1155
1453
  brand_color?: string | undefined;
1156
1454
  default_prompt?: string | undefined;
1157
1455
  }>>;
1158
- }, z.ZodTypeAny, "passthrough"> | undefined;
1456
+ droid: z.ZodOptional<z.ZodObject<{
1457
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
1458
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
1459
+ context: z.ZodOptional<z.ZodString>;
1460
+ model: z.ZodOptional<z.ZodString>;
1461
+ argument_hint: z.ZodOptional<z.ZodString>;
1462
+ }, "strict", z.ZodTypeAny, {
1463
+ disable_model_invocation?: boolean | undefined;
1464
+ user_invocable?: boolean | undefined;
1465
+ context?: string | undefined;
1466
+ model?: string | undefined;
1467
+ argument_hint?: string | undefined;
1468
+ }, {
1469
+ disable_model_invocation?: boolean | undefined;
1470
+ user_invocable?: boolean | undefined;
1471
+ context?: string | undefined;
1472
+ model?: string | undefined;
1473
+ argument_hint?: string | undefined;
1474
+ }>>;
1475
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1159
1476
  }>;
1160
1477
  /**
1161
1478
  * Session context schema - ephemeral session state
@@ -1166,13 +1483,13 @@ export declare const SessionContextSchema: z.ZodObject<{
1166
1483
  open_questions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1167
1484
  updated_at: z.ZodUnion<[z.ZodString, z.ZodString]>;
1168
1485
  }, "strip", z.ZodTypeAny, {
1486
+ updated_at: string;
1169
1487
  focus: string | null;
1170
1488
  threads: string[];
1171
1489
  open_questions: string[];
1172
- updated_at: string;
1173
1490
  }, {
1174
- focus: string | null;
1175
1491
  updated_at: string;
1492
+ focus: string | null;
1176
1493
  threads?: string[] | undefined;
1177
1494
  open_questions?: string[] | undefined;
1178
1495
  }>;
@@ -1193,7 +1510,7 @@ export declare const StepResultSchema: z.ZodObject<{
1193
1510
  notes: z.ZodOptional<z.ZodString>;
1194
1511
  inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1195
1512
  }, "strip", z.ZodTypeAny, {
1196
- status: "completed" | "skipped" | "failed";
1513
+ status: "completed" | "failed" | "skipped";
1197
1514
  step_index: number;
1198
1515
  started_at: string;
1199
1516
  completed_at: string;
@@ -1202,7 +1519,7 @@ export declare const StepResultSchema: z.ZodObject<{
1202
1519
  exit_confirmed?: boolean | undefined;
1203
1520
  notes?: string | undefined;
1204
1521
  }, {
1205
- status: "completed" | "skipped" | "failed";
1522
+ status: "completed" | "failed" | "skipped";
1206
1523
  step_index: number;
1207
1524
  started_at: string;
1208
1525
  completed_at: string;
@@ -1241,7 +1558,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
1241
1558
  notes: z.ZodOptional<z.ZodString>;
1242
1559
  inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1243
1560
  }, "strip", z.ZodTypeAny, {
1244
- status: "completed" | "skipped" | "failed";
1561
+ status: "completed" | "failed" | "skipped";
1245
1562
  step_index: number;
1246
1563
  started_at: string;
1247
1564
  completed_at: string;
@@ -1250,7 +1567,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
1250
1567
  exit_confirmed?: boolean | undefined;
1251
1568
  notes?: string | undefined;
1252
1569
  }, {
1253
- status: "completed" | "skipped" | "failed";
1570
+ status: "completed" | "failed" | "skipped";
1254
1571
  step_index: number;
1255
1572
  started_at: string;
1256
1573
  completed_at: string;
@@ -1271,7 +1588,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
1271
1588
  current_step: number;
1272
1589
  total_steps: number;
1273
1590
  step_results: {
1274
- status: "completed" | "skipped" | "failed";
1591
+ status: "completed" | "failed" | "skipped";
1275
1592
  step_index: number;
1276
1593
  started_at: string;
1277
1594
  completed_at: string;
@@ -1280,11 +1597,11 @@ export declare const WorkflowRunSchema: z.ZodObject<{
1280
1597
  exit_confirmed?: boolean | undefined;
1281
1598
  notes?: string | undefined;
1282
1599
  }[];
1600
+ task_ref?: string | undefined;
1283
1601
  completed_at?: string | undefined;
1284
1602
  paused_at?: string | undefined;
1285
1603
  initiated_by?: string | undefined;
1286
1604
  abort_reason?: string | undefined;
1287
- task_ref?: string | undefined;
1288
1605
  result?: "success" | "no_work_available" | "early_exit" | undefined;
1289
1606
  }, {
1290
1607
  status: "aborted" | "completed" | "active" | "paused";
@@ -1293,10 +1610,11 @@ export declare const WorkflowRunSchema: z.ZodObject<{
1293
1610
  started_at: string;
1294
1611
  current_step: number;
1295
1612
  total_steps: number;
1613
+ task_ref?: string | undefined;
1296
1614
  completed_at?: string | undefined;
1297
1615
  paused_at?: string | undefined;
1298
1616
  step_results?: {
1299
- status: "completed" | "skipped" | "failed";
1617
+ status: "completed" | "failed" | "skipped";
1300
1618
  step_index: number;
1301
1619
  started_at: string;
1302
1620
  completed_at: string;
@@ -1307,7 +1625,6 @@ export declare const WorkflowRunSchema: z.ZodObject<{
1307
1625
  }[] | undefined;
1308
1626
  initiated_by?: string | undefined;
1309
1627
  abort_reason?: string | undefined;
1310
- task_ref?: string | undefined;
1311
1628
  result?: "success" | "no_work_available" | "early_exit" | undefined;
1312
1629
  }>;
1313
1630
  /**
@@ -1334,7 +1651,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1334
1651
  notes: z.ZodOptional<z.ZodString>;
1335
1652
  inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1336
1653
  }, "strip", z.ZodTypeAny, {
1337
- status: "completed" | "skipped" | "failed";
1654
+ status: "completed" | "failed" | "skipped";
1338
1655
  step_index: number;
1339
1656
  started_at: string;
1340
1657
  completed_at: string;
@@ -1343,7 +1660,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1343
1660
  exit_confirmed?: boolean | undefined;
1344
1661
  notes?: string | undefined;
1345
1662
  }, {
1346
- status: "completed" | "skipped" | "failed";
1663
+ status: "completed" | "failed" | "skipped";
1347
1664
  step_index: number;
1348
1665
  started_at: string;
1349
1666
  completed_at: string;
@@ -1364,7 +1681,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1364
1681
  current_step: number;
1365
1682
  total_steps: number;
1366
1683
  step_results: {
1367
- status: "completed" | "skipped" | "failed";
1684
+ status: "completed" | "failed" | "skipped";
1368
1685
  step_index: number;
1369
1686
  started_at: string;
1370
1687
  completed_at: string;
@@ -1373,11 +1690,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1373
1690
  exit_confirmed?: boolean | undefined;
1374
1691
  notes?: string | undefined;
1375
1692
  }[];
1693
+ task_ref?: string | undefined;
1376
1694
  completed_at?: string | undefined;
1377
1695
  paused_at?: string | undefined;
1378
1696
  initiated_by?: string | undefined;
1379
1697
  abort_reason?: string | undefined;
1380
- task_ref?: string | undefined;
1381
1698
  result?: "success" | "no_work_available" | "early_exit" | undefined;
1382
1699
  }, {
1383
1700
  status: "aborted" | "completed" | "active" | "paused";
@@ -1386,10 +1703,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1386
1703
  started_at: string;
1387
1704
  current_step: number;
1388
1705
  total_steps: number;
1706
+ task_ref?: string | undefined;
1389
1707
  completed_at?: string | undefined;
1390
1708
  paused_at?: string | undefined;
1391
1709
  step_results?: {
1392
- status: "completed" | "skipped" | "failed";
1710
+ status: "completed" | "failed" | "skipped";
1393
1711
  step_index: number;
1394
1712
  started_at: string;
1395
1713
  completed_at: string;
@@ -1400,7 +1718,6 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1400
1718
  }[] | undefined;
1401
1719
  initiated_by?: string | undefined;
1402
1720
  abort_reason?: string | undefined;
1403
- task_ref?: string | undefined;
1404
1721
  result?: "success" | "no_work_available" | "early_exit" | undefined;
1405
1722
  }>, "many">>;
1406
1723
  }, "strip", z.ZodTypeAny, {
@@ -1413,7 +1730,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1413
1730
  current_step: number;
1414
1731
  total_steps: number;
1415
1732
  step_results: {
1416
- status: "completed" | "skipped" | "failed";
1733
+ status: "completed" | "failed" | "skipped";
1417
1734
  step_index: number;
1418
1735
  started_at: string;
1419
1736
  completed_at: string;
@@ -1422,11 +1739,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1422
1739
  exit_confirmed?: boolean | undefined;
1423
1740
  notes?: string | undefined;
1424
1741
  }[];
1742
+ task_ref?: string | undefined;
1425
1743
  completed_at?: string | undefined;
1426
1744
  paused_at?: string | undefined;
1427
1745
  initiated_by?: string | undefined;
1428
1746
  abort_reason?: string | undefined;
1429
- task_ref?: string | undefined;
1430
1747
  result?: "success" | "no_work_available" | "early_exit" | undefined;
1431
1748
  }[];
1432
1749
  }, {
@@ -1438,10 +1755,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1438
1755
  started_at: string;
1439
1756
  current_step: number;
1440
1757
  total_steps: number;
1758
+ task_ref?: string | undefined;
1441
1759
  completed_at?: string | undefined;
1442
1760
  paused_at?: string | undefined;
1443
1761
  step_results?: {
1444
- status: "completed" | "skipped" | "failed";
1762
+ status: "completed" | "failed" | "skipped";
1445
1763
  step_index: number;
1446
1764
  started_at: string;
1447
1765
  completed_at: string;
@@ -1452,7 +1770,6 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
1452
1770
  }[] | undefined;
1453
1771
  initiated_by?: string | undefined;
1454
1772
  abort_reason?: string | undefined;
1455
- task_ref?: string | undefined;
1456
1773
  result?: "success" | "no_work_available" | "early_exit" | undefined;
1457
1774
  }[] | undefined;
1458
1775
  }>;
@@ -1516,13 +1833,19 @@ export declare const MetaManifestSchema: z.ZodObject<{
1516
1833
  skills: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1517
1834
  budget: z.ZodOptional<z.ZodObject<{
1518
1835
  max_tasks: z.ZodOptional<z.ZodNumber>;
1836
+ max_retries: z.ZodOptional<z.ZodNumber>;
1519
1837
  timeout_minutes: z.ZodOptional<z.ZodNumber>;
1838
+ initial_response_timeout_seconds: z.ZodOptional<z.ZodNumber>;
1520
1839
  }, "strip", z.ZodTypeAny, {
1521
1840
  max_tasks?: number | undefined;
1841
+ max_retries?: number | undefined;
1522
1842
  timeout_minutes?: number | undefined;
1843
+ initial_response_timeout_seconds?: number | undefined;
1523
1844
  }, {
1524
1845
  max_tasks?: number | undefined;
1846
+ max_retries?: number | undefined;
1525
1847
  timeout_minutes?: number | undefined;
1848
+ initial_response_timeout_seconds?: number | undefined;
1526
1849
  }>>;
1527
1850
  concurrency: z.ZodDefault<z.ZodObject<{
1528
1851
  max_concurrent: z.ZodDefault<z.ZodNumber>;
@@ -1531,6 +1854,48 @@ export declare const MetaManifestSchema: z.ZodObject<{
1531
1854
  }, {
1532
1855
  max_concurrent?: number | undefined;
1533
1856
  }>>;
1857
+ bootstrap: z.ZodOptional<z.ZodObject<{
1858
+ steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
1859
+ run: z.ZodString;
1860
+ name: z.ZodOptional<z.ZodString>;
1861
+ roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
1862
+ idempotent: z.ZodOptional<z.ZodBoolean>;
1863
+ allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
1864
+ reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
1865
+ }, "strip", z.ZodTypeAny, {
1866
+ run: string;
1867
+ name?: string | undefined;
1868
+ idempotent?: boolean | undefined;
1869
+ roles?: ("worker" | "reviewer")[] | undefined;
1870
+ allow_tracked_changes?: boolean | undefined;
1871
+ reviewer_rerun_allowed?: boolean | undefined;
1872
+ }, {
1873
+ run: string;
1874
+ name?: string | undefined;
1875
+ idempotent?: boolean | undefined;
1876
+ roles?: ("worker" | "reviewer")[] | undefined;
1877
+ allow_tracked_changes?: boolean | undefined;
1878
+ reviewer_rerun_allowed?: boolean | undefined;
1879
+ }>, "many">>;
1880
+ }, "strip", z.ZodTypeAny, {
1881
+ steps: {
1882
+ run: string;
1883
+ name?: string | undefined;
1884
+ idempotent?: boolean | undefined;
1885
+ roles?: ("worker" | "reviewer")[] | undefined;
1886
+ allow_tracked_changes?: boolean | undefined;
1887
+ reviewer_rerun_allowed?: boolean | undefined;
1888
+ }[];
1889
+ }, {
1890
+ steps?: {
1891
+ run: string;
1892
+ name?: string | undefined;
1893
+ idempotent?: boolean | undefined;
1894
+ roles?: ("worker" | "reviewer")[] | undefined;
1895
+ allow_tracked_changes?: boolean | undefined;
1896
+ reviewer_rerun_allowed?: boolean | undefined;
1897
+ }[] | undefined;
1898
+ }>>;
1534
1899
  auto_approve: z.ZodDefault<z.ZodBoolean>;
1535
1900
  prompt_template: z.ZodOptional<z.ZodString>;
1536
1901
  /** Automation eligibility for agent list filtering (eligible|ineligible) */
@@ -1539,11 +1904,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
1539
1904
  tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
1540
1905
  }, "strip", z.ZodTypeAny, {
1541
1906
  name: string;
1542
- _ulid: string;
1543
- id: string;
1544
- capabilities: string[];
1545
- tools: string[];
1546
- conventions: string[];
1547
1907
  dispatch: {
1548
1908
  on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
1549
1909
  filter?: {
@@ -1552,11 +1912,26 @@ export declare const MetaManifestSchema: z.ZodObject<{
1552
1912
  priority?: number | undefined;
1553
1913
  } | undefined;
1554
1914
  }[];
1915
+ _ulid: string;
1916
+ id: string;
1917
+ capabilities: string[];
1918
+ tools: string[];
1919
+ conventions: string[];
1555
1920
  skills: string[];
1556
1921
  concurrency: {
1557
1922
  max_concurrent: number;
1558
1923
  };
1559
1924
  auto_approve: boolean;
1925
+ bootstrap?: {
1926
+ steps: {
1927
+ run: string;
1928
+ name?: string | undefined;
1929
+ idempotent?: boolean | undefined;
1930
+ roles?: ("worker" | "reviewer")[] | undefined;
1931
+ allow_tracked_changes?: boolean | undefined;
1932
+ reviewer_rerun_allowed?: boolean | undefined;
1933
+ }[];
1934
+ } | undefined;
1560
1935
  tags?: string[] | undefined;
1561
1936
  automation?: "eligible" | "ineligible" | undefined;
1562
1937
  description?: string | undefined;
@@ -1568,13 +1943,33 @@ export declare const MetaManifestSchema: z.ZodObject<{
1568
1943
  adapter?: string | undefined;
1569
1944
  budget?: {
1570
1945
  max_tasks?: number | undefined;
1946
+ max_retries?: number | undefined;
1571
1947
  timeout_minutes?: number | undefined;
1948
+ initial_response_timeout_seconds?: number | undefined;
1572
1949
  } | undefined;
1573
1950
  prompt_template?: string | undefined;
1574
1951
  }, {
1575
1952
  name: string;
1576
1953
  _ulid: string;
1577
1954
  id: string;
1955
+ dispatch?: {
1956
+ on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
1957
+ filter?: {
1958
+ tags?: string[] | undefined;
1959
+ automation?: "eligible" | "ineligible" | undefined;
1960
+ priority?: number | undefined;
1961
+ } | undefined;
1962
+ }[] | undefined;
1963
+ bootstrap?: {
1964
+ steps?: {
1965
+ run: string;
1966
+ name?: string | undefined;
1967
+ idempotent?: boolean | undefined;
1968
+ roles?: ("worker" | "reviewer")[] | undefined;
1969
+ allow_tracked_changes?: boolean | undefined;
1970
+ reviewer_rerun_allowed?: boolean | undefined;
1971
+ }[] | undefined;
1972
+ } | undefined;
1578
1973
  tags?: string[] | undefined;
1579
1974
  automation?: "eligible" | "ineligible" | undefined;
1580
1975
  description?: string | undefined;
@@ -1587,18 +1982,12 @@ export declare const MetaManifestSchema: z.ZodObject<{
1587
1982
  } | undefined;
1588
1983
  conventions?: string[] | undefined;
1589
1984
  adapter?: string | undefined;
1590
- dispatch?: {
1591
- on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
1592
- filter?: {
1593
- tags?: string[] | undefined;
1594
- automation?: "eligible" | "ineligible" | undefined;
1595
- priority?: number | undefined;
1596
- } | undefined;
1597
- }[] | undefined;
1598
1985
  skills?: string[] | undefined;
1599
1986
  budget?: {
1600
1987
  max_tasks?: number | undefined;
1988
+ max_retries?: number | undefined;
1601
1989
  timeout_minutes?: number | undefined;
1990
+ initial_response_timeout_seconds?: number | undefined;
1602
1991
  } | undefined;
1603
1992
  concurrency?: {
1604
1993
  max_concurrent?: number | undefined;
@@ -1684,9 +2073,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
1684
2073
  based_on: z.ZodOptional<z.ZodString>;
1685
2074
  tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
1686
2075
  }, "strip", z.ZodTypeAny, {
1687
- _ulid: string;
1688
- id: string;
1689
- trigger: string;
1690
2076
  steps: {
1691
2077
  content: string;
1692
2078
  type: "decision" | "check" | "action";
@@ -1705,6 +2091,9 @@ export declare const MetaManifestSchema: z.ZodObject<{
1705
2091
  required?: boolean | undefined;
1706
2092
  }[] | undefined;
1707
2093
  }[];
2094
+ _ulid: string;
2095
+ id: string;
2096
+ trigger: string;
1708
2097
  tags?: string[] | undefined;
1709
2098
  description?: string | undefined;
1710
2099
  mode?: "interactive" | "loop" | undefined;
@@ -1714,9 +2103,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
1714
2103
  _ulid: string;
1715
2104
  id: string;
1716
2105
  trigger: string;
1717
- tags?: string[] | undefined;
1718
- description?: string | undefined;
1719
- mode?: "interactive" | "loop" | undefined;
1720
2106
  steps?: {
1721
2107
  content: string;
1722
2108
  type: "decision" | "check" | "action";
@@ -1735,6 +2121,9 @@ export declare const MetaManifestSchema: z.ZodObject<{
1735
2121
  required?: boolean | undefined;
1736
2122
  }[] | undefined;
1737
2123
  }[] | undefined;
2124
+ tags?: string[] | undefined;
2125
+ description?: string | undefined;
2126
+ mode?: "interactive" | "loop" | undefined;
1738
2127
  enforcement?: "advisory" | "strict" | undefined;
1739
2128
  based_on?: string | undefined;
1740
2129
  }>, "many">>;
@@ -1827,8 +2216,8 @@ export declare const MetaManifestSchema: z.ZodObject<{
1827
2216
  }, "strip", z.ZodTypeAny, {
1828
2217
  content: string;
1829
2218
  type: "friction" | "success" | "question" | "idea";
1830
- _ulid: string;
1831
2219
  created_at: string;
2220
+ _ulid: string;
1832
2221
  resolved: boolean;
1833
2222
  workflow_ref?: string | undefined;
1834
2223
  author?: string | undefined;
@@ -1839,8 +2228,8 @@ export declare const MetaManifestSchema: z.ZodObject<{
1839
2228
  }, {
1840
2229
  content: string;
1841
2230
  type: "friction" | "success" | "question" | "idea";
1842
- _ulid: string;
1843
2231
  created_at: string;
2232
+ _ulid: string;
1844
2233
  workflow_ref?: string | undefined;
1845
2234
  author?: string | undefined;
1846
2235
  resolved?: boolean | undefined;
@@ -1873,17 +2262,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
1873
2262
  model: z.ZodOptional<z.ZodString>;
1874
2263
  argument_hint: z.ZodOptional<z.ZodString>;
1875
2264
  }, "strict", z.ZodTypeAny, {
2265
+ agent?: string | undefined;
1876
2266
  disable_model_invocation?: boolean | undefined;
1877
2267
  user_invocable?: boolean | undefined;
1878
2268
  context?: string | undefined;
1879
- agent?: string | undefined;
1880
2269
  model?: string | undefined;
1881
2270
  argument_hint?: string | undefined;
1882
2271
  }, {
2272
+ agent?: string | undefined;
1883
2273
  disable_model_invocation?: boolean | undefined;
1884
2274
  user_invocable?: boolean | undefined;
1885
2275
  context?: string | undefined;
1886
- agent?: string | undefined;
1887
2276
  model?: string | undefined;
1888
2277
  argument_hint?: string | undefined;
1889
2278
  }>>;
@@ -1912,6 +2301,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
1912
2301
  brand_color?: string | undefined;
1913
2302
  default_prompt?: string | undefined;
1914
2303
  }>>;
2304
+ droid: z.ZodOptional<z.ZodObject<{
2305
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2306
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2307
+ context: z.ZodOptional<z.ZodString>;
2308
+ model: z.ZodOptional<z.ZodString>;
2309
+ argument_hint: z.ZodOptional<z.ZodString>;
2310
+ }, "strict", z.ZodTypeAny, {
2311
+ disable_model_invocation?: boolean | undefined;
2312
+ user_invocable?: boolean | undefined;
2313
+ context?: string | undefined;
2314
+ model?: string | undefined;
2315
+ argument_hint?: string | undefined;
2316
+ }, {
2317
+ disable_model_invocation?: boolean | undefined;
2318
+ user_invocable?: boolean | undefined;
2319
+ context?: string | undefined;
2320
+ model?: string | undefined;
2321
+ argument_hint?: string | undefined;
2322
+ }>>;
1915
2323
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1916
2324
  claude_code: z.ZodOptional<z.ZodObject<{
1917
2325
  disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
@@ -1921,17 +2329,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
1921
2329
  model: z.ZodOptional<z.ZodString>;
1922
2330
  argument_hint: z.ZodOptional<z.ZodString>;
1923
2331
  }, "strict", z.ZodTypeAny, {
2332
+ agent?: string | undefined;
1924
2333
  disable_model_invocation?: boolean | undefined;
1925
2334
  user_invocable?: boolean | undefined;
1926
2335
  context?: string | undefined;
1927
- agent?: string | undefined;
1928
2336
  model?: string | undefined;
1929
2337
  argument_hint?: string | undefined;
1930
2338
  }, {
2339
+ agent?: string | undefined;
1931
2340
  disable_model_invocation?: boolean | undefined;
1932
2341
  user_invocable?: boolean | undefined;
1933
2342
  context?: string | undefined;
1934
- agent?: string | undefined;
1935
2343
  model?: string | undefined;
1936
2344
  argument_hint?: string | undefined;
1937
2345
  }>>;
@@ -1960,6 +2368,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
1960
2368
  brand_color?: string | undefined;
1961
2369
  default_prompt?: string | undefined;
1962
2370
  }>>;
2371
+ droid: z.ZodOptional<z.ZodObject<{
2372
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2373
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2374
+ context: z.ZodOptional<z.ZodString>;
2375
+ model: z.ZodOptional<z.ZodString>;
2376
+ argument_hint: z.ZodOptional<z.ZodString>;
2377
+ }, "strict", z.ZodTypeAny, {
2378
+ disable_model_invocation?: boolean | undefined;
2379
+ user_invocable?: boolean | undefined;
2380
+ context?: string | undefined;
2381
+ model?: string | undefined;
2382
+ argument_hint?: string | undefined;
2383
+ }, {
2384
+ disable_model_invocation?: boolean | undefined;
2385
+ user_invocable?: boolean | undefined;
2386
+ context?: string | undefined;
2387
+ model?: string | undefined;
2388
+ argument_hint?: string | undefined;
2389
+ }>>;
1963
2390
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1964
2391
  claude_code: z.ZodOptional<z.ZodObject<{
1965
2392
  disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
@@ -1969,17 +2396,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
1969
2396
  model: z.ZodOptional<z.ZodString>;
1970
2397
  argument_hint: z.ZodOptional<z.ZodString>;
1971
2398
  }, "strict", z.ZodTypeAny, {
2399
+ agent?: string | undefined;
1972
2400
  disable_model_invocation?: boolean | undefined;
1973
2401
  user_invocable?: boolean | undefined;
1974
2402
  context?: string | undefined;
1975
- agent?: string | undefined;
1976
2403
  model?: string | undefined;
1977
2404
  argument_hint?: string | undefined;
1978
2405
  }, {
2406
+ agent?: string | undefined;
1979
2407
  disable_model_invocation?: boolean | undefined;
1980
2408
  user_invocable?: boolean | undefined;
1981
2409
  context?: string | undefined;
1982
- agent?: string | undefined;
1983
2410
  model?: string | undefined;
1984
2411
  argument_hint?: string | undefined;
1985
2412
  }>>;
@@ -2008,6 +2435,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
2008
2435
  brand_color?: string | undefined;
2009
2436
  default_prompt?: string | undefined;
2010
2437
  }>>;
2438
+ droid: z.ZodOptional<z.ZodObject<{
2439
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2440
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2441
+ context: z.ZodOptional<z.ZodString>;
2442
+ model: z.ZodOptional<z.ZodString>;
2443
+ argument_hint: z.ZodOptional<z.ZodString>;
2444
+ }, "strict", z.ZodTypeAny, {
2445
+ disable_model_invocation?: boolean | undefined;
2446
+ user_invocable?: boolean | undefined;
2447
+ context?: string | undefined;
2448
+ model?: string | undefined;
2449
+ argument_hint?: string | undefined;
2450
+ }, {
2451
+ disable_model_invocation?: boolean | undefined;
2452
+ user_invocable?: boolean | undefined;
2453
+ context?: string | undefined;
2454
+ model?: string | undefined;
2455
+ argument_hint?: string | undefined;
2456
+ }>>;
2011
2457
  }, z.ZodTypeAny, "passthrough">>>;
2012
2458
  }, "strip", z.ZodTypeAny, {
2013
2459
  name: string;
@@ -2033,17 +2479,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
2033
2479
  model: z.ZodOptional<z.ZodString>;
2034
2480
  argument_hint: z.ZodOptional<z.ZodString>;
2035
2481
  }, "strict", z.ZodTypeAny, {
2482
+ agent?: string | undefined;
2036
2483
  disable_model_invocation?: boolean | undefined;
2037
2484
  user_invocable?: boolean | undefined;
2038
2485
  context?: string | undefined;
2039
- agent?: string | undefined;
2040
2486
  model?: string | undefined;
2041
2487
  argument_hint?: string | undefined;
2042
2488
  }, {
2489
+ agent?: string | undefined;
2043
2490
  disable_model_invocation?: boolean | undefined;
2044
2491
  user_invocable?: boolean | undefined;
2045
2492
  context?: string | undefined;
2046
- agent?: string | undefined;
2047
2493
  model?: string | undefined;
2048
2494
  argument_hint?: string | undefined;
2049
2495
  }>>;
@@ -2072,6 +2518,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
2072
2518
  brand_color?: string | undefined;
2073
2519
  default_prompt?: string | undefined;
2074
2520
  }>>;
2521
+ droid: z.ZodOptional<z.ZodObject<{
2522
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2523
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2524
+ context: z.ZodOptional<z.ZodString>;
2525
+ model: z.ZodOptional<z.ZodString>;
2526
+ argument_hint: z.ZodOptional<z.ZodString>;
2527
+ }, "strict", z.ZodTypeAny, {
2528
+ disable_model_invocation?: boolean | undefined;
2529
+ user_invocable?: boolean | undefined;
2530
+ context?: string | undefined;
2531
+ model?: string | undefined;
2532
+ argument_hint?: string | undefined;
2533
+ }, {
2534
+ disable_model_invocation?: boolean | undefined;
2535
+ user_invocable?: boolean | undefined;
2536
+ context?: string | undefined;
2537
+ model?: string | undefined;
2538
+ argument_hint?: string | undefined;
2539
+ }>>;
2075
2540
  }, z.ZodTypeAny, "passthrough"> | undefined;
2076
2541
  }, {
2077
2542
  name: string;
@@ -2097,17 +2562,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
2097
2562
  model: z.ZodOptional<z.ZodString>;
2098
2563
  argument_hint: z.ZodOptional<z.ZodString>;
2099
2564
  }, "strict", z.ZodTypeAny, {
2565
+ agent?: string | undefined;
2100
2566
  disable_model_invocation?: boolean | undefined;
2101
2567
  user_invocable?: boolean | undefined;
2102
2568
  context?: string | undefined;
2103
- agent?: string | undefined;
2104
2569
  model?: string | undefined;
2105
2570
  argument_hint?: string | undefined;
2106
2571
  }, {
2572
+ agent?: string | undefined;
2107
2573
  disable_model_invocation?: boolean | undefined;
2108
2574
  user_invocable?: boolean | undefined;
2109
2575
  context?: string | undefined;
2110
- agent?: string | undefined;
2111
2576
  model?: string | undefined;
2112
2577
  argument_hint?: string | undefined;
2113
2578
  }>>;
@@ -2136,6 +2601,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
2136
2601
  brand_color?: string | undefined;
2137
2602
  default_prompt?: string | undefined;
2138
2603
  }>>;
2604
+ droid: z.ZodOptional<z.ZodObject<{
2605
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2606
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2607
+ context: z.ZodOptional<z.ZodString>;
2608
+ model: z.ZodOptional<z.ZodString>;
2609
+ argument_hint: z.ZodOptional<z.ZodString>;
2610
+ }, "strict", z.ZodTypeAny, {
2611
+ disable_model_invocation?: boolean | undefined;
2612
+ user_invocable?: boolean | undefined;
2613
+ context?: string | undefined;
2614
+ model?: string | undefined;
2615
+ argument_hint?: string | undefined;
2616
+ }, {
2617
+ disable_model_invocation?: boolean | undefined;
2618
+ user_invocable?: boolean | undefined;
2619
+ context?: string | undefined;
2620
+ model?: string | undefined;
2621
+ argument_hint?: string | undefined;
2622
+ }>>;
2139
2623
  }, z.ZodTypeAny, "passthrough"> | undefined;
2140
2624
  }>, "many">>;
2141
2625
  includes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -2183,17 +2667,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
2183
2667
  model: z.ZodOptional<z.ZodString>;
2184
2668
  argument_hint: z.ZodOptional<z.ZodString>;
2185
2669
  }, "strict", z.ZodTypeAny, {
2670
+ agent?: string | undefined;
2186
2671
  disable_model_invocation?: boolean | undefined;
2187
2672
  user_invocable?: boolean | undefined;
2188
2673
  context?: string | undefined;
2189
- agent?: string | undefined;
2190
2674
  model?: string | undefined;
2191
2675
  argument_hint?: string | undefined;
2192
2676
  }, {
2677
+ agent?: string | undefined;
2193
2678
  disable_model_invocation?: boolean | undefined;
2194
2679
  user_invocable?: boolean | undefined;
2195
2680
  context?: string | undefined;
2196
- agent?: string | undefined;
2197
2681
  model?: string | undefined;
2198
2682
  argument_hint?: string | undefined;
2199
2683
  }>>;
@@ -2222,16 +2706,30 @@ export declare const MetaManifestSchema: z.ZodObject<{
2222
2706
  brand_color?: string | undefined;
2223
2707
  default_prompt?: string | undefined;
2224
2708
  }>>;
2709
+ droid: z.ZodOptional<z.ZodObject<{
2710
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2711
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2712
+ context: z.ZodOptional<z.ZodString>;
2713
+ model: z.ZodOptional<z.ZodString>;
2714
+ argument_hint: z.ZodOptional<z.ZodString>;
2715
+ }, "strict", z.ZodTypeAny, {
2716
+ disable_model_invocation?: boolean | undefined;
2717
+ user_invocable?: boolean | undefined;
2718
+ context?: string | undefined;
2719
+ model?: string | undefined;
2720
+ argument_hint?: string | undefined;
2721
+ }, {
2722
+ disable_model_invocation?: boolean | undefined;
2723
+ user_invocable?: boolean | undefined;
2724
+ context?: string | undefined;
2725
+ model?: string | undefined;
2726
+ argument_hint?: string | undefined;
2727
+ }>>;
2225
2728
  }, z.ZodTypeAny, "passthrough"> | undefined;
2226
2729
  }[];
2227
2730
  kynetic_meta: string;
2228
2731
  agents: {
2229
2732
  name: string;
2230
- _ulid: string;
2231
- id: string;
2232
- capabilities: string[];
2233
- tools: string[];
2234
- conventions: string[];
2235
2733
  dispatch: {
2236
2734
  on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
2237
2735
  filter?: {
@@ -2240,11 +2738,26 @@ export declare const MetaManifestSchema: z.ZodObject<{
2240
2738
  priority?: number | undefined;
2241
2739
  } | undefined;
2242
2740
  }[];
2741
+ _ulid: string;
2742
+ id: string;
2743
+ capabilities: string[];
2744
+ tools: string[];
2745
+ conventions: string[];
2243
2746
  skills: string[];
2244
2747
  concurrency: {
2245
2748
  max_concurrent: number;
2246
2749
  };
2247
2750
  auto_approve: boolean;
2751
+ bootstrap?: {
2752
+ steps: {
2753
+ run: string;
2754
+ name?: string | undefined;
2755
+ idempotent?: boolean | undefined;
2756
+ roles?: ("worker" | "reviewer")[] | undefined;
2757
+ allow_tracked_changes?: boolean | undefined;
2758
+ reviewer_rerun_allowed?: boolean | undefined;
2759
+ }[];
2760
+ } | undefined;
2248
2761
  tags?: string[] | undefined;
2249
2762
  automation?: "eligible" | "ineligible" | undefined;
2250
2763
  description?: string | undefined;
@@ -2256,14 +2769,13 @@ export declare const MetaManifestSchema: z.ZodObject<{
2256
2769
  adapter?: string | undefined;
2257
2770
  budget?: {
2258
2771
  max_tasks?: number | undefined;
2772
+ max_retries?: number | undefined;
2259
2773
  timeout_minutes?: number | undefined;
2774
+ initial_response_timeout_seconds?: number | undefined;
2260
2775
  } | undefined;
2261
2776
  prompt_template?: string | undefined;
2262
2777
  }[];
2263
2778
  workflows: {
2264
- _ulid: string;
2265
- id: string;
2266
- trigger: string;
2267
2779
  steps: {
2268
2780
  content: string;
2269
2781
  type: "decision" | "check" | "action";
@@ -2282,6 +2794,9 @@ export declare const MetaManifestSchema: z.ZodObject<{
2282
2794
  required?: boolean | undefined;
2283
2795
  }[] | undefined;
2284
2796
  }[];
2797
+ _ulid: string;
2798
+ id: string;
2799
+ trigger: string;
2285
2800
  tags?: string[] | undefined;
2286
2801
  description?: string | undefined;
2287
2802
  mode?: "interactive" | "loop" | undefined;
@@ -2291,8 +2806,8 @@ export declare const MetaManifestSchema: z.ZodObject<{
2291
2806
  observations: {
2292
2807
  content: string;
2293
2808
  type: "friction" | "success" | "question" | "idea";
2294
- _ulid: string;
2295
2809
  created_at: string;
2810
+ _ulid: string;
2296
2811
  resolved: boolean;
2297
2812
  workflow_ref?: string | undefined;
2298
2813
  author?: string | undefined;
@@ -2345,17 +2860,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
2345
2860
  model: z.ZodOptional<z.ZodString>;
2346
2861
  argument_hint: z.ZodOptional<z.ZodString>;
2347
2862
  }, "strict", z.ZodTypeAny, {
2863
+ agent?: string | undefined;
2348
2864
  disable_model_invocation?: boolean | undefined;
2349
2865
  user_invocable?: boolean | undefined;
2350
2866
  context?: string | undefined;
2351
- agent?: string | undefined;
2352
2867
  model?: string | undefined;
2353
2868
  argument_hint?: string | undefined;
2354
2869
  }, {
2870
+ agent?: string | undefined;
2355
2871
  disable_model_invocation?: boolean | undefined;
2356
2872
  user_invocable?: boolean | undefined;
2357
2873
  context?: string | undefined;
2358
- agent?: string | undefined;
2359
2874
  model?: string | undefined;
2360
2875
  argument_hint?: string | undefined;
2361
2876
  }>>;
@@ -2384,6 +2899,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
2384
2899
  brand_color?: string | undefined;
2385
2900
  default_prompt?: string | undefined;
2386
2901
  }>>;
2902
+ droid: z.ZodOptional<z.ZodObject<{
2903
+ disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
2904
+ user_invocable: z.ZodOptional<z.ZodBoolean>;
2905
+ context: z.ZodOptional<z.ZodString>;
2906
+ model: z.ZodOptional<z.ZodString>;
2907
+ argument_hint: z.ZodOptional<z.ZodString>;
2908
+ }, "strict", z.ZodTypeAny, {
2909
+ disable_model_invocation?: boolean | undefined;
2910
+ user_invocable?: boolean | undefined;
2911
+ context?: string | undefined;
2912
+ model?: string | undefined;
2913
+ argument_hint?: string | undefined;
2914
+ }, {
2915
+ disable_model_invocation?: boolean | undefined;
2916
+ user_invocable?: boolean | undefined;
2917
+ context?: string | undefined;
2918
+ model?: string | undefined;
2919
+ argument_hint?: string | undefined;
2920
+ }>>;
2387
2921
  }, z.ZodTypeAny, "passthrough"> | undefined;
2388
2922
  }[] | undefined;
2389
2923
  kynetic_meta?: string | undefined;
@@ -2391,6 +2925,24 @@ export declare const MetaManifestSchema: z.ZodObject<{
2391
2925
  name: string;
2392
2926
  _ulid: string;
2393
2927
  id: string;
2928
+ dispatch?: {
2929
+ on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
2930
+ filter?: {
2931
+ tags?: string[] | undefined;
2932
+ automation?: "eligible" | "ineligible" | undefined;
2933
+ priority?: number | undefined;
2934
+ } | undefined;
2935
+ }[] | undefined;
2936
+ bootstrap?: {
2937
+ steps?: {
2938
+ run: string;
2939
+ name?: string | undefined;
2940
+ idempotent?: boolean | undefined;
2941
+ roles?: ("worker" | "reviewer")[] | undefined;
2942
+ allow_tracked_changes?: boolean | undefined;
2943
+ reviewer_rerun_allowed?: boolean | undefined;
2944
+ }[] | undefined;
2945
+ } | undefined;
2394
2946
  tags?: string[] | undefined;
2395
2947
  automation?: "eligible" | "ineligible" | undefined;
2396
2948
  description?: string | undefined;
@@ -2403,18 +2955,12 @@ export declare const MetaManifestSchema: z.ZodObject<{
2403
2955
  } | undefined;
2404
2956
  conventions?: string[] | undefined;
2405
2957
  adapter?: string | undefined;
2406
- dispatch?: {
2407
- on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
2408
- filter?: {
2409
- tags?: string[] | undefined;
2410
- automation?: "eligible" | "ineligible" | undefined;
2411
- priority?: number | undefined;
2412
- } | undefined;
2413
- }[] | undefined;
2414
2958
  skills?: string[] | undefined;
2415
2959
  budget?: {
2416
2960
  max_tasks?: number | undefined;
2961
+ max_retries?: number | undefined;
2417
2962
  timeout_minutes?: number | undefined;
2963
+ initial_response_timeout_seconds?: number | undefined;
2418
2964
  } | undefined;
2419
2965
  concurrency?: {
2420
2966
  max_concurrent?: number | undefined;
@@ -2426,9 +2972,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
2426
2972
  _ulid: string;
2427
2973
  id: string;
2428
2974
  trigger: string;
2429
- tags?: string[] | undefined;
2430
- description?: string | undefined;
2431
- mode?: "interactive" | "loop" | undefined;
2432
2975
  steps?: {
2433
2976
  content: string;
2434
2977
  type: "decision" | "check" | "action";
@@ -2447,14 +2990,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
2447
2990
  required?: boolean | undefined;
2448
2991
  }[] | undefined;
2449
2992
  }[] | undefined;
2993
+ tags?: string[] | undefined;
2994
+ description?: string | undefined;
2995
+ mode?: "interactive" | "loop" | undefined;
2450
2996
  enforcement?: "advisory" | "strict" | undefined;
2451
2997
  based_on?: string | undefined;
2452
2998
  }[] | undefined;
2453
2999
  observations?: {
2454
3000
  content: string;
2455
3001
  type: "friction" | "success" | "question" | "idea";
2456
- _ulid: string;
2457
3002
  created_at: string;
3003
+ _ulid: string;
2458
3004
  workflow_ref?: string | undefined;
2459
3005
  author?: string | undefined;
2460
3006
  resolved?: boolean | undefined;
@@ -2485,6 +3031,7 @@ export type Observation = z.infer<typeof ObservationSchema>;
2485
3031
  export type SkillOrigin = z.infer<typeof SkillOriginSchema>;
2486
3032
  export type ClaudeCodeConfig = z.infer<typeof ClaudeCodeConfigSchema>;
2487
3033
  export type CodexConfig = z.infer<typeof CodexConfigSchema>;
3034
+ export type DroidConfig = z.infer<typeof DroidConfigSchema>;
2488
3035
  export type PlatformConfig = z.infer<typeof PlatformConfigSchema>;
2489
3036
  export type Skill = z.infer<typeof SkillSchema>;
2490
3037
  export type SessionContext = z.infer<typeof SessionContextSchema>;