@llm-dev-ops/agentics-cli 1.4.27 → 1.4.29

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 (1185) hide show
  1. package/dist/agents/repo-agent-runner.d.ts +2 -0
  2. package/dist/agents/repo-agent-runner.d.ts.map +1 -1
  3. package/dist/agents/repo-agent-runner.js +212 -10
  4. package/dist/agents/repo-agent-runner.js.map +1 -1
  5. package/dist/bundled-agents/auto-optimizer-agents/dist/claude.js +5 -2
  6. package/dist/bundled-agents/auto-optimizer-agents/package-lock.json +59 -18
  7. package/dist/bundled-agents/connector-hub-agents/package-lock.json +12 -0
  8. package/dist/bundled-agents/costops-agents/dist/claude.js +5 -2
  9. package/dist/bundled-agents/data-vault-agents/dist/claude.js +5 -2
  10. package/dist/bundled-agents/data-vault-agents/src/claude.ts +71 -0
  11. package/dist/bundled-agents/governance-dashboard-agents/dist/claude.js +5 -2
  12. package/dist/bundled-agents/governance-dashboard-agents/src/claude.ts +71 -0
  13. package/dist/bundled-agents/orchestrator-agents/package-lock.json +12790 -0
  14. package/dist/bundled-agents/platform-agents/dist/claude.js +5 -2
  15. package/dist/bundled-agents/platform-agents/src/claude.ts +5 -2
  16. package/dist/bundled-agents/policy-engine-agents/dist/claude.js +5 -2
  17. package/dist/bundled-agents/policy-engine-agents/package-lock.json +3 -0
  18. package/dist/bundled-agents/policy-engine-agents/src/claude.ts +71 -0
  19. package/dist/cli/index.js +136 -0
  20. package/dist/cli/index.js.map +1 -1
  21. package/dist/commands/agents.d.ts.map +1 -1
  22. package/dist/commands/agents.js +456 -47
  23. package/dist/commands/agents.js.map +1 -1
  24. package/dist/commands/phase2.d.ts +38 -0
  25. package/dist/commands/phase2.d.ts.map +1 -0
  26. package/dist/commands/phase2.js +213 -0
  27. package/dist/commands/phase2.js.map +1 -0
  28. package/dist/commands/phase3.d.ts +38 -0
  29. package/dist/commands/phase3.d.ts.map +1 -0
  30. package/dist/commands/phase3.js +241 -0
  31. package/dist/commands/phase3.js.map +1 -0
  32. package/dist/commands/phase4.d.ts +39 -0
  33. package/dist/commands/phase4.d.ts.map +1 -0
  34. package/dist/commands/phase4.js +258 -0
  35. package/dist/commands/phase4.js.map +1 -0
  36. package/dist/commands/phase5.d.ts +38 -0
  37. package/dist/commands/phase5.d.ts.map +1 -0
  38. package/dist/commands/phase5.js +254 -0
  39. package/dist/commands/phase5.js.map +1 -0
  40. package/dist/commands/phase6.d.ts +41 -0
  41. package/dist/commands/phase6.d.ts.map +1 -0
  42. package/dist/commands/phase6.js +355 -0
  43. package/dist/commands/phase6.js.map +1 -0
  44. package/dist/deps/erp-database-map.d.ts +62 -0
  45. package/dist/deps/erp-database-map.d.ts.map +1 -0
  46. package/dist/deps/erp-database-map.js +244 -0
  47. package/dist/deps/erp-database-map.js.map +1 -0
  48. package/dist/deps/platform-repo-resolver.d.ts +53 -0
  49. package/dist/deps/platform-repo-resolver.d.ts.map +1 -0
  50. package/dist/deps/platform-repo-resolver.js +256 -0
  51. package/dist/deps/platform-repo-resolver.js.map +1 -0
  52. package/dist/deps/repo-errors.d.ts +23 -0
  53. package/dist/deps/repo-errors.d.ts.map +1 -0
  54. package/dist/deps/repo-errors.js +84 -0
  55. package/dist/deps/repo-errors.js.map +1 -0
  56. package/dist/enterprise/integration-registry.d.ts.map +1 -1
  57. package/dist/enterprise/integration-registry.js +90 -0
  58. package/dist/enterprise/integration-registry.js.map +1 -1
  59. package/dist/modules/command-parser.d.ts +1 -1
  60. package/dist/modules/command-parser.d.ts.map +1 -1
  61. package/dist/modules/command-parser.js +7 -0
  62. package/dist/modules/command-parser.js.map +1 -1
  63. package/dist/pipeline/phase2/index.d.ts +16 -0
  64. package/dist/pipeline/phase2/index.d.ts.map +1 -0
  65. package/dist/pipeline/phase2/index.js +15 -0
  66. package/dist/pipeline/phase2/index.js.map +1 -0
  67. package/dist/pipeline/phase2/manifest-writer.d.ts +33 -0
  68. package/dist/pipeline/phase2/manifest-writer.d.ts.map +1 -0
  69. package/dist/pipeline/phase2/manifest-writer.js +129 -0
  70. package/dist/pipeline/phase2/manifest-writer.js.map +1 -0
  71. package/dist/pipeline/phase2/phase2-coordinator.d.ts +20 -0
  72. package/dist/pipeline/phase2/phase2-coordinator.d.ts.map +1 -0
  73. package/dist/pipeline/phase2/phase2-coordinator.js +146 -0
  74. package/dist/pipeline/phase2/phase2-coordinator.js.map +1 -0
  75. package/dist/pipeline/phase2/phases/adr-generator.d.ts +45 -0
  76. package/dist/pipeline/phase2/phases/adr-generator.d.ts.map +1 -0
  77. package/dist/pipeline/phase2/phases/adr-generator.js +699 -0
  78. package/dist/pipeline/phase2/phases/adr-generator.js.map +1 -0
  79. package/dist/pipeline/phase2/phases/artifact-loader.d.ts +25 -0
  80. package/dist/pipeline/phase2/phases/artifact-loader.d.ts.map +1 -0
  81. package/dist/pipeline/phase2/phases/artifact-loader.js +164 -0
  82. package/dist/pipeline/phase2/phases/artifact-loader.js.map +1 -0
  83. package/dist/pipeline/phase2/phases/ddd-generator.d.ts +82 -0
  84. package/dist/pipeline/phase2/phases/ddd-generator.d.ts.map +1 -0
  85. package/dist/pipeline/phase2/phases/ddd-generator.js +1007 -0
  86. package/dist/pipeline/phase2/phases/ddd-generator.js.map +1 -0
  87. package/dist/pipeline/phase2/phases/research-dossier.d.ts +40 -0
  88. package/dist/pipeline/phase2/phases/research-dossier.d.ts.map +1 -0
  89. package/dist/pipeline/phase2/phases/research-dossier.js +601 -0
  90. package/dist/pipeline/phase2/phases/research-dossier.js.map +1 -0
  91. package/dist/pipeline/phase2/phases/sparc-specification.d.ts +38 -0
  92. package/dist/pipeline/phase2/phases/sparc-specification.d.ts.map +1 -0
  93. package/dist/pipeline/phase2/phases/sparc-specification.js +746 -0
  94. package/dist/pipeline/phase2/phases/sparc-specification.js.map +1 -0
  95. package/dist/pipeline/phase2/phases/tdd-plan-generator.d.ts +39 -0
  96. package/dist/pipeline/phase2/phases/tdd-plan-generator.d.ts.map +1 -0
  97. package/dist/pipeline/phase2/phases/tdd-plan-generator.js +586 -0
  98. package/dist/pipeline/phase2/phases/tdd-plan-generator.js.map +1 -0
  99. package/dist/pipeline/phase2/renderers/markdown-renderer.d.ts +30 -0
  100. package/dist/pipeline/phase2/renderers/markdown-renderer.d.ts.map +1 -0
  101. package/dist/pipeline/phase2/renderers/markdown-renderer.js +483 -0
  102. package/dist/pipeline/phase2/renderers/markdown-renderer.js.map +1 -0
  103. package/dist/pipeline/phase2/schemas.d.ts +1043 -0
  104. package/dist/pipeline/phase2/schemas.d.ts.map +1 -0
  105. package/dist/pipeline/phase2/schemas.js +364 -0
  106. package/dist/pipeline/phase2/schemas.js.map +1 -0
  107. package/dist/pipeline/phase2/telemetry.d.ts +46 -0
  108. package/dist/pipeline/phase2/telemetry.d.ts.map +1 -0
  109. package/dist/pipeline/phase2/telemetry.js +86 -0
  110. package/dist/pipeline/phase2/telemetry.js.map +1 -0
  111. package/dist/pipeline/phase2/types.d.ts +513 -0
  112. package/dist/pipeline/phase2/types.d.ts.map +1 -0
  113. package/dist/pipeline/phase2/types.js +13 -0
  114. package/dist/pipeline/phase2/types.js.map +1 -0
  115. package/dist/pipeline/phase3/index.d.ts +18 -0
  116. package/dist/pipeline/phase3/index.d.ts.map +1 -0
  117. package/dist/pipeline/phase3/index.js +17 -0
  118. package/dist/pipeline/phase3/index.js.map +1 -0
  119. package/dist/pipeline/phase3/manifest-writer.d.ts +41 -0
  120. package/dist/pipeline/phase3/manifest-writer.d.ts.map +1 -0
  121. package/dist/pipeline/phase3/manifest-writer.js +131 -0
  122. package/dist/pipeline/phase3/manifest-writer.js.map +1 -0
  123. package/dist/pipeline/phase3/phase3-coordinator.d.ts +25 -0
  124. package/dist/pipeline/phase3/phase3-coordinator.d.ts.map +1 -0
  125. package/dist/pipeline/phase3/phase3-coordinator.js +224 -0
  126. package/dist/pipeline/phase3/phase3-coordinator.js.map +1 -0
  127. package/dist/pipeline/phase3/phases/domain-codegen.d.ts +45 -0
  128. package/dist/pipeline/phase3/phases/domain-codegen.d.ts.map +1 -0
  129. package/dist/pipeline/phase3/phases/domain-codegen.js +1072 -0
  130. package/dist/pipeline/phase3/phases/domain-codegen.js.map +1 -0
  131. package/dist/pipeline/phase3/phases/language-resolver.d.ts +52 -0
  132. package/dist/pipeline/phase3/phases/language-resolver.d.ts.map +1 -0
  133. package/dist/pipeline/phase3/phases/language-resolver.js +628 -0
  134. package/dist/pipeline/phase3/phases/language-resolver.js.map +1 -0
  135. package/dist/pipeline/phase3/phases/phase2-validator.d.ts +24 -0
  136. package/dist/pipeline/phase3/phases/phase2-validator.d.ts.map +1 -0
  137. package/dist/pipeline/phase3/phases/phase2-validator.js +168 -0
  138. package/dist/pipeline/phase3/phases/phase2-validator.js.map +1 -0
  139. package/dist/pipeline/phase3/phases/ruflo-executor.d.ts +24 -0
  140. package/dist/pipeline/phase3/phases/ruflo-executor.d.ts.map +1 -0
  141. package/dist/pipeline/phase3/phases/ruflo-executor.js +197 -0
  142. package/dist/pipeline/phase3/phases/ruflo-executor.js.map +1 -0
  143. package/dist/pipeline/phase3/phases/scaffold-generator.d.ts +39 -0
  144. package/dist/pipeline/phase3/phases/scaffold-generator.d.ts.map +1 -0
  145. package/dist/pipeline/phase3/phases/scaffold-generator.js +538 -0
  146. package/dist/pipeline/phase3/phases/scaffold-generator.js.map +1 -0
  147. package/dist/pipeline/phase3/phases/test-generator.d.ts +38 -0
  148. package/dist/pipeline/phase3/phases/test-generator.d.ts.map +1 -0
  149. package/dist/pipeline/phase3/phases/test-generator.js +381 -0
  150. package/dist/pipeline/phase3/phases/test-generator.js.map +1 -0
  151. package/dist/pipeline/phase3/schemas.d.ts +231 -0
  152. package/dist/pipeline/phase3/schemas.d.ts.map +1 -0
  153. package/dist/pipeline/phase3/schemas.js +225 -0
  154. package/dist/pipeline/phase3/schemas.js.map +1 -0
  155. package/dist/pipeline/phase3/types.d.ts +270 -0
  156. package/dist/pipeline/phase3/types.d.ts.map +1 -0
  157. package/dist/pipeline/phase3/types.js +12 -0
  158. package/dist/pipeline/phase3/types.js.map +1 -0
  159. package/dist/pipeline/phase3-sparc/index.d.ts +9 -0
  160. package/dist/pipeline/phase3-sparc/index.d.ts.map +1 -0
  161. package/dist/pipeline/phase3-sparc/index.js +8 -0
  162. package/dist/pipeline/phase3-sparc/index.js.map +1 -0
  163. package/dist/pipeline/phase3-sparc/manifest-writer.d.ts +26 -0
  164. package/dist/pipeline/phase3-sparc/manifest-writer.d.ts.map +1 -0
  165. package/dist/pipeline/phase3-sparc/manifest-writer.js +129 -0
  166. package/dist/pipeline/phase3-sparc/manifest-writer.js.map +1 -0
  167. package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.d.ts +14 -0
  168. package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.d.ts.map +1 -0
  169. package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js +351 -0
  170. package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js.map +1 -0
  171. package/dist/pipeline/phase3-sparc/types.d.ts +44 -0
  172. package/dist/pipeline/phase3-sparc/types.d.ts.map +1 -0
  173. package/dist/pipeline/phase3-sparc/types.js +8 -0
  174. package/dist/pipeline/phase3-sparc/types.js.map +1 -0
  175. package/dist/pipeline/phase4/errors.d.ts +31 -0
  176. package/dist/pipeline/phase4/errors.d.ts.map +1 -0
  177. package/dist/pipeline/phase4/errors.js +115 -0
  178. package/dist/pipeline/phase4/errors.js.map +1 -0
  179. package/dist/pipeline/phase4/index.d.ts +21 -0
  180. package/dist/pipeline/phase4/index.d.ts.map +1 -0
  181. package/dist/pipeline/phase4/index.js +20 -0
  182. package/dist/pipeline/phase4/index.js.map +1 -0
  183. package/dist/pipeline/phase4/manifest-writer.d.ts +44 -0
  184. package/dist/pipeline/phase4/manifest-writer.d.ts.map +1 -0
  185. package/dist/pipeline/phase4/manifest-writer.js +135 -0
  186. package/dist/pipeline/phase4/manifest-writer.js.map +1 -0
  187. package/dist/pipeline/phase4/phase4-coordinator.d.ts +27 -0
  188. package/dist/pipeline/phase4/phase4-coordinator.d.ts.map +1 -0
  189. package/dist/pipeline/phase4/phase4-coordinator.js +238 -0
  190. package/dist/pipeline/phase4/phase4-coordinator.js.map +1 -0
  191. package/dist/pipeline/phase4/phases/deployment-generator.d.ts +32 -0
  192. package/dist/pipeline/phase4/phases/deployment-generator.d.ts.map +1 -0
  193. package/dist/pipeline/phase4/phases/deployment-generator.js +312 -0
  194. package/dist/pipeline/phase4/phases/deployment-generator.js.map +1 -0
  195. package/dist/pipeline/phase4/phases/erp-client-generator.d.ts +33 -0
  196. package/dist/pipeline/phase4/phases/erp-client-generator.d.ts.map +1 -0
  197. package/dist/pipeline/phase4/phases/erp-client-generator.js +675 -0
  198. package/dist/pipeline/phase4/phases/erp-client-generator.js.map +1 -0
  199. package/dist/pipeline/phase4/phases/erp-target-resolver.d.ts +25 -0
  200. package/dist/pipeline/phase4/phases/erp-target-resolver.d.ts.map +1 -0
  201. package/dist/pipeline/phase4/phases/erp-target-resolver.js +219 -0
  202. package/dist/pipeline/phase4/phases/erp-target-resolver.js.map +1 -0
  203. package/dist/pipeline/phase4/phases/http-server-generator.d.ts +33 -0
  204. package/dist/pipeline/phase4/phases/http-server-generator.d.ts.map +1 -0
  205. package/dist/pipeline/phase4/phases/http-server-generator.js +1010 -0
  206. package/dist/pipeline/phase4/phases/http-server-generator.js.map +1 -0
  207. package/dist/pipeline/phase4/phases/infra-adapter-generator.d.ts +31 -0
  208. package/dist/pipeline/phase4/phases/infra-adapter-generator.d.ts.map +1 -0
  209. package/dist/pipeline/phase4/phases/infra-adapter-generator.js +607 -0
  210. package/dist/pipeline/phase4/phases/infra-adapter-generator.js.map +1 -0
  211. package/dist/pipeline/phase4/phases/metadata-augmentor.d.ts +34 -0
  212. package/dist/pipeline/phase4/phases/metadata-augmentor.d.ts.map +1 -0
  213. package/dist/pipeline/phase4/phases/metadata-augmentor.js +253 -0
  214. package/dist/pipeline/phase4/phases/metadata-augmentor.js.map +1 -0
  215. package/dist/pipeline/phase4/phases/phase3-validator.d.ts +26 -0
  216. package/dist/pipeline/phase4/phases/phase3-validator.d.ts.map +1 -0
  217. package/dist/pipeline/phase4/phases/phase3-validator.js +184 -0
  218. package/dist/pipeline/phase4/phases/phase3-validator.js.map +1 -0
  219. package/dist/pipeline/phase4/phases/schema-generator.d.ts +31 -0
  220. package/dist/pipeline/phase4/phases/schema-generator.d.ts.map +1 -0
  221. package/dist/pipeline/phase4/phases/schema-generator.js +373 -0
  222. package/dist/pipeline/phase4/phases/schema-generator.js.map +1 -0
  223. package/dist/pipeline/phase4/schemas.d.ts +63 -0
  224. package/dist/pipeline/phase4/schemas.d.ts.map +1 -0
  225. package/dist/pipeline/phase4/schemas.js +64 -0
  226. package/dist/pipeline/phase4/schemas.js.map +1 -0
  227. package/dist/pipeline/phase4/types.d.ts +269 -0
  228. package/dist/pipeline/phase4/types.d.ts.map +1 -0
  229. package/dist/pipeline/phase4/types.js +13 -0
  230. package/dist/pipeline/phase4/types.js.map +1 -0
  231. package/dist/pipeline/phase4-adrs/index.d.ts +13 -0
  232. package/dist/pipeline/phase4-adrs/index.d.ts.map +1 -0
  233. package/dist/pipeline/phase4-adrs/index.js +12 -0
  234. package/dist/pipeline/phase4-adrs/index.js.map +1 -0
  235. package/dist/pipeline/phase4-adrs/manifest-writer.d.ts +31 -0
  236. package/dist/pipeline/phase4-adrs/manifest-writer.d.ts.map +1 -0
  237. package/dist/pipeline/phase4-adrs/manifest-writer.js +105 -0
  238. package/dist/pipeline/phase4-adrs/manifest-writer.js.map +1 -0
  239. package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts +25 -0
  240. package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts.map +1 -0
  241. package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js +312 -0
  242. package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js.map +1 -0
  243. package/dist/pipeline/phase4-adrs/types.d.ts +45 -0
  244. package/dist/pipeline/phase4-adrs/types.d.ts.map +1 -0
  245. package/dist/pipeline/phase4-adrs/types.js +8 -0
  246. package/dist/pipeline/phase4-adrs/types.js.map +1 -0
  247. package/dist/pipeline/phase5/index.d.ts +18 -0
  248. package/dist/pipeline/phase5/index.d.ts.map +1 -0
  249. package/dist/pipeline/phase5/index.js +17 -0
  250. package/dist/pipeline/phase5/index.js.map +1 -0
  251. package/dist/pipeline/phase5/manifest-writer.d.ts +41 -0
  252. package/dist/pipeline/phase5/manifest-writer.d.ts.map +1 -0
  253. package/dist/pipeline/phase5/manifest-writer.js +136 -0
  254. package/dist/pipeline/phase5/manifest-writer.js.map +1 -0
  255. package/dist/pipeline/phase5/phase5-coordinator.d.ts +23 -0
  256. package/dist/pipeline/phase5/phase5-coordinator.d.ts.map +1 -0
  257. package/dist/pipeline/phase5/phase5-coordinator.js +228 -0
  258. package/dist/pipeline/phase5/phase5-coordinator.js.map +1 -0
  259. package/dist/pipeline/phase5/phases/deployment-finalizer.d.ts +41 -0
  260. package/dist/pipeline/phase5/phases/deployment-finalizer.d.ts.map +1 -0
  261. package/dist/pipeline/phase5/phases/deployment-finalizer.js +663 -0
  262. package/dist/pipeline/phase5/phases/deployment-finalizer.js.map +1 -0
  263. package/dist/pipeline/phase5/phases/phase4-validator.d.ts +30 -0
  264. package/dist/pipeline/phase5/phases/phase4-validator.d.ts.map +1 -0
  265. package/dist/pipeline/phase5/phases/phase4-validator.js +276 -0
  266. package/dist/pipeline/phase5/phases/phase4-validator.js.map +1 -0
  267. package/dist/pipeline/phase5/phases/project-materializer.d.ts +26 -0
  268. package/dist/pipeline/phase5/phases/project-materializer.d.ts.map +1 -0
  269. package/dist/pipeline/phase5/phases/project-materializer.js +319 -0
  270. package/dist/pipeline/phase5/phases/project-materializer.js.map +1 -0
  271. package/dist/pipeline/phase5/phases/service-registrar.d.ts +29 -0
  272. package/dist/pipeline/phase5/phases/service-registrar.d.ts.map +1 -0
  273. package/dist/pipeline/phase5/phases/service-registrar.js +394 -0
  274. package/dist/pipeline/phase5/phases/service-registrar.js.map +1 -0
  275. package/dist/pipeline/phase5/types.d.ts +209 -0
  276. package/dist/pipeline/phase5/types.d.ts.map +1 -0
  277. package/dist/pipeline/phase5/types.js +12 -0
  278. package/dist/pipeline/phase5/types.js.map +1 -0
  279. package/dist/pipeline/phase5-build/index.d.ts +9 -0
  280. package/dist/pipeline/phase5-build/index.d.ts.map +1 -0
  281. package/dist/pipeline/phase5-build/index.js +8 -0
  282. package/dist/pipeline/phase5-build/index.js.map +1 -0
  283. package/dist/pipeline/phase5-build/manifest-writer.d.ts +48 -0
  284. package/dist/pipeline/phase5-build/manifest-writer.d.ts.map +1 -0
  285. package/dist/pipeline/phase5-build/manifest-writer.js +143 -0
  286. package/dist/pipeline/phase5-build/manifest-writer.js.map +1 -0
  287. package/dist/pipeline/phase5-build/phase5-build-coordinator.d.ts +16 -0
  288. package/dist/pipeline/phase5-build/phase5-build-coordinator.d.ts.map +1 -0
  289. package/dist/pipeline/phase5-build/phase5-build-coordinator.js +331 -0
  290. package/dist/pipeline/phase5-build/phase5-build-coordinator.js.map +1 -0
  291. package/dist/pipeline/phase5-build/phases/integration-inferrer.d.ts +35 -0
  292. package/dist/pipeline/phase5-build/phases/integration-inferrer.d.ts.map +1 -0
  293. package/dist/pipeline/phase5-build/phases/integration-inferrer.js +395 -0
  294. package/dist/pipeline/phase5-build/phases/integration-inferrer.js.map +1 -0
  295. package/dist/pipeline/phase5-build/phases/integration-injector.d.ts +38 -0
  296. package/dist/pipeline/phase5-build/phases/integration-injector.d.ts.map +1 -0
  297. package/dist/pipeline/phase5-build/phases/integration-injector.js +276 -0
  298. package/dist/pipeline/phase5-build/phases/integration-injector.js.map +1 -0
  299. package/dist/pipeline/phase5-build/types.d.ts +86 -0
  300. package/dist/pipeline/phase5-build/types.d.ts.map +1 -0
  301. package/dist/pipeline/phase5-build/types.js +9 -0
  302. package/dist/pipeline/phase5-build/types.js.map +1 -0
  303. package/dist/pipeline/phase6/index.d.ts +14 -0
  304. package/dist/pipeline/phase6/index.d.ts.map +1 -0
  305. package/dist/pipeline/phase6/index.js +13 -0
  306. package/dist/pipeline/phase6/index.js.map +1 -0
  307. package/dist/pipeline/phase6/manifest-writer.d.ts +41 -0
  308. package/dist/pipeline/phase6/manifest-writer.d.ts.map +1 -0
  309. package/dist/pipeline/phase6/manifest-writer.js +136 -0
  310. package/dist/pipeline/phase6/manifest-writer.js.map +1 -0
  311. package/dist/pipeline/phase6/phase6-coordinator.d.ts +23 -0
  312. package/dist/pipeline/phase6/phase6-coordinator.d.ts.map +1 -0
  313. package/dist/pipeline/phase6/phase6-coordinator.js +228 -0
  314. package/dist/pipeline/phase6/phase6-coordinator.js.map +1 -0
  315. package/dist/pipeline/phase6/phases/deployment-finalizer.d.ts +22 -0
  316. package/dist/pipeline/phase6/phases/deployment-finalizer.d.ts.map +1 -0
  317. package/dist/pipeline/phase6/phases/deployment-finalizer.js +281 -0
  318. package/dist/pipeline/phase6/phases/deployment-finalizer.js.map +1 -0
  319. package/dist/pipeline/phase6/phases/phase5-validator.d.ts +24 -0
  320. package/dist/pipeline/phase6/phases/phase5-validator.d.ts.map +1 -0
  321. package/dist/pipeline/phase6/phases/phase5-validator.js +269 -0
  322. package/dist/pipeline/phase6/phases/phase5-validator.js.map +1 -0
  323. package/dist/pipeline/phase6/phases/project-materializer.d.ts +18 -0
  324. package/dist/pipeline/phase6/phases/project-materializer.d.ts.map +1 -0
  325. package/dist/pipeline/phase6/phases/project-materializer.js +205 -0
  326. package/dist/pipeline/phase6/phases/project-materializer.js.map +1 -0
  327. package/dist/pipeline/phase6/phases/service-registrar.d.ts +20 -0
  328. package/dist/pipeline/phase6/phases/service-registrar.d.ts.map +1 -0
  329. package/dist/pipeline/phase6/phases/service-registrar.js +334 -0
  330. package/dist/pipeline/phase6/phases/service-registrar.js.map +1 -0
  331. package/dist/pipeline/phase6/types.d.ts +209 -0
  332. package/dist/pipeline/phase6/types.d.ts.map +1 -0
  333. package/dist/pipeline/phase6/types.js +12 -0
  334. package/dist/pipeline/phase6/types.js.map +1 -0
  335. package/package.json +3 -2
  336. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.d.ts +0 -186
  337. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.d.ts.map +0 -1
  338. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.js +0 -209
  339. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.js.map +0 -1
  340. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.d.ts +0 -134
  341. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.d.ts.map +0 -1
  342. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.js +0 -131
  343. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.js.map +0 -1
  344. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.d.ts +0 -59
  345. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.d.ts.map +0 -1
  346. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.js +0 -120
  347. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.js.map +0 -1
  348. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.d.ts +0 -168
  349. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.d.ts.map +0 -1
  350. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.js +0 -145
  351. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.js.map +0 -1
  352. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.d.ts +0 -116
  353. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.d.ts.map +0 -1
  354. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.js +0 -108
  355. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.js.map +0 -1
  356. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.d.ts +0 -166
  357. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.d.ts.map +0 -1
  358. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.js +0 -169
  359. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.js.map +0 -1
  360. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.d.ts +0 -53
  361. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.d.ts.map +0 -1
  362. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.js +0 -29
  363. package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.js.map +0 -1
  364. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.d.ts +0 -59
  365. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.d.ts.map +0 -1
  366. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.js +0 -240
  367. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.js.map +0 -1
  368. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.d.ts +0 -55
  369. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.d.ts.map +0 -1
  370. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.js +0 -212
  371. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.js.map +0 -1
  372. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.d.ts +0 -11
  373. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.d.ts.map +0 -1
  374. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.js +0 -27
  375. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.js.map +0 -1
  376. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.d.ts +0 -144
  377. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.d.ts.map +0 -1
  378. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.js +0 -180
  379. package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.js.map +0 -1
  380. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.d.ts +0 -49
  381. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.d.ts.map +0 -1
  382. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.js +0 -248
  383. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.js.map +0 -1
  384. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.d.ts +0 -43
  385. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.d.ts.map +0 -1
  386. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.js +0 -243
  387. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.js.map +0 -1
  388. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.d.ts +0 -20
  389. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.d.ts.map +0 -1
  390. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.js +0 -30
  391. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.js.map +0 -1
  392. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.d.ts +0 -68
  393. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.d.ts.map +0 -1
  394. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.js +0 -10
  395. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.js.map +0 -1
  396. package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.d.ts +0 -9
  397. package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.d.ts.map +0 -1
  398. package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.js +0 -40
  399. package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.js.map +0 -1
  400. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.d.ts +0 -179
  401. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.d.ts.map +0 -1
  402. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.js +0 -484
  403. package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.js.map +0 -1
  404. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.d.ts +0 -116
  405. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.d.ts.map +0 -1
  406. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.js +0 -496
  407. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.js.map +0 -1
  408. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.d.ts +0 -11
  409. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.d.ts.map +0 -1
  410. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.js +0 -28
  411. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.js.map +0 -1
  412. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.d.ts +0 -186
  413. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.d.ts.map +0 -1
  414. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.d.ts +0 -58
  415. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.d.ts.map +0 -1
  416. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.js +0 -290
  417. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.js.map +0 -1
  418. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.js +0 -575
  419. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.js.map +0 -1
  420. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.d.ts +0 -2271
  421. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.d.ts.map +0 -1
  422. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.js +0 -300
  423. package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.js.map +0 -1
  424. package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.d.ts +0 -928
  425. package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.d.ts.map +0 -1
  426. package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.js +0 -141
  427. package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.js.map +0 -1
  428. package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.d.ts +0 -74
  429. package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.d.ts.map +0 -1
  430. package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.js +0 -148
  431. package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.js.map +0 -1
  432. package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.d.ts +0 -132
  433. package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.d.ts.map +0 -1
  434. package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.js +0 -201
  435. package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.js.map +0 -1
  436. package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.d.ts +0 -55
  437. package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.d.ts.map +0 -1
  438. package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.js +0 -139
  439. package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.js.map +0 -1
  440. package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.d.ts +0 -37
  441. package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.d.ts.map +0 -1
  442. package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.js +0 -123
  443. package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.js.map +0 -1
  444. package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.d.ts +0 -35
  445. package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.d.ts.map +0 -1
  446. package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.js +0 -167
  447. package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.js.map +0 -1
  448. package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.d.ts +0 -94
  449. package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.d.ts.map +0 -1
  450. package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.js +0 -223
  451. package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.js.map +0 -1
  452. package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.d.ts +0 -106
  453. package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.d.ts.map +0 -1
  454. package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.js +0 -225
  455. package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.js.map +0 -1
  456. package/dist/bundled-agents/analytics-hub-agents/dist/cache.d.ts +0 -22
  457. package/dist/bundled-agents/analytics-hub-agents/dist/cache.d.ts.map +0 -1
  458. package/dist/bundled-agents/analytics-hub-agents/dist/cache.js +0 -138
  459. package/dist/bundled-agents/analytics-hub-agents/dist/cache.js.map +0 -1
  460. package/dist/bundled-agents/analytics-hub-agents/dist/claude.js +0 -68
  461. package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.d.ts +0 -47
  462. package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.d.ts.map +0 -1
  463. package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.js +0 -448
  464. package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.js.map +0 -1
  465. package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.d.ts +0 -10
  466. package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.d.ts.map +0 -1
  467. package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.js +0 -26
  468. package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.js.map +0 -1
  469. package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.d.ts +0 -21
  470. package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.d.ts.map +0 -1
  471. package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.js +0 -175
  472. package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.js.map +0 -1
  473. package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.d.ts +0 -102
  474. package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.d.ts.map +0 -1
  475. package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.js +0 -842
  476. package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.js.map +0 -1
  477. package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.d.ts +0 -96
  478. package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.d.ts.map +0 -1
  479. package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.js +0 -226
  480. package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.js.map +0 -1
  481. package/dist/bundled-agents/analytics-hub-agents/dist/config.d.ts +0 -56
  482. package/dist/bundled-agents/analytics-hub-agents/dist/config.d.ts.map +0 -1
  483. package/dist/bundled-agents/analytics-hub-agents/dist/config.js +0 -77
  484. package/dist/bundled-agents/analytics-hub-agents/dist/config.js.map +0 -1
  485. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.d.ts +0 -573
  486. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.d.ts.map +0 -1
  487. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.js +0 -224
  488. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.js.map +0 -1
  489. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.d.ts +0 -379
  490. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.d.ts.map +0 -1
  491. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.js +0 -95
  492. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.js.map +0 -1
  493. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.d.ts +0 -1445
  494. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.d.ts.map +0 -1
  495. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.js +0 -343
  496. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.js.map +0 -1
  497. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.d.ts +0 -11
  498. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.d.ts.map +0 -1
  499. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.js +0 -52
  500. package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.js.map +0 -1
  501. package/dist/bundled-agents/analytics-hub-agents/dist/database.d.ts +0 -27
  502. package/dist/bundled-agents/analytics-hub-agents/dist/database.d.ts.map +0 -1
  503. package/dist/bundled-agents/analytics-hub-agents/dist/database.js +0 -152
  504. package/dist/bundled-agents/analytics-hub-agents/dist/database.js.map +0 -1
  505. package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.d.ts +0 -54
  506. package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.d.ts.map +0 -1
  507. package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.js +0 -138
  508. package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.js.map +0 -1
  509. package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.d.ts +0 -16
  510. package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.d.ts.map +0 -1
  511. package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.js +0 -131
  512. package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.js.map +0 -1
  513. package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.d.ts +0 -10
  514. package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.d.ts.map +0 -1
  515. package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.js +0 -15
  516. package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.js.map +0 -1
  517. package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.d.ts +0 -48
  518. package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.d.ts.map +0 -1
  519. package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.js +0 -16
  520. package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.js.map +0 -1
  521. package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.d.ts +0 -45
  522. package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.d.ts.map +0 -1
  523. package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.js +0 -189
  524. package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.js.map +0 -1
  525. package/dist/bundled-agents/analytics-hub-agents/dist/index.d.ts +0 -11
  526. package/dist/bundled-agents/analytics-hub-agents/dist/index.d.ts.map +0 -1
  527. package/dist/bundled-agents/analytics-hub-agents/dist/index.js +0 -186
  528. package/dist/bundled-agents/analytics-hub-agents/dist/index.js.map +0 -1
  529. package/dist/bundled-agents/analytics-hub-agents/dist/kafka.d.ts +0 -16
  530. package/dist/bundled-agents/analytics-hub-agents/dist/kafka.d.ts.map +0 -1
  531. package/dist/bundled-agents/analytics-hub-agents/dist/kafka.js +0 -100
  532. package/dist/bundled-agents/analytics-hub-agents/dist/kafka.js.map +0 -1
  533. package/dist/bundled-agents/analytics-hub-agents/dist/logger.d.ts +0 -5
  534. package/dist/bundled-agents/analytics-hub-agents/dist/logger.d.ts.map +0 -1
  535. package/dist/bundled-agents/analytics-hub-agents/dist/logger.js +0 -31
  536. package/dist/bundled-agents/analytics-hub-agents/dist/logger.js.map +0 -1
  537. package/dist/bundled-agents/analytics-hub-agents/dist/metrics.d.ts +0 -17
  538. package/dist/bundled-agents/analytics-hub-agents/dist/metrics.d.ts.map +0 -1
  539. package/dist/bundled-agents/analytics-hub-agents/dist/metrics.js +0 -77
  540. package/dist/bundled-agents/analytics-hub-agents/dist/metrics.js.map +0 -1
  541. package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.d.ts +0 -6
  542. package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.d.ts.map +0 -1
  543. package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.js +0 -125
  544. package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.js.map +0 -1
  545. package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.d.ts +0 -13
  546. package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.d.ts.map +0 -1
  547. package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.js +0 -192
  548. package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.js.map +0 -1
  549. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.d.ts +0 -14
  550. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.d.ts.map +0 -1
  551. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.js +0 -258
  552. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.js.map +0 -1
  553. package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.d.ts +0 -6
  554. package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.d.ts.map +0 -1
  555. package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.js +0 -323
  556. package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.js.map +0 -1
  557. package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.d.ts +0 -6
  558. package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.d.ts.map +0 -1
  559. package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.js +0 -26
  560. package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.js.map +0 -1
  561. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.d.ts +0 -13
  562. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.d.ts.map +0 -1
  563. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.js +0 -122
  564. package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.js.map +0 -1
  565. package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.d.ts +0 -6
  566. package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.d.ts.map +0 -1
  567. package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.js +0 -77
  568. package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.js.map +0 -1
  569. package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.d.ts +0 -7
  570. package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.d.ts.map +0 -1
  571. package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.js +0 -482
  572. package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.js.map +0 -1
  573. package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.d.ts +0 -101
  574. package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.d.ts.map +0 -1
  575. package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.js +0 -209
  576. package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.js.map +0 -1
  577. package/dist/bundled-agents/analytics-hub-agents/dist/services/index.d.ts +0 -10
  578. package/dist/bundled-agents/analytics-hub-agents/dist/services/index.d.ts.map +0 -1
  579. package/dist/bundled-agents/analytics-hub-agents/dist/services/index.js +0 -26
  580. package/dist/bundled-agents/analytics-hub-agents/dist/services/index.js.map +0 -1
  581. package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.d.ts +0 -94
  582. package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.d.ts.map +0 -1
  583. package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.js +0 -189
  584. package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.js.map +0 -1
  585. package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.d.ts +0 -90
  586. package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.d.ts.map +0 -1
  587. package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.js +0 -177
  588. package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.js.map +0 -1
  589. package/dist/bundled-agents/analytics-hub-agents/dist/types/events.d.ts +0 -230
  590. package/dist/bundled-agents/analytics-hub-agents/dist/types/events.d.ts.map +0 -1
  591. package/dist/bundled-agents/analytics-hub-agents/dist/types/events.js +0 -44
  592. package/dist/bundled-agents/analytics-hub-agents/dist/types/events.js.map +0 -1
  593. package/dist/bundled-agents/analytics-hub-agents/package-lock.json +0 -8836
  594. package/dist/bundled-agents/analytics-hub-agents/package.json +0 -109
  595. package/dist/bundled-agents/analytics-hub-agents/src/adapters/config-manager.ts +0 -389
  596. package/dist/bundled-agents/analytics-hub-agents/src/adapters/costops.ts +0 -265
  597. package/dist/bundled-agents/analytics-hub-agents/src/adapters/index.ts +0 -121
  598. package/dist/bundled-agents/analytics-hub-agents/src/adapters/memory-graph.ts +0 -314
  599. package/dist/bundled-agents/analytics-hub-agents/src/adapters/observatory.ts +0 -222
  600. package/dist/bundled-agents/analytics-hub-agents/src/adapters/registry.ts +0 -364
  601. package/dist/bundled-agents/analytics-hub-agents/src/adapters/types.ts +0 -72
  602. package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/computation.ts +0 -318
  603. package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/handler.ts +0 -318
  604. package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/index.ts +0 -11
  605. package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/metadata.ts +0 -220
  606. package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/computation.ts +0 -335
  607. package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/handler.ts +0 -289
  608. package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/index.ts +0 -42
  609. package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/types.ts +0 -81
  610. package/dist/bundled-agents/analytics-hub-agents/src/agents/index.ts +0 -43
  611. package/dist/bundled-agents/analytics-hub-agents/src/agents/ruvector-client.ts +0 -591
  612. package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/agent.ts +0 -663
  613. package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/index.ts +0 -43
  614. package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/telemetry.integration.ts +0 -476
  615. package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/telemetry.ts +0 -763
  616. package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/types.ts +0 -368
  617. package/dist/bundled-agents/analytics-hub-agents/src/agents/types.ts +0 -363
  618. package/dist/bundled-agents/analytics-hub-agents/src/auth/api-keys.ts +0 -209
  619. package/dist/bundled-agents/analytics-hub-agents/src/auth/audit.ts +0 -278
  620. package/dist/bundled-agents/analytics-hub-agents/src/auth/jwt.ts +0 -172
  621. package/dist/bundled-agents/analytics-hub-agents/src/auth/mfa.ts +0 -107
  622. package/dist/bundled-agents/analytics-hub-agents/src/auth/middleware.ts +0 -220
  623. package/dist/bundled-agents/analytics-hub-agents/src/auth/oauth.ts +0 -293
  624. package/dist/bundled-agents/analytics-hub-agents/src/auth/rbac.ts +0 -281
  625. package/dist/bundled-agents/analytics-hub-agents/src/cache.ts +0 -146
  626. package/dist/bundled-agents/analytics-hub-agents/src/cli/consensus-agent.ts +0 -511
  627. package/dist/bundled-agents/analytics-hub-agents/src/cli/index.ts +0 -10
  628. package/dist/bundled-agents/analytics-hub-agents/src/cli/main.ts +0 -161
  629. package/dist/bundled-agents/analytics-hub-agents/src/cli/strategic-recommendation.ts +0 -1126
  630. package/dist/bundled-agents/analytics-hub-agents/src/compliance/gdpr.ts +0 -330
  631. package/dist/bundled-agents/analytics-hub-agents/src/config.ts +0 -81
  632. package/dist/bundled-agents/analytics-hub-agents/src/contracts/consensus-agent.ts +0 -249
  633. package/dist/bundled-agents/analytics-hub-agents/src/contracts/decision-event.ts +0 -99
  634. package/dist/bundled-agents/analytics-hub-agents/src/contracts/ecosystem-collaboration-agent.ts +0 -388
  635. package/dist/bundled-agents/analytics-hub-agents/src/contracts/index.ts +0 -14
  636. package/dist/bundled-agents/analytics-hub-agents/src/database.ts +0 -187
  637. package/dist/bundled-agents/analytics-hub-agents/src/execution/execution-graph.ts +0 -165
  638. package/dist/bundled-agents/analytics-hub-agents/src/execution/fastify-plugin.ts +0 -168
  639. package/dist/bundled-agents/analytics-hub-agents/src/execution/index.ts +0 -18
  640. package/dist/bundled-agents/analytics-hub-agents/src/execution/span-types.ts +0 -54
  641. package/dist/bundled-agents/analytics-hub-agents/src/functions/handler.ts +0 -264
  642. package/dist/bundled-agents/analytics-hub-agents/src/index.ts +0 -195
  643. package/dist/bundled-agents/analytics-hub-agents/src/kafka.ts +0 -109
  644. package/dist/bundled-agents/analytics-hub-agents/src/logger.ts +0 -26
  645. package/dist/bundled-agents/analytics-hub-agents/src/metrics.ts +0 -97
  646. package/dist/bundled-agents/analytics-hub-agents/src/routes/analytics.ts +0 -153
  647. package/dist/bundled-agents/analytics-hub-agents/src/routes/consensus.ts +0 -218
  648. package/dist/bundled-agents/analytics-hub-agents/src/routes/ecosystem-collaboration.ts +0 -284
  649. package/dist/bundled-agents/analytics-hub-agents/src/routes/events.ts +0 -396
  650. package/dist/bundled-agents/analytics-hub-agents/src/routes/index.ts +0 -27
  651. package/dist/bundled-agents/analytics-hub-agents/src/routes/ingest.ts +0 -146
  652. package/dist/bundled-agents/analytics-hub-agents/src/routes/metrics.ts +0 -105
  653. package/dist/bundled-agents/analytics-hub-agents/src/routes/strategic-recommendations.ts +0 -624
  654. package/dist/bundled-agents/analytics-hub-agents/src/secrets/vault.ts +0 -252
  655. package/dist/bundled-agents/analytics-hub-agents/src/services/index.ts +0 -10
  656. package/dist/bundled-agents/analytics-hub-agents/src/services/ruvector-client.ts +0 -235
  657. package/dist/bundled-agents/analytics-hub-agents/src/services/telemetry-emitter.ts +0 -250
  658. package/dist/bundled-agents/analytics-hub-agents/src/types/events.ts +0 -237
  659. package/dist/bundled-agents/analytics-hub-agents/src/types/fastify.d.ts +0 -25
  660. package/dist/bundled-agents/benchmark-exchange-agents/index.js +0 -331
  661. package/dist/bundled-agents/benchmark-exchange-agents/package-lock.json +0 -16
  662. package/dist/bundled-agents/benchmark-exchange-agents/package.json +0 -50
  663. package/dist/bundled-agents/config-manager-agents/index.js +0 -341
  664. package/dist/bundled-agents/config-manager-agents/package-lock.json +0 -1839
  665. package/dist/bundled-agents/config-manager-agents/package.json +0 -17
  666. package/dist/bundled-agents/copilot-agents/dist/claude.js +0 -68
  667. package/dist/bundled-agents/copilot-agents/dist/functions/src/cors.d.ts +0 -14
  668. package/dist/bundled-agents/copilot-agents/dist/functions/src/cors.js +0 -35
  669. package/dist/bundled-agents/copilot-agents/dist/functions/src/cors.js.map +0 -1
  670. package/dist/bundled-agents/copilot-agents/dist/functions/src/envelope.d.ts +0 -55
  671. package/dist/bundled-agents/copilot-agents/dist/functions/src/envelope.js +0 -40
  672. package/dist/bundled-agents/copilot-agents/dist/functions/src/envelope.js.map +0 -1
  673. package/dist/bundled-agents/copilot-agents/dist/functions/src/health.d.ts +0 -22
  674. package/dist/bundled-agents/copilot-agents/dist/functions/src/health.js +0 -38
  675. package/dist/bundled-agents/copilot-agents/dist/functions/src/health.js.map +0 -1
  676. package/dist/bundled-agents/copilot-agents/dist/functions/src/index.d.ts +0 -34
  677. package/dist/bundled-agents/copilot-agents/dist/functions/src/index.js +0 -186
  678. package/dist/bundled-agents/copilot-agents/dist/functions/src/index.js.map +0 -1
  679. package/dist/bundled-agents/copilot-agents/dist/functions/src/router.d.ts +0 -36
  680. package/dist/bundled-agents/copilot-agents/dist/functions/src/router.js +0 -121
  681. package/dist/bundled-agents/copilot-agents/dist/functions/src/router.js.map +0 -1
  682. package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/config-validation-agent.d.ts +0 -157
  683. package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/config-validation-agent.js +0 -948
  684. package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/config-validation-agent.js.map +0 -1
  685. package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/index.d.ts +0 -9
  686. package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/index.js +0 -27
  687. package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/index.js.map +0 -1
  688. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/agent-span-wrapper.d.ts +0 -23
  689. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/agent-span-wrapper.js +0 -50
  690. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/agent-span-wrapper.js.map +0 -1
  691. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/base-agent.d.ts +0 -214
  692. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/base-agent.js +0 -91
  693. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/base-agent.js.map +0 -1
  694. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/config-validation-schemas.d.ts +0 -1166
  695. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/config-validation-schemas.js +0 -308
  696. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/config-validation-schemas.js.map +0 -1
  697. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decision-event.d.ts +0 -59
  698. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decision-event.js +0 -62
  699. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decision-event.js.map +0 -1
  700. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decomposer-schemas.d.ts +0 -400
  701. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decomposer-schemas.js +0 -113
  702. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decomposer-schemas.js.map +0 -1
  703. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/execution-graph.d.ts +0 -250
  704. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/execution-graph.js +0 -169
  705. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/execution-graph.js.map +0 -1
  706. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/index.d.ts +0 -17
  707. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/index.js +0 -97
  708. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/index.js.map +0 -1
  709. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intelligence-schemas.d.ts +0 -1674
  710. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intelligence-schemas.js +0 -246
  711. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intelligence-schemas.js.map +0 -1
  712. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intent-classifier-schemas.d.ts +0 -1085
  713. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intent-classifier-schemas.js +0 -218
  714. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intent-classifier-schemas.js.map +0 -1
  715. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/meta-reasoner-schemas.d.ts +0 -949
  716. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/meta-reasoner-schemas.js +0 -253
  717. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/meta-reasoner-schemas.js.map +0 -1
  718. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/objective-clarifier-schemas.d.ts +0 -657
  719. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/objective-clarifier-schemas.js +0 -205
  720. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/objective-clarifier-schemas.js.map +0 -1
  721. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/pipeline-schemas.d.ts +0 -285
  722. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/pipeline-schemas.js +0 -106
  723. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/pipeline-schemas.js.map +0 -1
  724. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/planner-schemas.d.ts +0 -581
  725. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/planner-schemas.js +0 -136
  726. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/planner-schemas.js.map +0 -1
  727. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/reflection-schemas.d.ts +0 -791
  728. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/reflection-schemas.js +0 -225
  729. package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/reflection-schemas.js.map +0 -1
  730. package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/decomposer-agent.d.ts +0 -120
  731. package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/decomposer-agent.js +0 -535
  732. package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/decomposer-agent.js.map +0 -1
  733. package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/index.d.ts +0 -9
  734. package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/index.js +0 -18
  735. package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/index.js.map +0 -1
  736. package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/index.d.ts +0 -4
  737. package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/index.js +0 -9
  738. package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/index.js.map +0 -1
  739. package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/intent-classifier-agent.d.ts +0 -123
  740. package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/intent-classifier-agent.js +0 -609
  741. package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/intent-classifier-agent.js.map +0 -1
  742. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/index.d.ts +0 -10
  743. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/index.js +0 -25
  744. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/index.js.map +0 -1
  745. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +0 -111
  746. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/meta-reasoner-agent.js +0 -686
  747. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/meta-reasoner-agent.js.map +0 -1
  748. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/telemetry.d.ts +0 -11
  749. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/telemetry.js +0 -25
  750. package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/telemetry.js.map +0 -1
  751. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/index.d.ts +0 -6
  752. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/index.js +0 -15
  753. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/index.js.map +0 -1
  754. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +0 -126
  755. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/objective-clarifier-agent.js +0 -780
  756. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/objective-clarifier-agent.js.map +0 -1
  757. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/ruvector-persistence.d.ts +0 -49
  758. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/ruvector-persistence.js +0 -125
  759. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/ruvector-persistence.js.map +0 -1
  760. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/telemetry.d.ts +0 -73
  761. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/telemetry.js +0 -192
  762. package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/telemetry.js.map +0 -1
  763. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/index.d.ts +0 -11
  764. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/index.js +0 -25
  765. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/index.js.map +0 -1
  766. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/planner-agent.d.ts +0 -127
  767. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/planner-agent.js +0 -483
  768. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/planner-agent.js.map +0 -1
  769. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/ruvector-persistence.d.ts +0 -49
  770. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/ruvector-persistence.js +0 -125
  771. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/ruvector-persistence.js.map +0 -1
  772. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/telemetry.d.ts +0 -73
  773. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/telemetry.js +0 -192
  774. package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/telemetry.js.map +0 -1
  775. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/index.d.ts +0 -11
  776. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/index.js +0 -27
  777. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/index.js.map +0 -1
  778. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/reflection-agent.d.ts +0 -122
  779. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/reflection-agent.js +0 -645
  780. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/reflection-agent.js.map +0 -1
  781. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/ruvector-persistence.d.ts +0 -59
  782. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/ruvector-persistence.js +0 -156
  783. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/ruvector-persistence.js.map +0 -1
  784. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/telemetry.d.ts +0 -88
  785. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/telemetry.js +0 -246
  786. package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/telemetry.js.map +0 -1
  787. package/dist/bundled-agents/copilot-agents/index.js +0 -4
  788. package/dist/bundled-agents/copilot-agents/lib/functions/src/cors.d.ts +0 -14
  789. package/dist/bundled-agents/copilot-agents/lib/functions/src/cors.js +0 -35
  790. package/dist/bundled-agents/copilot-agents/lib/functions/src/cors.js.map +0 -1
  791. package/dist/bundled-agents/copilot-agents/lib/functions/src/envelope.d.ts +0 -27
  792. package/dist/bundled-agents/copilot-agents/lib/functions/src/envelope.js +0 -21
  793. package/dist/bundled-agents/copilot-agents/lib/functions/src/envelope.js.map +0 -1
  794. package/dist/bundled-agents/copilot-agents/lib/functions/src/health.d.ts +0 -22
  795. package/dist/bundled-agents/copilot-agents/lib/functions/src/health.js +0 -38
  796. package/dist/bundled-agents/copilot-agents/lib/functions/src/health.js.map +0 -1
  797. package/dist/bundled-agents/copilot-agents/lib/functions/src/index.d.ts +0 -34
  798. package/dist/bundled-agents/copilot-agents/lib/functions/src/index.js +0 -321
  799. package/dist/bundled-agents/copilot-agents/lib/functions/src/index.js.map +0 -1
  800. package/dist/bundled-agents/copilot-agents/lib/functions/src/router.d.ts +0 -27
  801. package/dist/bundled-agents/copilot-agents/lib/functions/src/router.js +0 -107
  802. package/dist/bundled-agents/copilot-agents/lib/functions/src/router.js.map +0 -1
  803. package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/config-validation-agent.d.ts +0 -157
  804. package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/config-validation-agent.js +0 -941
  805. package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/config-validation-agent.js.map +0 -1
  806. package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/index.d.ts +0 -9
  807. package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/index.js +0 -27
  808. package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/index.js.map +0 -1
  809. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/agent-span-wrapper.d.ts +0 -23
  810. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/agent-span-wrapper.js +0 -50
  811. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/agent-span-wrapper.js.map +0 -1
  812. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/base-agent.d.ts +0 -185
  813. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/base-agent.js +0 -86
  814. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/base-agent.js.map +0 -1
  815. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/config-validation-schemas.d.ts +0 -1081
  816. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/config-validation-schemas.js +0 -305
  817. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/config-validation-schemas.js.map +0 -1
  818. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decision-event.d.ts +0 -59
  819. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decision-event.js +0 -62
  820. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decision-event.js.map +0 -1
  821. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decomposer-schemas.d.ts +0 -315
  822. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decomposer-schemas.js +0 -110
  823. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decomposer-schemas.js.map +0 -1
  824. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/execution-graph.d.ts +0 -250
  825. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/execution-graph.js +0 -169
  826. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/execution-graph.js.map +0 -1
  827. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/index.d.ts +0 -16
  828. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/index.js +0 -88
  829. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/index.js.map +0 -1
  830. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intelligence-schemas.d.ts +0 -1674
  831. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intelligence-schemas.js +0 -246
  832. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intelligence-schemas.js.map +0 -1
  833. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intent-classifier-schemas.d.ts +0 -1000
  834. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intent-classifier-schemas.js +0 -215
  835. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intent-classifier-schemas.js.map +0 -1
  836. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/meta-reasoner-schemas.d.ts +0 -864
  837. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/meta-reasoner-schemas.js +0 -250
  838. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/meta-reasoner-schemas.js.map +0 -1
  839. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/objective-clarifier-schemas.d.ts +0 -572
  840. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/objective-clarifier-schemas.js +0 -202
  841. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/objective-clarifier-schemas.js.map +0 -1
  842. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/planner-schemas.d.ts +0 -496
  843. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/planner-schemas.js +0 -133
  844. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/planner-schemas.js.map +0 -1
  845. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/reflection-schemas.d.ts +0 -706
  846. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/reflection-schemas.js +0 -222
  847. package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/reflection-schemas.js.map +0 -1
  848. package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/decomposer-agent.d.ts +0 -107
  849. package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/decomposer-agent.js +0 -360
  850. package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/decomposer-agent.js.map +0 -1
  851. package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/index.d.ts +0 -9
  852. package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/index.js +0 -18
  853. package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/index.js.map +0 -1
  854. package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/index.d.ts +0 -4
  855. package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/index.js +0 -9
  856. package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/index.js.map +0 -1
  857. package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/intent-classifier-agent.d.ts +0 -123
  858. package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/intent-classifier-agent.js +0 -609
  859. package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/intent-classifier-agent.js.map +0 -1
  860. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/index.d.ts +0 -10
  861. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/index.js +0 -25
  862. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/index.js.map +0 -1
  863. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +0 -111
  864. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/meta-reasoner-agent.js +0 -686
  865. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/meta-reasoner-agent.js.map +0 -1
  866. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/telemetry.d.ts +0 -11
  867. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/telemetry.js +0 -25
  868. package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/telemetry.js.map +0 -1
  869. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/index.d.ts +0 -6
  870. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/index.js +0 -15
  871. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/index.js.map +0 -1
  872. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +0 -126
  873. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/objective-clarifier-agent.js +0 -780
  874. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/objective-clarifier-agent.js.map +0 -1
  875. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/ruvector-persistence.d.ts +0 -49
  876. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/ruvector-persistence.js +0 -125
  877. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/ruvector-persistence.js.map +0 -1
  878. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/telemetry.d.ts +0 -73
  879. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/telemetry.js +0 -192
  880. package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/telemetry.js.map +0 -1
  881. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/index.d.ts +0 -11
  882. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/index.js +0 -25
  883. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/index.js.map +0 -1
  884. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/planner-agent.d.ts +0 -119
  885. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/planner-agent.js +0 -421
  886. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/planner-agent.js.map +0 -1
  887. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/ruvector-persistence.d.ts +0 -49
  888. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/ruvector-persistence.js +0 -125
  889. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/ruvector-persistence.js.map +0 -1
  890. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/telemetry.d.ts +0 -73
  891. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/telemetry.js +0 -192
  892. package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/telemetry.js.map +0 -1
  893. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/index.d.ts +0 -11
  894. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/index.js +0 -27
  895. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/index.js.map +0 -1
  896. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/reflection-agent.d.ts +0 -122
  897. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/reflection-agent.js +0 -645
  898. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/reflection-agent.js.map +0 -1
  899. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/ruvector-persistence.d.ts +0 -59
  900. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/ruvector-persistence.js +0 -156
  901. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/ruvector-persistence.js.map +0 -1
  902. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/telemetry.d.ts +0 -88
  903. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/telemetry.js +0 -246
  904. package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/telemetry.js.map +0 -1
  905. package/dist/bundled-agents/copilot-agents/package-lock.json +0 -5474
  906. package/dist/bundled-agents/copilot-agents/package.json +0 -40
  907. package/dist/bundled-agents/copilot-agents/src/cors.ts +0 -36
  908. package/dist/bundled-agents/copilot-agents/src/envelope.ts +0 -77
  909. package/dist/bundled-agents/copilot-agents/src/handler.test.ts +0 -340
  910. package/dist/bundled-agents/copilot-agents/src/health.ts +0 -53
  911. package/dist/bundled-agents/copilot-agents/src/index.ts +0 -201
  912. package/dist/bundled-agents/copilot-agents/src/router.ts +0 -148
  913. package/dist/bundled-agents/edge-agents/index.js +0 -66
  914. package/dist/bundled-agents/edge-agents/package-lock.json +0 -6352
  915. package/dist/bundled-agents/edge-agents/package.json +0 -114
  916. package/dist/bundled-agents/forge-agents/dist/claude.js +0 -68
  917. package/dist/bundled-agents/forge-agents/dist/cli/index.js +0 -11140
  918. package/dist/bundled-agents/forge-agents/dist/cli/index.js.map +0 -1
  919. package/dist/bundled-agents/forge-agents/dist/index.js +0 -11929
  920. package/dist/bundled-agents/forge-agents/dist/index.js.map +0 -1
  921. package/dist/bundled-agents/forge-agents/dist/service/cloud-function.js +0 -9346
  922. package/dist/bundled-agents/forge-agents/dist/service/cloud-function.js.map +0 -1
  923. package/dist/bundled-agents/forge-agents/dist/service/server.js +0 -10612
  924. package/dist/bundled-agents/forge-agents/dist/service/server.js.map +0 -1
  925. package/dist/bundled-agents/forge-agents/package-lock.json +0 -13229
  926. package/dist/bundled-agents/forge-agents/package.json +0 -110
  927. package/dist/bundled-agents/incident-manager-agents/dist/claude.js +0 -68
  928. package/dist/bundled-agents/incident-manager-agents/dist/index.d.ts +0 -37
  929. package/dist/bundled-agents/incident-manager-agents/dist/index.d.ts.map +0 -1
  930. package/dist/bundled-agents/incident-manager-agents/dist/index.js +0 -372
  931. package/dist/bundled-agents/incident-manager-agents/dist/index.js.map +0 -1
  932. package/dist/bundled-agents/incident-manager-agents/package.json +0 -28
  933. package/dist/bundled-agents/incident-manager-agents/src/index.ts +0 -480
  934. package/dist/bundled-agents/inference-gateway-agents/index.js +0 -140
  935. package/dist/bundled-agents/inference-gateway-agents/package-lock.json +0 -6328
  936. package/dist/bundled-agents/inference-gateway-agents/package.json +0 -19
  937. package/dist/bundled-agents/latency-lens-agents/index.js +0 -341
  938. package/dist/bundled-agents/latency-lens-agents/package-lock.json +0 -1710
  939. package/dist/bundled-agents/latency-lens-agents/package.json +0 -17
  940. package/dist/bundled-agents/latency-lens-agents/src/adapters/mod.rs +0 -285
  941. package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/agent.rs +0 -657
  942. package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/detector.rs +0 -720
  943. package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/mod.rs +0 -45
  944. package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/schemas.rs +0 -401
  945. package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/decision_event.rs +0 -374
  946. package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/latency_schemas.rs +0 -439
  947. package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/mod.rs +0 -18
  948. package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/timing_events.rs +0 -296
  949. package/dist/bundled-agents/latency-lens-agents/src/agents/edge_function.rs +0 -667
  950. package/dist/bundled-agents/latency-lens-agents/src/agents/execution_graph.rs +0 -659
  951. package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/agent.rs +0 -426
  952. package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/analyzer.rs +0 -791
  953. package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/mod.rs +0 -40
  954. package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/telemetry.rs +0 -134
  955. package/dist/bundled-agents/latency-lens-agents/src/agents/mod.rs +0 -70
  956. package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/client.rs +0 -335
  957. package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/error.rs +0 -61
  958. package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/mod.rs +0 -21
  959. package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/types.rs +0 -203
  960. package/dist/bundled-agents/latency-lens-agents/src/benchmarks/io.rs +0 -211
  961. package/dist/bundled-agents/latency-lens-agents/src/benchmarks/markdown.rs +0 -334
  962. package/dist/bundled-agents/latency-lens-agents/src/benchmarks/mod.rs +0 -245
  963. package/dist/bundled-agents/latency-lens-agents/src/benchmarks/result.rs +0 -169
  964. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/analyze.rs +0 -432
  965. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/benchmark.rs +0 -292
  966. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/cold_start.rs +0 -553
  967. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/compare.rs +0 -375
  968. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/export.rs +0 -92
  969. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/inspect.rs +0 -156
  970. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/mod.rs +0 -39
  971. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/profile.rs +0 -226
  972. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/replay.rs +0 -106
  973. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/run.rs +0 -217
  974. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/serve.rs +0 -702
  975. package/dist/bundled-agents/latency-lens-agents/src/cli/commands/validate.rs +0 -325
  976. package/dist/bundled-agents/latency-lens-agents/src/cli.rs +0 -752
  977. package/dist/bundled-agents/latency-lens-agents/src/config.rs +0 -521
  978. package/dist/bundled-agents/latency-lens-agents/src/consumers/analytics_hub.rs +0 -668
  979. package/dist/bundled-agents/latency-lens-agents/src/consumers/mod.rs +0 -234
  980. package/dist/bundled-agents/latency-lens-agents/src/consumers/observatory.rs +0 -426
  981. package/dist/bundled-agents/latency-lens-agents/src/consumers/testbench.rs +0 -620
  982. package/dist/bundled-agents/latency-lens-agents/src/lib.rs +0 -440
  983. package/dist/bundled-agents/latency-lens-agents/src/main.rs +0 -210
  984. package/dist/bundled-agents/latency-lens-agents/src/orchestrator.rs +0 -371
  985. package/dist/bundled-agents/latency-lens-agents/src/phase2/agent_config.rs +0 -273
  986. package/dist/bundled-agents/latency-lens-agents/src/phase2/cache.rs +0 -431
  987. package/dist/bundled-agents/latency-lens-agents/src/phase2/mod.rs +0 -43
  988. package/dist/bundled-agents/latency-lens-agents/src/phase2/runtime.rs +0 -373
  989. package/dist/bundled-agents/latency-lens-agents/src/phase2/signals.rs +0 -594
  990. package/dist/bundled-agents/marketplace-agents/index.js +0 -208
  991. package/dist/bundled-agents/marketplace-agents/package-lock.json +0 -15
  992. package/dist/bundled-agents/marketplace-agents/package.json +0 -9
  993. package/dist/bundled-agents/marketplace-agents/src/unified-service/execution-context.js +0 -258
  994. package/dist/bundled-agents/marketplace-agents/src/unified-service/server.js +0 -735
  995. package/dist/bundled-agents/memory-graph-agents/functions/index.js +0 -208
  996. package/dist/bundled-agents/memory-graph-agents/package-lock.json +0 -8079
  997. package/dist/bundled-agents/memory-graph-agents/package.json +0 -24
  998. package/dist/bundled-agents/memory-graph-agents/src/bin/server.rs +0 -402
  999. package/dist/bundled-agents/memory-graph-agents/src/engine/async_memory_graph.rs +0 -1578
  1000. package/dist/bundled-agents/memory-graph-agents/src/engine/mod.rs +0 -1163
  1001. package/dist/bundled-agents/memory-graph-agents/src/error.rs +0 -687
  1002. package/dist/bundled-agents/memory-graph-agents/src/execution/agent-adapter.ts +0 -249
  1003. package/dist/bundled-agents/memory-graph-agents/src/execution/artifact-builder.ts +0 -237
  1004. package/dist/bundled-agents/memory-graph-agents/src/execution/executor.ts +0 -217
  1005. package/dist/bundled-agents/memory-graph-agents/src/execution/index.ts +0 -68
  1006. package/dist/bundled-agents/memory-graph-agents/src/execution/types.ts +0 -181
  1007. package/dist/bundled-agents/memory-graph-agents/src/grpc/converters.rs +0 -446
  1008. package/dist/bundled-agents/memory-graph-agents/src/grpc/handlers.rs +0 -87
  1009. package/dist/bundled-agents/memory-graph-agents/src/grpc/llm.memory.graph.v1.rs +0 -2852
  1010. package/dist/bundled-agents/memory-graph-agents/src/grpc/mod.rs +0 -73
  1011. package/dist/bundled-agents/memory-graph-agents/src/grpc/service.rs +0 -557
  1012. package/dist/bundled-agents/memory-graph-agents/src/grpc/streaming.rs +0 -70
  1013. package/dist/bundled-agents/memory-graph-agents/src/integrations/mod.rs +0 -243
  1014. package/dist/bundled-agents/memory-graph-agents/src/integrations/registry/client.rs +0 -483
  1015. package/dist/bundled-agents/memory-graph-agents/src/integrations/registry/mod.rs +0 -13
  1016. package/dist/bundled-agents/memory-graph-agents/src/integrations/registry/types.rs +0 -392
  1017. package/dist/bundled-agents/memory-graph-agents/src/integrations/vault/archiver.rs +0 -650
  1018. package/dist/bundled-agents/memory-graph-agents/src/integrations/vault/mod.rs +0 -13
  1019. package/dist/bundled-agents/memory-graph-agents/src/integrations/vault/retention.rs +0 -430
  1020. package/dist/bundled-agents/memory-graph-agents/src/lib.rs +0 -79
  1021. package/dist/bundled-agents/memory-graph-agents/src/migration.rs +0 -478
  1022. package/dist/bundled-agents/memory-graph-agents/src/observatory/config.rs +0 -113
  1023. package/dist/bundled-agents/memory-graph-agents/src/observatory/emitter.rs +0 -648
  1024. package/dist/bundled-agents/memory-graph-agents/src/observatory/events.rs +0 -437
  1025. package/dist/bundled-agents/memory-graph-agents/src/observatory/kafka.rs +0 -621
  1026. package/dist/bundled-agents/memory-graph-agents/src/observatory/metrics.rs +0 -244
  1027. package/dist/bundled-agents/memory-graph-agents/src/observatory/mod.rs +0 -72
  1028. package/dist/bundled-agents/memory-graph-agents/src/observatory/prometheus.rs +0 -1296
  1029. package/dist/bundled-agents/memory-graph-agents/src/observatory/publisher.rs +0 -224
  1030. package/dist/bundled-agents/memory-graph-agents/src/observatory/streaming.rs +0 -435
  1031. package/dist/bundled-agents/memory-graph-agents/src/plugin/hooks.rs +0 -487
  1032. package/dist/bundled-agents/memory-graph-agents/src/plugin/manager.rs +0 -541
  1033. package/dist/bundled-agents/memory-graph-agents/src/plugin/mod.rs +0 -429
  1034. package/dist/bundled-agents/memory-graph-agents/src/plugin/registry.rs +0 -515
  1035. package/dist/bundled-agents/memory-graph-agents/src/query/async_query.rs +0 -623
  1036. package/dist/bundled-agents/memory-graph-agents/src/query/mod.rs +0 -697
  1037. package/dist/bundled-agents/memory-graph-agents/src/storage/async_sled_backend.rs +0 -442
  1038. package/dist/bundled-agents/memory-graph-agents/src/storage/cache.rs +0 -288
  1039. package/dist/bundled-agents/memory-graph-agents/src/storage/mod.rs +0 -202
  1040. package/dist/bundled-agents/memory-graph-agents/src/storage/pooled_backend.rs +0 -564
  1041. package/dist/bundled-agents/memory-graph-agents/src/storage/serialization.rs +0 -142
  1042. package/dist/bundled-agents/memory-graph-agents/src/storage/sled_backend.rs +0 -336
  1043. package/dist/bundled-agents/memory-graph-agents/src/types/config.rs +0 -104
  1044. package/dist/bundled-agents/memory-graph-agents/src/types/edges.rs +0 -1067
  1045. package/dist/bundled-agents/memory-graph-agents/src/types/ids.rs +0 -289
  1046. package/dist/bundled-agents/memory-graph-agents/src/types/mod.rs +0 -18
  1047. package/dist/bundled-agents/memory-graph-agents/src/types/nodes.rs +0 -1712
  1048. package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.d.ts +0 -9
  1049. package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.d.ts.map +0 -1
  1050. package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.js +0 -33
  1051. package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.js.map +0 -1
  1052. package/dist/bundled-agents/registry-agents/dist/agents/index-agent.d.ts +0 -9
  1053. package/dist/bundled-agents/registry-agents/dist/agents/index-agent.d.ts.map +0 -1
  1054. package/dist/bundled-agents/registry-agents/dist/agents/index-agent.js +0 -22
  1055. package/dist/bundled-agents/registry-agents/dist/agents/index-agent.js.map +0 -1
  1056. package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.d.ts +0 -9
  1057. package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.d.ts.map +0 -1
  1058. package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.js +0 -27
  1059. package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.js.map +0 -1
  1060. package/dist/bundled-agents/registry-agents/dist/claude.js +0 -68
  1061. package/dist/bundled-agents/registry-agents/dist/contracts.d.ts +0 -217
  1062. package/dist/bundled-agents/registry-agents/dist/contracts.d.ts.map +0 -1
  1063. package/dist/bundled-agents/registry-agents/dist/contracts.js +0 -102
  1064. package/dist/bundled-agents/registry-agents/dist/contracts.js.map +0 -1
  1065. package/dist/bundled-agents/registry-agents/dist/index.d.ts +0 -25
  1066. package/dist/bundled-agents/registry-agents/dist/index.d.ts.map +0 -1
  1067. package/dist/bundled-agents/registry-agents/dist/index.js +0 -217
  1068. package/dist/bundled-agents/registry-agents/dist/index.js.map +0 -1
  1069. package/dist/bundled-agents/registry-agents/dist/index.test.d.ts +0 -2
  1070. package/dist/bundled-agents/registry-agents/dist/index.test.d.ts.map +0 -1
  1071. package/dist/bundled-agents/registry-agents/dist/index.test.js +0 -218
  1072. package/dist/bundled-agents/registry-agents/dist/index.test.js.map +0 -1
  1073. package/dist/bundled-agents/registry-agents/package-lock.json +0 -1713
  1074. package/dist/bundled-agents/registry-agents/package.json +0 -23
  1075. package/dist/bundled-agents/schema-registry-agents/index.js +0 -245
  1076. package/dist/bundled-agents/schema-registry-agents/package-lock.json +0 -5774
  1077. package/dist/bundled-agents/schema-registry-agents/package.json +0 -19
  1078. package/dist/bundled-agents/simulator-agents/index.js +0 -536
  1079. package/dist/bundled-agents/simulator-agents/package-lock.json +0 -11977
  1080. package/dist/bundled-agents/simulator-agents/package.json +0 -19
  1081. package/dist/bundled-agents/test-bench-agents/dist/.tsbuildinfo +0 -1
  1082. package/dist/bundled-agents/test-bench-agents/dist/claude.js +0 -68
  1083. package/dist/bundled-agents/test-bench-agents/dist/cli.d.ts +0 -3
  1084. package/dist/bundled-agents/test-bench-agents/dist/cli.d.ts.map +0 -1
  1085. package/dist/bundled-agents/test-bench-agents/dist/cli.js +0 -47
  1086. package/dist/bundled-agents/test-bench-agents/dist/cli.js.map +0 -1
  1087. package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.d.ts +0 -120
  1088. package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.d.ts.map +0 -1
  1089. package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.js +0 -129
  1090. package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.js.map +0 -1
  1091. package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.d.ts +0 -35
  1092. package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.d.ts.map +0 -1
  1093. package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.js +0 -246
  1094. package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.js.map +0 -1
  1095. package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.d.ts +0 -37
  1096. package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.d.ts.map +0 -1
  1097. package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.js +0 -135
  1098. package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.js.map +0 -1
  1099. package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.d.ts +0 -28
  1100. package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.d.ts.map +0 -1
  1101. package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.js +0 -67
  1102. package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.js.map +0 -1
  1103. package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.d.ts +0 -3
  1104. package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.d.ts.map +0 -1
  1105. package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.js +0 -85
  1106. package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.js.map +0 -1
  1107. package/dist/bundled-agents/test-bench-agents/dist/execution/index.d.ts +0 -10
  1108. package/dist/bundled-agents/test-bench-agents/dist/execution/index.d.ts.map +0 -1
  1109. package/dist/bundled-agents/test-bench-agents/dist/execution/index.js +0 -7
  1110. package/dist/bundled-agents/test-bench-agents/dist/execution/index.js.map +0 -1
  1111. package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.d.ts +0 -39
  1112. package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.d.ts.map +0 -1
  1113. package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.js +0 -178
  1114. package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.js.map +0 -1
  1115. package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.d.ts +0 -25
  1116. package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.d.ts.map +0 -1
  1117. package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.js +0 -75
  1118. package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.js.map +0 -1
  1119. package/dist/bundled-agents/test-bench-agents/dist/execution/policy.d.ts +0 -108
  1120. package/dist/bundled-agents/test-bench-agents/dist/execution/policy.d.ts.map +0 -1
  1121. package/dist/bundled-agents/test-bench-agents/dist/execution/policy.js +0 -53
  1122. package/dist/bundled-agents/test-bench-agents/dist/execution/policy.js.map +0 -1
  1123. package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.d.ts +0 -28
  1124. package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.d.ts.map +0 -1
  1125. package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.js +0 -164
  1126. package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.js.map +0 -1
  1127. package/dist/bundled-agents/test-bench-agents/dist/execution/types.d.ts +0 -37
  1128. package/dist/bundled-agents/test-bench-agents/dist/execution/types.d.ts.map +0 -1
  1129. package/dist/bundled-agents/test-bench-agents/dist/execution/types.js +0 -9
  1130. package/dist/bundled-agents/test-bench-agents/dist/execution/types.js.map +0 -1
  1131. package/dist/bundled-agents/test-bench-agents/dist/index.d.ts +0 -16
  1132. package/dist/bundled-agents/test-bench-agents/dist/index.d.ts.map +0 -1
  1133. package/dist/bundled-agents/test-bench-agents/dist/index.js +0 -13
  1134. package/dist/bundled-agents/test-bench-agents/dist/index.js.map +0 -1
  1135. package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.d.ts +0 -87
  1136. package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.d.ts.map +0 -1
  1137. package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.js +0 -2
  1138. package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.js.map +0 -1
  1139. package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.d.ts +0 -98
  1140. package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.d.ts.map +0 -1
  1141. package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.js +0 -2
  1142. package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.js.map +0 -1
  1143. package/dist/bundled-agents/test-bench-agents/dist/types/index.d.ts +0 -20
  1144. package/dist/bundled-agents/test-bench-agents/dist/types/index.d.ts.map +0 -1
  1145. package/dist/bundled-agents/test-bench-agents/dist/types/index.js +0 -4
  1146. package/dist/bundled-agents/test-bench-agents/dist/types/index.js.map +0 -1
  1147. package/dist/bundled-agents/test-bench-agents/dist/types/providers.d.ts +0 -64
  1148. package/dist/bundled-agents/test-bench-agents/dist/types/providers.d.ts.map +0 -1
  1149. package/dist/bundled-agents/test-bench-agents/dist/types/providers.js +0 -2
  1150. package/dist/bundled-agents/test-bench-agents/dist/types/providers.js.map +0 -1
  1151. package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.d.ts +0 -11
  1152. package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.d.ts.map +0 -1
  1153. package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.js +0 -95
  1154. package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.js.map +0 -1
  1155. package/dist/bundled-agents/test-bench-agents/dist/utils/validators.d.ts +0 -8
  1156. package/dist/bundled-agents/test-bench-agents/dist/utils/validators.d.ts.map +0 -1
  1157. package/dist/bundled-agents/test-bench-agents/dist/utils/validators.js +0 -94
  1158. package/dist/bundled-agents/test-bench-agents/dist/utils/validators.js.map +0 -1
  1159. package/dist/bundled-agents/test-bench-agents/functions/dist/index.js +0 -212
  1160. package/dist/bundled-agents/test-bench-agents/functions/index.ts +0 -257
  1161. package/dist/bundled-agents/test-bench-agents/package-lock.json +0 -12743
  1162. package/dist/bundled-agents/test-bench-agents/package.json +0 -113
  1163. package/dist/bundled-agents/test-bench-agents/src/cli.ts +0 -72
  1164. package/dist/bundled-agents/test-bench-agents/src/core/fleet-benchmark.ts +0 -503
  1165. package/dist/bundled-agents/test-bench-agents/src/core/llm-test-bench.ts +0 -420
  1166. package/dist/bundled-agents/test-bench-agents/src/core/provider-client.ts +0 -233
  1167. package/dist/bundled-agents/test-bench-agents/src/evaluators/index.ts +0 -137
  1168. package/dist/bundled-agents/test-bench-agents/src/execution/default-policy.ts +0 -98
  1169. package/dist/bundled-agents/test-bench-agents/src/execution/index.ts +0 -52
  1170. package/dist/bundled-agents/test-bench-agents/src/execution/instrumented.ts +0 -337
  1171. package/dist/bundled-agents/test-bench-agents/src/execution/policy-gate.ts +0 -166
  1172. package/dist/bundled-agents/test-bench-agents/src/execution/policy.ts +0 -130
  1173. package/dist/bundled-agents/test-bench-agents/src/execution/span-manager.ts +0 -292
  1174. package/dist/bundled-agents/test-bench-agents/src/execution/types.ts +0 -125
  1175. package/dist/bundled-agents/test-bench-agents/src/index.ts +0 -100
  1176. package/dist/bundled-agents/test-bench-agents/src/types/benchmarks.ts +0 -219
  1177. package/dist/bundled-agents/test-bench-agents/src/types/evaluators.ts +0 -253
  1178. package/dist/bundled-agents/test-bench-agents/src/types/index.ts +0 -55
  1179. package/dist/bundled-agents/test-bench-agents/src/types/providers.ts +0 -193
  1180. package/dist/bundled-agents/test-bench-agents/src/utils/cli-executor.ts +0 -170
  1181. package/dist/bundled-agents/test-bench-agents/src/utils/validators.ts +0 -166
  1182. package/dist/enterprise/index.d.ts +0 -16
  1183. package/dist/enterprise/index.d.ts.map +0 -1
  1184. package/dist/enterprise/index.js +0 -17
  1185. package/dist/enterprise/index.js.map +0 -1
@@ -0,0 +1,1043 @@
1
+ /**
2
+ * Phase 2 Pipeline Schemas
3
+ *
4
+ * Zod validation schemas for all Phase 2 pipeline types.
5
+ * Covers Phase 1 input artifacts, research dossier, SPARC output,
6
+ * ADR records, DDD domain model, TDD plan, and the Phase 2 manifest.
7
+ *
8
+ * All object schemas for Phase 1 inputs use `.passthrough()` for
9
+ * forward-compatibility with evolving upstream formats.
10
+ */
11
+ import { z } from 'zod';
12
+ export declare const Phase1ManifestSchema: z.ZodObject<{
13
+ run_id: z.ZodString;
14
+ execution_id: z.ZodString;
15
+ correlation_id: z.ZodString;
16
+ query: z.ZodString;
17
+ created_at: z.ZodString;
18
+ timing_ms: z.ZodNumber;
19
+ agents_invoked: z.ZodArray<z.ZodObject<{
20
+ domain: z.ZodString;
21
+ agent: z.ZodString;
22
+ status: z.ZodString;
23
+ }, z.core.$strip>>;
24
+ artifacts: z.ZodArray<z.ZodString>;
25
+ schema_version: z.ZodString;
26
+ }, z.core.$loose>;
27
+ export declare const ScenarioArtifactSchema: z.ZodObject<{
28
+ query: z.ZodOptional<z.ZodString>;
29
+ }, z.core.$loose>;
30
+ export declare const RoadmapArtifactSchema: z.ZodObject<{
31
+ phases: z.ZodOptional<z.ZodArray<z.ZodObject<{
32
+ name: z.ZodString;
33
+ }, z.core.$loose>>>;
34
+ }, z.core.$loose>;
35
+ export declare const RiskAssessmentArtifactSchema: z.ZodObject<{
36
+ risk_factors: z.ZodArray<z.ZodObject<{
37
+ id: z.ZodString;
38
+ category: z.ZodString;
39
+ description: z.ZodString;
40
+ severity: z.ZodString;
41
+ likelihood: z.ZodString;
42
+ mitigation: z.ZodString;
43
+ }, z.core.$loose>>;
44
+ overall_risk_level: z.ZodString;
45
+ }, z.core.$loose>;
46
+ export declare const DossierItemSchema: z.ZodObject<{
47
+ id: z.ZodString;
48
+ source: z.ZodEnum<{
49
+ scenario: "scenario";
50
+ roadmap: "roadmap";
51
+ "risk-assessment": "risk-assessment";
52
+ "agent-result": "agent-result";
53
+ "user-context": "user-context";
54
+ }>;
55
+ category: z.ZodEnum<{
56
+ decision: "decision";
57
+ risk: "risk";
58
+ constraint: "constraint";
59
+ requirement: "requirement";
60
+ assumption: "assumption";
61
+ dependency: "dependency";
62
+ }>;
63
+ title: z.ZodString;
64
+ content: z.ZodString;
65
+ severity: z.ZodOptional<z.ZodString>;
66
+ phase: z.ZodOptional<z.ZodString>;
67
+ }, z.core.$strip>;
68
+ export declare const DossierCrossReferenceSchema: z.ZodObject<{
69
+ fromId: z.ZodString;
70
+ toId: z.ZodString;
71
+ relationship: z.ZodEnum<{
72
+ mitigates: "mitigates";
73
+ "depends-on": "depends-on";
74
+ "conflicts-with": "conflicts-with";
75
+ blocks: "blocks";
76
+ refines: "refines";
77
+ }>;
78
+ }, z.core.$strip>;
79
+ export declare const DossierSummarySchema: z.ZodObject<{
80
+ totalItems: z.ZodNumber;
81
+ bySource: z.ZodRecord<z.ZodString, z.ZodNumber>;
82
+ byCategory: z.ZodRecord<z.ZodString, z.ZodNumber>;
83
+ keyRisks: z.ZodArray<z.ZodString>;
84
+ criticalConstraints: z.ZodArray<z.ZodString>;
85
+ }, z.core.$strip>;
86
+ export declare const ResearchDossierSchema: z.ZodObject<{
87
+ items: z.ZodArray<z.ZodObject<{
88
+ id: z.ZodString;
89
+ source: z.ZodEnum<{
90
+ scenario: "scenario";
91
+ roadmap: "roadmap";
92
+ "risk-assessment": "risk-assessment";
93
+ "agent-result": "agent-result";
94
+ "user-context": "user-context";
95
+ }>;
96
+ category: z.ZodEnum<{
97
+ decision: "decision";
98
+ risk: "risk";
99
+ constraint: "constraint";
100
+ requirement: "requirement";
101
+ assumption: "assumption";
102
+ dependency: "dependency";
103
+ }>;
104
+ title: z.ZodString;
105
+ content: z.ZodString;
106
+ severity: z.ZodOptional<z.ZodString>;
107
+ phase: z.ZodOptional<z.ZodString>;
108
+ }, z.core.$strip>>;
109
+ crossReferences: z.ZodArray<z.ZodObject<{
110
+ fromId: z.ZodString;
111
+ toId: z.ZodString;
112
+ relationship: z.ZodEnum<{
113
+ mitigates: "mitigates";
114
+ "depends-on": "depends-on";
115
+ "conflicts-with": "conflicts-with";
116
+ blocks: "blocks";
117
+ refines: "refines";
118
+ }>;
119
+ }, z.core.$strip>>;
120
+ summary: z.ZodObject<{
121
+ totalItems: z.ZodNumber;
122
+ bySource: z.ZodRecord<z.ZodString, z.ZodNumber>;
123
+ byCategory: z.ZodRecord<z.ZodString, z.ZodNumber>;
124
+ keyRisks: z.ZodArray<z.ZodString>;
125
+ criticalConstraints: z.ZodArray<z.ZodString>;
126
+ }, z.core.$strip>;
127
+ generatedAt: z.ZodString;
128
+ sourceManifest: z.ZodString;
129
+ }, z.core.$strip>;
130
+ export declare const Phase2RequirementSchema: z.ZodObject<{
131
+ id: z.ZodString;
132
+ text: z.ZodString;
133
+ dossierItemRefs: z.ZodArray<z.ZodString>;
134
+ priority: z.ZodEnum<{
135
+ "must-have": "must-have";
136
+ "should-have": "should-have";
137
+ "could-have": "could-have";
138
+ "wont-have": "wont-have";
139
+ }>;
140
+ }, z.core.$strip>;
141
+ export declare const Phase2ConstraintSchema: z.ZodObject<{
142
+ id: z.ZodString;
143
+ text: z.ZodString;
144
+ dossierItemRefs: z.ZodArray<z.ZodString>;
145
+ enforcedBy: z.ZodOptional<z.ZodString>;
146
+ }, z.core.$strip>;
147
+ export declare const Phase2SuccessCriterionSchema: z.ZodObject<{
148
+ id: z.ZodString;
149
+ text: z.ZodString;
150
+ metric: z.ZodOptional<z.ZodString>;
151
+ threshold: z.ZodOptional<z.ZodString>;
152
+ }, z.core.$strip>;
153
+ export declare const Phase2SpecificationSchema: z.ZodObject<{
154
+ requirements: z.ZodArray<z.ZodObject<{
155
+ id: z.ZodString;
156
+ text: z.ZodString;
157
+ dossierItemRefs: z.ZodArray<z.ZodString>;
158
+ priority: z.ZodEnum<{
159
+ "must-have": "must-have";
160
+ "should-have": "should-have";
161
+ "could-have": "could-have";
162
+ "wont-have": "wont-have";
163
+ }>;
164
+ }, z.core.$strip>>;
165
+ constraints: z.ZodArray<z.ZodObject<{
166
+ id: z.ZodString;
167
+ text: z.ZodString;
168
+ dossierItemRefs: z.ZodArray<z.ZodString>;
169
+ enforcedBy: z.ZodOptional<z.ZodString>;
170
+ }, z.core.$strip>>;
171
+ successCriteria: z.ZodArray<z.ZodObject<{
172
+ id: z.ZodString;
173
+ text: z.ZodString;
174
+ metric: z.ZodOptional<z.ZodString>;
175
+ threshold: z.ZodOptional<z.ZodString>;
176
+ }, z.core.$strip>>;
177
+ scope: z.ZodString;
178
+ }, z.core.$strip>;
179
+ export declare const Phase2PseudocodeModuleSchema: z.ZodObject<{
180
+ name: z.ZodString;
181
+ description: z.ZodString;
182
+ steps: z.ZodArray<z.ZodString>;
183
+ tddAnchors: z.ZodArray<z.ZodString>;
184
+ dataStructures: z.ZodArray<z.ZodString>;
185
+ }, z.core.$strip>;
186
+ export declare const Phase2PseudocodeSchema: z.ZodObject<{
187
+ modules: z.ZodArray<z.ZodObject<{
188
+ name: z.ZodString;
189
+ description: z.ZodString;
190
+ steps: z.ZodArray<z.ZodString>;
191
+ tddAnchors: z.ZodArray<z.ZodString>;
192
+ dataStructures: z.ZodArray<z.ZodString>;
193
+ }, z.core.$strip>>;
194
+ }, z.core.$strip>;
195
+ export declare const Phase2ServiceDefinitionSchema: z.ZodObject<{
196
+ name: z.ZodString;
197
+ responsibility: z.ZodString;
198
+ api: z.ZodArray<z.ZodString>;
199
+ dependencies: z.ZodArray<z.ZodString>;
200
+ boundedContext: z.ZodOptional<z.ZodString>;
201
+ }, z.core.$strip>;
202
+ export declare const Phase2ArchitectureSchema: z.ZodObject<{
203
+ services: z.ZodArray<z.ZodObject<{
204
+ name: z.ZodString;
205
+ responsibility: z.ZodString;
206
+ api: z.ZodArray<z.ZodString>;
207
+ dependencies: z.ZodArray<z.ZodString>;
208
+ boundedContext: z.ZodOptional<z.ZodString>;
209
+ }, z.core.$strip>>;
210
+ boundaries: z.ZodArray<z.ZodString>;
211
+ dataFlow: z.ZodString;
212
+ apiContracts: z.ZodArray<z.ZodString>;
213
+ }, z.core.$strip>;
214
+ export declare const Phase2RefinementSchema: z.ZodObject<{
215
+ securityConsiderations: z.ZodArray<z.ZodString>;
216
+ performanceTargets: z.ZodArray<z.ZodString>;
217
+ testStrategy: z.ZodString;
218
+ edgeCases: z.ZodOptional<z.ZodArray<z.ZodString>>;
219
+ }, z.core.$strip>;
220
+ export declare const Phase2CompletionSchema: z.ZodObject<{
221
+ integrationPlan: z.ZodString;
222
+ documentation: z.ZodArray<z.ZodString>;
223
+ monitoringSetup: z.ZodArray<z.ZodString>;
224
+ deploymentChecklist: z.ZodOptional<z.ZodArray<z.ZodString>>;
225
+ }, z.core.$strip>;
226
+ export declare const Phase2SPARCOutputSchema: z.ZodObject<{
227
+ specification: z.ZodObject<{
228
+ requirements: z.ZodArray<z.ZodObject<{
229
+ id: z.ZodString;
230
+ text: z.ZodString;
231
+ dossierItemRefs: z.ZodArray<z.ZodString>;
232
+ priority: z.ZodEnum<{
233
+ "must-have": "must-have";
234
+ "should-have": "should-have";
235
+ "could-have": "could-have";
236
+ "wont-have": "wont-have";
237
+ }>;
238
+ }, z.core.$strip>>;
239
+ constraints: z.ZodArray<z.ZodObject<{
240
+ id: z.ZodString;
241
+ text: z.ZodString;
242
+ dossierItemRefs: z.ZodArray<z.ZodString>;
243
+ enforcedBy: z.ZodOptional<z.ZodString>;
244
+ }, z.core.$strip>>;
245
+ successCriteria: z.ZodArray<z.ZodObject<{
246
+ id: z.ZodString;
247
+ text: z.ZodString;
248
+ metric: z.ZodOptional<z.ZodString>;
249
+ threshold: z.ZodOptional<z.ZodString>;
250
+ }, z.core.$strip>>;
251
+ scope: z.ZodString;
252
+ }, z.core.$strip>;
253
+ pseudocode: z.ZodObject<{
254
+ modules: z.ZodArray<z.ZodObject<{
255
+ name: z.ZodString;
256
+ description: z.ZodString;
257
+ steps: z.ZodArray<z.ZodString>;
258
+ tddAnchors: z.ZodArray<z.ZodString>;
259
+ dataStructures: z.ZodArray<z.ZodString>;
260
+ }, z.core.$strip>>;
261
+ }, z.core.$strip>;
262
+ architecture: z.ZodObject<{
263
+ services: z.ZodArray<z.ZodObject<{
264
+ name: z.ZodString;
265
+ responsibility: z.ZodString;
266
+ api: z.ZodArray<z.ZodString>;
267
+ dependencies: z.ZodArray<z.ZodString>;
268
+ boundedContext: z.ZodOptional<z.ZodString>;
269
+ }, z.core.$strip>>;
270
+ boundaries: z.ZodArray<z.ZodString>;
271
+ dataFlow: z.ZodString;
272
+ apiContracts: z.ZodArray<z.ZodString>;
273
+ }, z.core.$strip>;
274
+ refinement: z.ZodObject<{
275
+ securityConsiderations: z.ZodArray<z.ZodString>;
276
+ performanceTargets: z.ZodArray<z.ZodString>;
277
+ testStrategy: z.ZodString;
278
+ edgeCases: z.ZodOptional<z.ZodArray<z.ZodString>>;
279
+ }, z.core.$strip>;
280
+ completion: z.ZodObject<{
281
+ integrationPlan: z.ZodString;
282
+ documentation: z.ZodArray<z.ZodString>;
283
+ monitoringSetup: z.ZodArray<z.ZodString>;
284
+ deploymentChecklist: z.ZodOptional<z.ZodArray<z.ZodString>>;
285
+ }, z.core.$strip>;
286
+ }, z.core.$strip>;
287
+ export declare const Phase2ADRAlternativeSchema: z.ZodObject<{
288
+ title: z.ZodString;
289
+ description: z.ZodString;
290
+ tradeoffs: z.ZodArray<z.ZodString>;
291
+ }, z.core.$strip>;
292
+ export declare const Phase2ADRConsequenceSchema: z.ZodObject<{
293
+ description: z.ZodString;
294
+ type: z.ZodEnum<{
295
+ positive: "positive";
296
+ negative: "negative";
297
+ neutral: "neutral";
298
+ }>;
299
+ }, z.core.$strip>;
300
+ export declare const Phase2ADRRecordSchema: z.ZodObject<{
301
+ id: z.ZodString;
302
+ title: z.ZodString;
303
+ status: z.ZodEnum<{
304
+ accepted: "accepted";
305
+ proposed: "proposed";
306
+ deprecated: "deprecated";
307
+ superseded: "superseded";
308
+ }>;
309
+ date: z.ZodString;
310
+ context: z.ZodString;
311
+ decision: z.ZodString;
312
+ alternatives: z.ZodArray<z.ZodObject<{
313
+ title: z.ZodString;
314
+ description: z.ZodString;
315
+ tradeoffs: z.ZodArray<z.ZodString>;
316
+ }, z.core.$strip>>;
317
+ consequences: z.ZodArray<z.ZodObject<{
318
+ description: z.ZodString;
319
+ type: z.ZodEnum<{
320
+ positive: "positive";
321
+ negative: "negative";
322
+ neutral: "neutral";
323
+ }>;
324
+ }, z.core.$strip>>;
325
+ dossierItemRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
326
+ }, z.core.$strip>;
327
+ export declare const Phase2EntitySchema: z.ZodObject<{
328
+ name: z.ZodString;
329
+ properties: z.ZodArray<z.ZodObject<{
330
+ name: z.ZodString;
331
+ type: z.ZodString;
332
+ required: z.ZodBoolean;
333
+ }, z.core.$strip>>;
334
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
335
+ }, z.core.$strip>;
336
+ export declare const Phase2ValueObjectSchema: z.ZodObject<{
337
+ name: z.ZodString;
338
+ properties: z.ZodArray<z.ZodObject<{
339
+ name: z.ZodString;
340
+ type: z.ZodString;
341
+ }, z.core.$strip>>;
342
+ validationRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
343
+ }, z.core.$strip>;
344
+ export declare const Phase2AggregateDefinitionSchema: z.ZodObject<{
345
+ name: z.ZodString;
346
+ root: z.ZodString;
347
+ entities: z.ZodArray<z.ZodObject<{
348
+ name: z.ZodString;
349
+ properties: z.ZodArray<z.ZodObject<{
350
+ name: z.ZodString;
351
+ type: z.ZodString;
352
+ required: z.ZodBoolean;
353
+ }, z.core.$strip>>;
354
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
355
+ }, z.core.$strip>>;
356
+ valueObjects: z.ZodArray<z.ZodObject<{
357
+ name: z.ZodString;
358
+ properties: z.ZodArray<z.ZodObject<{
359
+ name: z.ZodString;
360
+ type: z.ZodString;
361
+ }, z.core.$strip>>;
362
+ validationRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
363
+ }, z.core.$strip>>;
364
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
365
+ }, z.core.$strip>;
366
+ export declare const Phase2DomainEventSchema: z.ZodObject<{
367
+ name: z.ZodString;
368
+ aggregate: z.ZodString;
369
+ payload: z.ZodArray<z.ZodObject<{
370
+ name: z.ZodString;
371
+ type: z.ZodString;
372
+ }, z.core.$strip>>;
373
+ description: z.ZodOptional<z.ZodString>;
374
+ }, z.core.$strip>;
375
+ export declare const Phase2CommandSchema: z.ZodObject<{
376
+ name: z.ZodString;
377
+ aggregate: z.ZodString;
378
+ parameters: z.ZodArray<z.ZodObject<{
379
+ name: z.ZodString;
380
+ type: z.ZodString;
381
+ required: z.ZodBoolean;
382
+ }, z.core.$strip>>;
383
+ emits: z.ZodArray<z.ZodString>;
384
+ }, z.core.$strip>;
385
+ export declare const Phase2QuerySchema: z.ZodObject<{
386
+ name: z.ZodString;
387
+ parameters: z.ZodArray<z.ZodObject<{
388
+ name: z.ZodString;
389
+ type: z.ZodString;
390
+ }, z.core.$strip>>;
391
+ returns: z.ZodString;
392
+ }, z.core.$strip>;
393
+ export declare const UbiquitousLanguageTermSchema: z.ZodObject<{
394
+ term: z.ZodString;
395
+ definition: z.ZodString;
396
+ context: z.ZodString;
397
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
398
+ }, z.core.$strip>;
399
+ export declare const Phase2DDDBoundedContextSchema: z.ZodObject<{
400
+ name: z.ZodString;
401
+ description: z.ZodString;
402
+ aggregates: z.ZodArray<z.ZodObject<{
403
+ name: z.ZodString;
404
+ root: z.ZodString;
405
+ entities: z.ZodArray<z.ZodObject<{
406
+ name: z.ZodString;
407
+ properties: z.ZodArray<z.ZodObject<{
408
+ name: z.ZodString;
409
+ type: z.ZodString;
410
+ required: z.ZodBoolean;
411
+ }, z.core.$strip>>;
412
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
413
+ }, z.core.$strip>>;
414
+ valueObjects: z.ZodArray<z.ZodObject<{
415
+ name: z.ZodString;
416
+ properties: z.ZodArray<z.ZodObject<{
417
+ name: z.ZodString;
418
+ type: z.ZodString;
419
+ }, z.core.$strip>>;
420
+ validationRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
421
+ }, z.core.$strip>>;
422
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
423
+ }, z.core.$strip>>;
424
+ domainEvents: z.ZodArray<z.ZodObject<{
425
+ name: z.ZodString;
426
+ aggregate: z.ZodString;
427
+ payload: z.ZodArray<z.ZodObject<{
428
+ name: z.ZodString;
429
+ type: z.ZodString;
430
+ }, z.core.$strip>>;
431
+ description: z.ZodOptional<z.ZodString>;
432
+ }, z.core.$strip>>;
433
+ commands: z.ZodArray<z.ZodObject<{
434
+ name: z.ZodString;
435
+ aggregate: z.ZodString;
436
+ parameters: z.ZodArray<z.ZodObject<{
437
+ name: z.ZodString;
438
+ type: z.ZodString;
439
+ required: z.ZodBoolean;
440
+ }, z.core.$strip>>;
441
+ emits: z.ZodArray<z.ZodString>;
442
+ }, z.core.$strip>>;
443
+ queries: z.ZodArray<z.ZodObject<{
444
+ name: z.ZodString;
445
+ parameters: z.ZodArray<z.ZodObject<{
446
+ name: z.ZodString;
447
+ type: z.ZodString;
448
+ }, z.core.$strip>>;
449
+ returns: z.ZodString;
450
+ }, z.core.$strip>>;
451
+ ubiquitousLanguage: z.ZodOptional<z.ZodArray<z.ZodObject<{
452
+ term: z.ZodString;
453
+ definition: z.ZodString;
454
+ context: z.ZodString;
455
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
456
+ }, z.core.$strip>>>;
457
+ }, z.core.$strip>;
458
+ export declare const Phase2ContextRelationSchema: z.ZodObject<{
459
+ upstream: z.ZodString;
460
+ downstream: z.ZodString;
461
+ type: z.ZodEnum<{
462
+ partnership: "partnership";
463
+ "customer-supplier": "customer-supplier";
464
+ conformist: "conformist";
465
+ "anticorruption-layer": "anticorruption-layer";
466
+ "open-host-service": "open-host-service";
467
+ "shared-kernel": "shared-kernel";
468
+ }>;
469
+ description: z.ZodOptional<z.ZodString>;
470
+ }, z.core.$strip>;
471
+ export declare const Phase2DomainModelSchema: z.ZodObject<{
472
+ contexts: z.ZodArray<z.ZodObject<{
473
+ name: z.ZodString;
474
+ description: z.ZodString;
475
+ aggregates: z.ZodArray<z.ZodObject<{
476
+ name: z.ZodString;
477
+ root: z.ZodString;
478
+ entities: z.ZodArray<z.ZodObject<{
479
+ name: z.ZodString;
480
+ properties: z.ZodArray<z.ZodObject<{
481
+ name: z.ZodString;
482
+ type: z.ZodString;
483
+ required: z.ZodBoolean;
484
+ }, z.core.$strip>>;
485
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
486
+ }, z.core.$strip>>;
487
+ valueObjects: z.ZodArray<z.ZodObject<{
488
+ name: z.ZodString;
489
+ properties: z.ZodArray<z.ZodObject<{
490
+ name: z.ZodString;
491
+ type: z.ZodString;
492
+ }, z.core.$strip>>;
493
+ validationRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
494
+ }, z.core.$strip>>;
495
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
496
+ }, z.core.$strip>>;
497
+ domainEvents: z.ZodArray<z.ZodObject<{
498
+ name: z.ZodString;
499
+ aggregate: z.ZodString;
500
+ payload: z.ZodArray<z.ZodObject<{
501
+ name: z.ZodString;
502
+ type: z.ZodString;
503
+ }, z.core.$strip>>;
504
+ description: z.ZodOptional<z.ZodString>;
505
+ }, z.core.$strip>>;
506
+ commands: z.ZodArray<z.ZodObject<{
507
+ name: z.ZodString;
508
+ aggregate: z.ZodString;
509
+ parameters: z.ZodArray<z.ZodObject<{
510
+ name: z.ZodString;
511
+ type: z.ZodString;
512
+ required: z.ZodBoolean;
513
+ }, z.core.$strip>>;
514
+ emits: z.ZodArray<z.ZodString>;
515
+ }, z.core.$strip>>;
516
+ queries: z.ZodArray<z.ZodObject<{
517
+ name: z.ZodString;
518
+ parameters: z.ZodArray<z.ZodObject<{
519
+ name: z.ZodString;
520
+ type: z.ZodString;
521
+ }, z.core.$strip>>;
522
+ returns: z.ZodString;
523
+ }, z.core.$strip>>;
524
+ ubiquitousLanguage: z.ZodOptional<z.ZodArray<z.ZodObject<{
525
+ term: z.ZodString;
526
+ definition: z.ZodString;
527
+ context: z.ZodString;
528
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
529
+ }, z.core.$strip>>>;
530
+ }, z.core.$strip>>;
531
+ contextMap: z.ZodArray<z.ZodObject<{
532
+ upstream: z.ZodString;
533
+ downstream: z.ZodString;
534
+ type: z.ZodEnum<{
535
+ partnership: "partnership";
536
+ "customer-supplier": "customer-supplier";
537
+ conformist: "conformist";
538
+ "anticorruption-layer": "anticorruption-layer";
539
+ "open-host-service": "open-host-service";
540
+ "shared-kernel": "shared-kernel";
541
+ }>;
542
+ description: z.ZodOptional<z.ZodString>;
543
+ }, z.core.$strip>>;
544
+ ubiquitousLanguage: z.ZodOptional<z.ZodArray<z.ZodObject<{
545
+ term: z.ZodString;
546
+ definition: z.ZodString;
547
+ context: z.ZodString;
548
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
549
+ }, z.core.$strip>>>;
550
+ }, z.core.$strip>;
551
+ export declare const TestPyramidLevelSchema: z.ZodObject<{
552
+ level: z.ZodEnum<{
553
+ integration: "integration";
554
+ unit: "unit";
555
+ e2e: "e2e";
556
+ contract: "contract";
557
+ }>;
558
+ targetCount: z.ZodNumber;
559
+ description: z.ZodString;
560
+ }, z.core.$strip>;
561
+ export declare const TestPyramidSchema: z.ZodObject<{
562
+ levels: z.ZodArray<z.ZodObject<{
563
+ level: z.ZodEnum<{
564
+ integration: "integration";
565
+ unit: "unit";
566
+ e2e: "e2e";
567
+ contract: "contract";
568
+ }>;
569
+ targetCount: z.ZodNumber;
570
+ description: z.ZodString;
571
+ }, z.core.$strip>>;
572
+ coverageTarget: z.ZodNumber;
573
+ }, z.core.$strip>;
574
+ export declare const TDDTestCaseSchema: z.ZodObject<{
575
+ id: z.ZodString;
576
+ name: z.ZodString;
577
+ level: z.ZodEnum<{
578
+ integration: "integration";
579
+ unit: "unit";
580
+ e2e: "e2e";
581
+ contract: "contract";
582
+ }>;
583
+ description: z.ZodString;
584
+ givenWhenThen: z.ZodObject<{
585
+ given: z.ZodString;
586
+ when: z.ZodString;
587
+ then: z.ZodString;
588
+ }, z.core.$strip>;
589
+ boundedContext: z.ZodOptional<z.ZodString>;
590
+ aggregate: z.ZodOptional<z.ZodString>;
591
+ dossierItemRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
592
+ }, z.core.$strip>;
593
+ export declare const TDDTestSuiteSchema: z.ZodObject<{
594
+ name: z.ZodString;
595
+ boundedContext: z.ZodString;
596
+ testCases: z.ZodArray<z.ZodObject<{
597
+ id: z.ZodString;
598
+ name: z.ZodString;
599
+ level: z.ZodEnum<{
600
+ integration: "integration";
601
+ unit: "unit";
602
+ e2e: "e2e";
603
+ contract: "contract";
604
+ }>;
605
+ description: z.ZodString;
606
+ givenWhenThen: z.ZodObject<{
607
+ given: z.ZodString;
608
+ when: z.ZodString;
609
+ then: z.ZodString;
610
+ }, z.core.$strip>;
611
+ boundedContext: z.ZodOptional<z.ZodString>;
612
+ aggregate: z.ZodOptional<z.ZodString>;
613
+ dossierItemRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
614
+ }, z.core.$strip>>;
615
+ }, z.core.$strip>;
616
+ export declare const MockContractMethodSchema: z.ZodObject<{
617
+ name: z.ZodString;
618
+ parameters: z.ZodArray<z.ZodObject<{
619
+ name: z.ZodString;
620
+ type: z.ZodString;
621
+ }, z.core.$strip>>;
622
+ returns: z.ZodString;
623
+ behavior: z.ZodString;
624
+ }, z.core.$strip>;
625
+ export declare const MockContractSchema: z.ZodObject<{
626
+ name: z.ZodString;
627
+ targetService: z.ZodString;
628
+ methods: z.ZodArray<z.ZodObject<{
629
+ name: z.ZodString;
630
+ parameters: z.ZodArray<z.ZodObject<{
631
+ name: z.ZodString;
632
+ type: z.ZodString;
633
+ }, z.core.$strip>>;
634
+ returns: z.ZodString;
635
+ behavior: z.ZodString;
636
+ }, z.core.$strip>>;
637
+ }, z.core.$strip>;
638
+ export declare const SeamDefinitionSchema: z.ZodObject<{
639
+ name: z.ZodString;
640
+ type: z.ZodEnum<{
641
+ adapter: "adapter";
642
+ "service-boundary": "service-boundary";
643
+ port: "port";
644
+ gateway: "gateway";
645
+ }>;
646
+ from: z.ZodString;
647
+ to: z.ZodString;
648
+ mockContract: z.ZodOptional<z.ZodString>;
649
+ description: z.ZodOptional<z.ZodString>;
650
+ }, z.core.$strip>;
651
+ export declare const TDDPlanSchema: z.ZodObject<{
652
+ approach: z.ZodLiteral<"london-school">;
653
+ pyramid: z.ZodObject<{
654
+ levels: z.ZodArray<z.ZodObject<{
655
+ level: z.ZodEnum<{
656
+ integration: "integration";
657
+ unit: "unit";
658
+ e2e: "e2e";
659
+ contract: "contract";
660
+ }>;
661
+ targetCount: z.ZodNumber;
662
+ description: z.ZodString;
663
+ }, z.core.$strip>>;
664
+ coverageTarget: z.ZodNumber;
665
+ }, z.core.$strip>;
666
+ testSuites: z.ZodArray<z.ZodObject<{
667
+ name: z.ZodString;
668
+ boundedContext: z.ZodString;
669
+ testCases: z.ZodArray<z.ZodObject<{
670
+ id: z.ZodString;
671
+ name: z.ZodString;
672
+ level: z.ZodEnum<{
673
+ integration: "integration";
674
+ unit: "unit";
675
+ e2e: "e2e";
676
+ contract: "contract";
677
+ }>;
678
+ description: z.ZodString;
679
+ givenWhenThen: z.ZodObject<{
680
+ given: z.ZodString;
681
+ when: z.ZodString;
682
+ then: z.ZodString;
683
+ }, z.core.$strip>;
684
+ boundedContext: z.ZodOptional<z.ZodString>;
685
+ aggregate: z.ZodOptional<z.ZodString>;
686
+ dossierItemRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
687
+ }, z.core.$strip>>;
688
+ }, z.core.$strip>>;
689
+ mockContracts: z.ZodArray<z.ZodObject<{
690
+ name: z.ZodString;
691
+ targetService: z.ZodString;
692
+ methods: z.ZodArray<z.ZodObject<{
693
+ name: z.ZodString;
694
+ parameters: z.ZodArray<z.ZodObject<{
695
+ name: z.ZodString;
696
+ type: z.ZodString;
697
+ }, z.core.$strip>>;
698
+ returns: z.ZodString;
699
+ behavior: z.ZodString;
700
+ }, z.core.$strip>>;
701
+ }, z.core.$strip>>;
702
+ seams: z.ZodArray<z.ZodObject<{
703
+ name: z.ZodString;
704
+ type: z.ZodEnum<{
705
+ adapter: "adapter";
706
+ "service-boundary": "service-boundary";
707
+ port: "port";
708
+ gateway: "gateway";
709
+ }>;
710
+ from: z.ZodString;
711
+ to: z.ZodString;
712
+ mockContract: z.ZodOptional<z.ZodString>;
713
+ description: z.ZodOptional<z.ZodString>;
714
+ }, z.core.$strip>>;
715
+ }, z.core.$strip>;
716
+ export declare const Phase2ManifestSchema: z.ZodObject<{
717
+ schema_version: z.ZodLiteral<"2.0.0">;
718
+ run_id: z.ZodString;
719
+ phase1_run_id: z.ZodString;
720
+ created_at: z.ZodString;
721
+ timing_ms: z.ZodNumber;
722
+ query: z.ZodString;
723
+ dossier: z.ZodObject<{
724
+ items: z.ZodArray<z.ZodObject<{
725
+ id: z.ZodString;
726
+ source: z.ZodEnum<{
727
+ scenario: "scenario";
728
+ roadmap: "roadmap";
729
+ "risk-assessment": "risk-assessment";
730
+ "agent-result": "agent-result";
731
+ "user-context": "user-context";
732
+ }>;
733
+ category: z.ZodEnum<{
734
+ decision: "decision";
735
+ risk: "risk";
736
+ constraint: "constraint";
737
+ requirement: "requirement";
738
+ assumption: "assumption";
739
+ dependency: "dependency";
740
+ }>;
741
+ title: z.ZodString;
742
+ content: z.ZodString;
743
+ severity: z.ZodOptional<z.ZodString>;
744
+ phase: z.ZodOptional<z.ZodString>;
745
+ }, z.core.$strip>>;
746
+ crossReferences: z.ZodArray<z.ZodObject<{
747
+ fromId: z.ZodString;
748
+ toId: z.ZodString;
749
+ relationship: z.ZodEnum<{
750
+ mitigates: "mitigates";
751
+ "depends-on": "depends-on";
752
+ "conflicts-with": "conflicts-with";
753
+ blocks: "blocks";
754
+ refines: "refines";
755
+ }>;
756
+ }, z.core.$strip>>;
757
+ summary: z.ZodObject<{
758
+ totalItems: z.ZodNumber;
759
+ bySource: z.ZodRecord<z.ZodString, z.ZodNumber>;
760
+ byCategory: z.ZodRecord<z.ZodString, z.ZodNumber>;
761
+ keyRisks: z.ZodArray<z.ZodString>;
762
+ criticalConstraints: z.ZodArray<z.ZodString>;
763
+ }, z.core.$strip>;
764
+ generatedAt: z.ZodString;
765
+ sourceManifest: z.ZodString;
766
+ }, z.core.$strip>;
767
+ sparc: z.ZodObject<{
768
+ specification: z.ZodObject<{
769
+ requirements: z.ZodArray<z.ZodObject<{
770
+ id: z.ZodString;
771
+ text: z.ZodString;
772
+ dossierItemRefs: z.ZodArray<z.ZodString>;
773
+ priority: z.ZodEnum<{
774
+ "must-have": "must-have";
775
+ "should-have": "should-have";
776
+ "could-have": "could-have";
777
+ "wont-have": "wont-have";
778
+ }>;
779
+ }, z.core.$strip>>;
780
+ constraints: z.ZodArray<z.ZodObject<{
781
+ id: z.ZodString;
782
+ text: z.ZodString;
783
+ dossierItemRefs: z.ZodArray<z.ZodString>;
784
+ enforcedBy: z.ZodOptional<z.ZodString>;
785
+ }, z.core.$strip>>;
786
+ successCriteria: z.ZodArray<z.ZodObject<{
787
+ id: z.ZodString;
788
+ text: z.ZodString;
789
+ metric: z.ZodOptional<z.ZodString>;
790
+ threshold: z.ZodOptional<z.ZodString>;
791
+ }, z.core.$strip>>;
792
+ scope: z.ZodString;
793
+ }, z.core.$strip>;
794
+ pseudocode: z.ZodObject<{
795
+ modules: z.ZodArray<z.ZodObject<{
796
+ name: z.ZodString;
797
+ description: z.ZodString;
798
+ steps: z.ZodArray<z.ZodString>;
799
+ tddAnchors: z.ZodArray<z.ZodString>;
800
+ dataStructures: z.ZodArray<z.ZodString>;
801
+ }, z.core.$strip>>;
802
+ }, z.core.$strip>;
803
+ architecture: z.ZodObject<{
804
+ services: z.ZodArray<z.ZodObject<{
805
+ name: z.ZodString;
806
+ responsibility: z.ZodString;
807
+ api: z.ZodArray<z.ZodString>;
808
+ dependencies: z.ZodArray<z.ZodString>;
809
+ boundedContext: z.ZodOptional<z.ZodString>;
810
+ }, z.core.$strip>>;
811
+ boundaries: z.ZodArray<z.ZodString>;
812
+ dataFlow: z.ZodString;
813
+ apiContracts: z.ZodArray<z.ZodString>;
814
+ }, z.core.$strip>;
815
+ refinement: z.ZodObject<{
816
+ securityConsiderations: z.ZodArray<z.ZodString>;
817
+ performanceTargets: z.ZodArray<z.ZodString>;
818
+ testStrategy: z.ZodString;
819
+ edgeCases: z.ZodOptional<z.ZodArray<z.ZodString>>;
820
+ }, z.core.$strip>;
821
+ completion: z.ZodObject<{
822
+ integrationPlan: z.ZodString;
823
+ documentation: z.ZodArray<z.ZodString>;
824
+ monitoringSetup: z.ZodArray<z.ZodString>;
825
+ deploymentChecklist: z.ZodOptional<z.ZodArray<z.ZodString>>;
826
+ }, z.core.$strip>;
827
+ }, z.core.$strip>;
828
+ adrs: z.ZodArray<z.ZodObject<{
829
+ id: z.ZodString;
830
+ title: z.ZodString;
831
+ status: z.ZodEnum<{
832
+ accepted: "accepted";
833
+ proposed: "proposed";
834
+ deprecated: "deprecated";
835
+ superseded: "superseded";
836
+ }>;
837
+ date: z.ZodString;
838
+ context: z.ZodString;
839
+ decision: z.ZodString;
840
+ alternatives: z.ZodArray<z.ZodObject<{
841
+ title: z.ZodString;
842
+ description: z.ZodString;
843
+ tradeoffs: z.ZodArray<z.ZodString>;
844
+ }, z.core.$strip>>;
845
+ consequences: z.ZodArray<z.ZodObject<{
846
+ description: z.ZodString;
847
+ type: z.ZodEnum<{
848
+ positive: "positive";
849
+ negative: "negative";
850
+ neutral: "neutral";
851
+ }>;
852
+ }, z.core.$strip>>;
853
+ dossierItemRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
854
+ }, z.core.$strip>>;
855
+ domainModel: z.ZodObject<{
856
+ contexts: z.ZodArray<z.ZodObject<{
857
+ name: z.ZodString;
858
+ description: z.ZodString;
859
+ aggregates: z.ZodArray<z.ZodObject<{
860
+ name: z.ZodString;
861
+ root: z.ZodString;
862
+ entities: z.ZodArray<z.ZodObject<{
863
+ name: z.ZodString;
864
+ properties: z.ZodArray<z.ZodObject<{
865
+ name: z.ZodString;
866
+ type: z.ZodString;
867
+ required: z.ZodBoolean;
868
+ }, z.core.$strip>>;
869
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
870
+ }, z.core.$strip>>;
871
+ valueObjects: z.ZodArray<z.ZodObject<{
872
+ name: z.ZodString;
873
+ properties: z.ZodArray<z.ZodObject<{
874
+ name: z.ZodString;
875
+ type: z.ZodString;
876
+ }, z.core.$strip>>;
877
+ validationRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
878
+ }, z.core.$strip>>;
879
+ invariants: z.ZodOptional<z.ZodArray<z.ZodString>>;
880
+ }, z.core.$strip>>;
881
+ domainEvents: z.ZodArray<z.ZodObject<{
882
+ name: z.ZodString;
883
+ aggregate: z.ZodString;
884
+ payload: z.ZodArray<z.ZodObject<{
885
+ name: z.ZodString;
886
+ type: z.ZodString;
887
+ }, z.core.$strip>>;
888
+ description: z.ZodOptional<z.ZodString>;
889
+ }, z.core.$strip>>;
890
+ commands: z.ZodArray<z.ZodObject<{
891
+ name: z.ZodString;
892
+ aggregate: z.ZodString;
893
+ parameters: z.ZodArray<z.ZodObject<{
894
+ name: z.ZodString;
895
+ type: z.ZodString;
896
+ required: z.ZodBoolean;
897
+ }, z.core.$strip>>;
898
+ emits: z.ZodArray<z.ZodString>;
899
+ }, z.core.$strip>>;
900
+ queries: z.ZodArray<z.ZodObject<{
901
+ name: z.ZodString;
902
+ parameters: z.ZodArray<z.ZodObject<{
903
+ name: z.ZodString;
904
+ type: z.ZodString;
905
+ }, z.core.$strip>>;
906
+ returns: z.ZodString;
907
+ }, z.core.$strip>>;
908
+ ubiquitousLanguage: z.ZodOptional<z.ZodArray<z.ZodObject<{
909
+ term: z.ZodString;
910
+ definition: z.ZodString;
911
+ context: z.ZodString;
912
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
913
+ }, z.core.$strip>>>;
914
+ }, z.core.$strip>>;
915
+ contextMap: z.ZodArray<z.ZodObject<{
916
+ upstream: z.ZodString;
917
+ downstream: z.ZodString;
918
+ type: z.ZodEnum<{
919
+ partnership: "partnership";
920
+ "customer-supplier": "customer-supplier";
921
+ conformist: "conformist";
922
+ "anticorruption-layer": "anticorruption-layer";
923
+ "open-host-service": "open-host-service";
924
+ "shared-kernel": "shared-kernel";
925
+ }>;
926
+ description: z.ZodOptional<z.ZodString>;
927
+ }, z.core.$strip>>;
928
+ ubiquitousLanguage: z.ZodOptional<z.ZodArray<z.ZodObject<{
929
+ term: z.ZodString;
930
+ definition: z.ZodString;
931
+ context: z.ZodString;
932
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
933
+ }, z.core.$strip>>>;
934
+ }, z.core.$strip>;
935
+ tddPlan: z.ZodObject<{
936
+ approach: z.ZodLiteral<"london-school">;
937
+ pyramid: z.ZodObject<{
938
+ levels: z.ZodArray<z.ZodObject<{
939
+ level: z.ZodEnum<{
940
+ integration: "integration";
941
+ unit: "unit";
942
+ e2e: "e2e";
943
+ contract: "contract";
944
+ }>;
945
+ targetCount: z.ZodNumber;
946
+ description: z.ZodString;
947
+ }, z.core.$strip>>;
948
+ coverageTarget: z.ZodNumber;
949
+ }, z.core.$strip>;
950
+ testSuites: z.ZodArray<z.ZodObject<{
951
+ name: z.ZodString;
952
+ boundedContext: z.ZodString;
953
+ testCases: z.ZodArray<z.ZodObject<{
954
+ id: z.ZodString;
955
+ name: z.ZodString;
956
+ level: z.ZodEnum<{
957
+ integration: "integration";
958
+ unit: "unit";
959
+ e2e: "e2e";
960
+ contract: "contract";
961
+ }>;
962
+ description: z.ZodString;
963
+ givenWhenThen: z.ZodObject<{
964
+ given: z.ZodString;
965
+ when: z.ZodString;
966
+ then: z.ZodString;
967
+ }, z.core.$strip>;
968
+ boundedContext: z.ZodOptional<z.ZodString>;
969
+ aggregate: z.ZodOptional<z.ZodString>;
970
+ dossierItemRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
971
+ }, z.core.$strip>>;
972
+ }, z.core.$strip>>;
973
+ mockContracts: z.ZodArray<z.ZodObject<{
974
+ name: z.ZodString;
975
+ targetService: z.ZodString;
976
+ methods: z.ZodArray<z.ZodObject<{
977
+ name: z.ZodString;
978
+ parameters: z.ZodArray<z.ZodObject<{
979
+ name: z.ZodString;
980
+ type: z.ZodString;
981
+ }, z.core.$strip>>;
982
+ returns: z.ZodString;
983
+ behavior: z.ZodString;
984
+ }, z.core.$strip>>;
985
+ }, z.core.$strip>>;
986
+ seams: z.ZodArray<z.ZodObject<{
987
+ name: z.ZodString;
988
+ type: z.ZodEnum<{
989
+ adapter: "adapter";
990
+ "service-boundary": "service-boundary";
991
+ port: "port";
992
+ gateway: "gateway";
993
+ }>;
994
+ from: z.ZodString;
995
+ to: z.ZodString;
996
+ mockContract: z.ZodOptional<z.ZodString>;
997
+ description: z.ZodOptional<z.ZodString>;
998
+ }, z.core.$strip>>;
999
+ }, z.core.$strip>;
1000
+ artifacts: z.ZodArray<z.ZodString>;
1001
+ }, z.core.$strip>;
1002
+ export type ValidatedPhase1Manifest = z.infer<typeof Phase1ManifestSchema>;
1003
+ export type ValidatedScenarioArtifact = z.infer<typeof ScenarioArtifactSchema>;
1004
+ export type ValidatedRoadmapArtifact = z.infer<typeof RoadmapArtifactSchema>;
1005
+ export type ValidatedRiskAssessmentArtifact = z.infer<typeof RiskAssessmentArtifactSchema>;
1006
+ export type ValidatedDossierItem = z.infer<typeof DossierItemSchema>;
1007
+ export type ValidatedDossierCrossReference = z.infer<typeof DossierCrossReferenceSchema>;
1008
+ export type ValidatedDossierSummary = z.infer<typeof DossierSummarySchema>;
1009
+ export type ValidatedResearchDossier = z.infer<typeof ResearchDossierSchema>;
1010
+ export type ValidatedPhase2Requirement = z.infer<typeof Phase2RequirementSchema>;
1011
+ export type ValidatedPhase2Constraint = z.infer<typeof Phase2ConstraintSchema>;
1012
+ export type ValidatedPhase2SuccessCriterion = z.infer<typeof Phase2SuccessCriterionSchema>;
1013
+ export type ValidatedPhase2Specification = z.infer<typeof Phase2SpecificationSchema>;
1014
+ export type ValidatedPhase2PseudocodeModule = z.infer<typeof Phase2PseudocodeModuleSchema>;
1015
+ export type ValidatedPhase2Pseudocode = z.infer<typeof Phase2PseudocodeSchema>;
1016
+ export type ValidatedPhase2ServiceDefinition = z.infer<typeof Phase2ServiceDefinitionSchema>;
1017
+ export type ValidatedPhase2Architecture = z.infer<typeof Phase2ArchitectureSchema>;
1018
+ export type ValidatedPhase2Refinement = z.infer<typeof Phase2RefinementSchema>;
1019
+ export type ValidatedPhase2Completion = z.infer<typeof Phase2CompletionSchema>;
1020
+ export type ValidatedPhase2SPARCOutput = z.infer<typeof Phase2SPARCOutputSchema>;
1021
+ export type ValidatedPhase2ADRAlternative = z.infer<typeof Phase2ADRAlternativeSchema>;
1022
+ export type ValidatedPhase2ADRConsequence = z.infer<typeof Phase2ADRConsequenceSchema>;
1023
+ export type ValidatedPhase2ADRRecord = z.infer<typeof Phase2ADRRecordSchema>;
1024
+ export type ValidatedPhase2Entity = z.infer<typeof Phase2EntitySchema>;
1025
+ export type ValidatedPhase2ValueObject = z.infer<typeof Phase2ValueObjectSchema>;
1026
+ export type ValidatedPhase2AggregateDefinition = z.infer<typeof Phase2AggregateDefinitionSchema>;
1027
+ export type ValidatedPhase2DomainEvent = z.infer<typeof Phase2DomainEventSchema>;
1028
+ export type ValidatedPhase2Command = z.infer<typeof Phase2CommandSchema>;
1029
+ export type ValidatedPhase2Query = z.infer<typeof Phase2QuerySchema>;
1030
+ export type ValidatedUbiquitousLanguageTerm = z.infer<typeof UbiquitousLanguageTermSchema>;
1031
+ export type ValidatedPhase2DDDBoundedContext = z.infer<typeof Phase2DDDBoundedContextSchema>;
1032
+ export type ValidatedPhase2ContextRelation = z.infer<typeof Phase2ContextRelationSchema>;
1033
+ export type ValidatedPhase2DomainModel = z.infer<typeof Phase2DomainModelSchema>;
1034
+ export type ValidatedTestPyramidLevel = z.infer<typeof TestPyramidLevelSchema>;
1035
+ export type ValidatedTestPyramid = z.infer<typeof TestPyramidSchema>;
1036
+ export type ValidatedTDDTestCase = z.infer<typeof TDDTestCaseSchema>;
1037
+ export type ValidatedTDDTestSuite = z.infer<typeof TDDTestSuiteSchema>;
1038
+ export type ValidatedMockContractMethod = z.infer<typeof MockContractMethodSchema>;
1039
+ export type ValidatedMockContract = z.infer<typeof MockContractSchema>;
1040
+ export type ValidatedSeamDefinition = z.infer<typeof SeamDefinitionSchema>;
1041
+ export type ValidatedTDDPlan = z.infer<typeof TDDPlanSchema>;
1042
+ export type ValidatedPhase2Manifest = z.infer<typeof Phase2ManifestSchema>;
1043
+ //# sourceMappingURL=schemas.d.ts.map