@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
@@ -1,1674 +0,0 @@
1
- /**
2
- * Phase 7: Intelligence & Expansion (Layer 2) - Signal Schemas
3
- *
4
- * DecisionEvent rules - Agents MUST emit:
5
- * - hypothesis_signal
6
- * - simulation_outcome_signal
7
- * - confidence_delta_signal
8
- *
9
- * Role clarity:
10
- * - Agents MAY: reason, simulate, explore
11
- * - Agents MUST: emit signals, avoid final decisions
12
- *
13
- * Performance budgets:
14
- * - MAX_TOKENS=2500
15
- * - MAX_LATENCY_MS=5000
16
- */
17
- import { z } from 'zod';
18
- /**
19
- * Performance budget constants for Phase 7
20
- */
21
- export declare const PHASE7_PERFORMANCE_BUDGETS: {
22
- readonly MAX_TOKENS: 2500;
23
- readonly MAX_LATENCY_MS: 5000;
24
- };
25
- /**
26
- * Hypothesis Signal Schema
27
- *
28
- * Emitted when the agent forms a hypothesis during reasoning.
29
- * Hypotheses are exploratory - they NEVER constitute final decisions.
30
- */
31
- export declare const HypothesisSignalSchema: z.ZodObject<{
32
- signal_type: z.ZodLiteral<"hypothesis_signal">;
33
- hypothesis_id: z.ZodString;
34
- /** The hypothesis statement */
35
- statement: z.ZodString;
36
- /** Domain/area the hypothesis relates to */
37
- domain: z.ZodString;
38
- /** Supporting evidence or reasoning */
39
- supporting_evidence: z.ZodArray<z.ZodObject<{
40
- evidence_id: z.ZodString;
41
- description: z.ZodString;
42
- weight: z.ZodNumber;
43
- source: z.ZodOptional<z.ZodString>;
44
- }, "strip", z.ZodTypeAny, {
45
- description: string;
46
- weight: number;
47
- evidence_id: string;
48
- source?: string | undefined;
49
- }, {
50
- description: string;
51
- weight: number;
52
- evidence_id: string;
53
- source?: string | undefined;
54
- }>, "many">;
55
- /** Counter-evidence or alternative explanations */
56
- counter_evidence: z.ZodArray<z.ZodObject<{
57
- evidence_id: z.ZodString;
58
- description: z.ZodString;
59
- weight: z.ZodNumber;
60
- source: z.ZodOptional<z.ZodString>;
61
- }, "strip", z.ZodTypeAny, {
62
- description: string;
63
- weight: number;
64
- evidence_id: string;
65
- source?: string | undefined;
66
- }, {
67
- description: string;
68
- weight: number;
69
- evidence_id: string;
70
- source?: string | undefined;
71
- }>, "many">;
72
- /** Initial confidence before simulation */
73
- initial_confidence: z.ZodNumber;
74
- /** Conditions that would strengthen the hypothesis */
75
- strengthening_conditions: z.ZodArray<z.ZodString, "many">;
76
- /** Conditions that would weaken the hypothesis */
77
- weakening_conditions: z.ZodArray<z.ZodString, "many">;
78
- /** Related hypotheses (if exploring multiple paths) */
79
- related_hypothesis_ids: z.ZodArray<z.ZodString, "many">;
80
- /** Timestamp of hypothesis formation */
81
- formed_at: z.ZodString;
82
- }, "strip", z.ZodTypeAny, {
83
- domain: string;
84
- statement: string;
85
- signal_type: "hypothesis_signal";
86
- hypothesis_id: string;
87
- supporting_evidence: {
88
- description: string;
89
- weight: number;
90
- evidence_id: string;
91
- source?: string | undefined;
92
- }[];
93
- counter_evidence: {
94
- description: string;
95
- weight: number;
96
- evidence_id: string;
97
- source?: string | undefined;
98
- }[];
99
- initial_confidence: number;
100
- strengthening_conditions: string[];
101
- weakening_conditions: string[];
102
- related_hypothesis_ids: string[];
103
- formed_at: string;
104
- }, {
105
- domain: string;
106
- statement: string;
107
- signal_type: "hypothesis_signal";
108
- hypothesis_id: string;
109
- supporting_evidence: {
110
- description: string;
111
- weight: number;
112
- evidence_id: string;
113
- source?: string | undefined;
114
- }[];
115
- counter_evidence: {
116
- description: string;
117
- weight: number;
118
- evidence_id: string;
119
- source?: string | undefined;
120
- }[];
121
- initial_confidence: number;
122
- strengthening_conditions: string[];
123
- weakening_conditions: string[];
124
- related_hypothesis_ids: string[];
125
- formed_at: string;
126
- }>;
127
- export type HypothesisSignal = z.infer<typeof HypothesisSignalSchema>;
128
- /**
129
- * Simulation Outcome Signal Schema
130
- *
131
- * Emitted after simulating a scenario or testing a hypothesis.
132
- * Simulations explore possibilities - they NEVER trigger actions.
133
- */
134
- export declare const SimulationOutcomeSignalSchema: z.ZodObject<{
135
- signal_type: z.ZodLiteral<"simulation_outcome_signal">;
136
- simulation_id: z.ZodString;
137
- /** The hypothesis being tested (if applicable) */
138
- hypothesis_id: z.ZodOptional<z.ZodString>;
139
- /** What scenario was simulated */
140
- scenario: z.ZodObject<{
141
- name: z.ZodString;
142
- description: z.ZodString;
143
- initial_conditions: z.ZodRecord<z.ZodString, z.ZodUnknown>;
144
- parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
145
- }, "strip", z.ZodTypeAny, {
146
- name: string;
147
- description: string;
148
- initial_conditions: Record<string, unknown>;
149
- parameters: Record<string, unknown>;
150
- }, {
151
- name: string;
152
- description: string;
153
- initial_conditions: Record<string, unknown>;
154
- parameters: Record<string, unknown>;
155
- }>;
156
- /** Simulation outcome classification */
157
- outcome: z.ZodEnum<["hypothesis_supported", "hypothesis_weakened", "hypothesis_refuted", "inconclusive", "unexpected_result", "simulation_error"]>;
158
- /** Detailed results from the simulation */
159
- results: z.ZodObject<{
160
- primary_finding: z.ZodString;
161
- secondary_findings: z.ZodArray<z.ZodString, "many">;
162
- metrics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
163
- artifacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
164
- artifact_id: z.ZodString;
165
- type: z.ZodString;
166
- description: z.ZodString;
167
- }, "strip", z.ZodTypeAny, {
168
- type: string;
169
- description: string;
170
- artifact_id: string;
171
- }, {
172
- type: string;
173
- description: string;
174
- artifact_id: string;
175
- }>, "many">>;
176
- }, "strip", z.ZodTypeAny, {
177
- primary_finding: string;
178
- secondary_findings: string[];
179
- metrics?: Record<string, number> | undefined;
180
- artifacts?: {
181
- type: string;
182
- description: string;
183
- artifact_id: string;
184
- }[] | undefined;
185
- }, {
186
- primary_finding: string;
187
- secondary_findings: string[];
188
- metrics?: Record<string, number> | undefined;
189
- artifacts?: {
190
- type: string;
191
- description: string;
192
- artifact_id: string;
193
- }[] | undefined;
194
- }>;
195
- /** Confidence in the simulation outcome */
196
- outcome_confidence: z.ZodNumber;
197
- /** Resource usage during simulation */
198
- resource_usage: z.ZodObject<{
199
- tokens_used: z.ZodNumber;
200
- latency_ms: z.ZodNumber;
201
- within_budget: z.ZodBoolean;
202
- }, "strip", z.ZodTypeAny, {
203
- tokens_used: number;
204
- latency_ms: number;
205
- within_budget: boolean;
206
- }, {
207
- tokens_used: number;
208
- latency_ms: number;
209
- within_budget: boolean;
210
- }>;
211
- /** Recommendations for further exploration (NOT actions) */
212
- exploration_recommendations: z.ZodArray<z.ZodObject<{
213
- recommendation_id: z.ZodString;
214
- type: z.ZodEnum<["additional_simulation", "hypothesis_refinement", "data_collection", "domain_expansion"]>;
215
- description: z.ZodString;
216
- priority: z.ZodNumber;
217
- }, "strip", z.ZodTypeAny, {
218
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
219
- description: string;
220
- priority: number;
221
- recommendation_id: string;
222
- }, {
223
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
224
- description: string;
225
- priority: number;
226
- recommendation_id: string;
227
- }>, "many">;
228
- /** Simulation completed timestamp */
229
- completed_at: z.ZodString;
230
- }, "strip", z.ZodTypeAny, {
231
- signal_type: "simulation_outcome_signal";
232
- simulation_id: string;
233
- scenario: {
234
- name: string;
235
- description: string;
236
- initial_conditions: Record<string, unknown>;
237
- parameters: Record<string, unknown>;
238
- };
239
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
240
- results: {
241
- primary_finding: string;
242
- secondary_findings: string[];
243
- metrics?: Record<string, number> | undefined;
244
- artifacts?: {
245
- type: string;
246
- description: string;
247
- artifact_id: string;
248
- }[] | undefined;
249
- };
250
- outcome_confidence: number;
251
- resource_usage: {
252
- tokens_used: number;
253
- latency_ms: number;
254
- within_budget: boolean;
255
- };
256
- exploration_recommendations: {
257
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
258
- description: string;
259
- priority: number;
260
- recommendation_id: string;
261
- }[];
262
- completed_at: string;
263
- hypothesis_id?: string | undefined;
264
- }, {
265
- signal_type: "simulation_outcome_signal";
266
- simulation_id: string;
267
- scenario: {
268
- name: string;
269
- description: string;
270
- initial_conditions: Record<string, unknown>;
271
- parameters: Record<string, unknown>;
272
- };
273
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
274
- results: {
275
- primary_finding: string;
276
- secondary_findings: string[];
277
- metrics?: Record<string, number> | undefined;
278
- artifacts?: {
279
- type: string;
280
- description: string;
281
- artifact_id: string;
282
- }[] | undefined;
283
- };
284
- outcome_confidence: number;
285
- resource_usage: {
286
- tokens_used: number;
287
- latency_ms: number;
288
- within_budget: boolean;
289
- };
290
- exploration_recommendations: {
291
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
292
- description: string;
293
- priority: number;
294
- recommendation_id: string;
295
- }[];
296
- completed_at: string;
297
- hypothesis_id?: string | undefined;
298
- }>;
299
- export type SimulationOutcomeSignal = z.infer<typeof SimulationOutcomeSignalSchema>;
300
- /**
301
- * Confidence Delta Signal Schema
302
- *
303
- * Emitted when confidence in a hypothesis changes.
304
- * Tracks reasoning progression - NEVER triggers final decisions.
305
- */
306
- export declare const ConfidenceDeltaSignalSchema: z.ZodObject<{
307
- signal_type: z.ZodLiteral<"confidence_delta_signal">;
308
- delta_id: z.ZodString;
309
- /** The hypothesis whose confidence changed */
310
- hypothesis_id: z.ZodString;
311
- /** Simulation that caused the change (if applicable) */
312
- simulation_id: z.ZodOptional<z.ZodString>;
313
- /** Previous confidence value */
314
- previous_confidence: z.ZodNumber;
315
- /** New confidence value */
316
- new_confidence: z.ZodNumber;
317
- /** The actual delta (can be positive or negative) */
318
- delta: z.ZodNumber;
319
- /** Reason for the confidence change */
320
- reason: z.ZodObject<{
321
- category: z.ZodEnum<["new_evidence", "contradicting_evidence", "simulation_result", "reasoning_refinement", "assumption_invalidated", "scope_change", "uncertainty_quantification"]>;
322
- description: z.ZodString;
323
- contributing_factors: z.ZodArray<z.ZodObject<{
324
- factor: z.ZodString;
325
- impact: z.ZodNumber;
326
- }, "strip", z.ZodTypeAny, {
327
- impact: number;
328
- factor: string;
329
- }, {
330
- impact: number;
331
- factor: string;
332
- }>, "many">;
333
- }, "strip", z.ZodTypeAny, {
334
- description: string;
335
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
336
- contributing_factors: {
337
- impact: number;
338
- factor: string;
339
- }[];
340
- }, {
341
- description: string;
342
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
343
- contributing_factors: {
344
- impact: number;
345
- factor: string;
346
- }[];
347
- }>;
348
- /** Whether confidence is still within actionable thresholds */
349
- thresholds: z.ZodObject<{
350
- /** Confidence required for recommendation */
351
- recommendation_threshold: z.ZodNumber;
352
- /** Current distance from threshold */
353
- distance_from_threshold: z.ZodNumber;
354
- /** Trend direction over recent deltas */
355
- trend: z.ZodEnum<["increasing", "decreasing", "stable", "oscillating"]>;
356
- }, "strip", z.ZodTypeAny, {
357
- recommendation_threshold: number;
358
- distance_from_threshold: number;
359
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
360
- }, {
361
- recommendation_threshold: number;
362
- distance_from_threshold: number;
363
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
364
- }>;
365
- /** Timestamp of confidence change */
366
- changed_at: z.ZodString;
367
- }, "strip", z.ZodTypeAny, {
368
- signal_type: "confidence_delta_signal";
369
- hypothesis_id: string;
370
- delta_id: string;
371
- previous_confidence: number;
372
- new_confidence: number;
373
- delta: number;
374
- reason: {
375
- description: string;
376
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
377
- contributing_factors: {
378
- impact: number;
379
- factor: string;
380
- }[];
381
- };
382
- thresholds: {
383
- recommendation_threshold: number;
384
- distance_from_threshold: number;
385
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
386
- };
387
- changed_at: string;
388
- simulation_id?: string | undefined;
389
- }, {
390
- signal_type: "confidence_delta_signal";
391
- hypothesis_id: string;
392
- delta_id: string;
393
- previous_confidence: number;
394
- new_confidence: number;
395
- delta: number;
396
- reason: {
397
- description: string;
398
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
399
- contributing_factors: {
400
- impact: number;
401
- factor: string;
402
- }[];
403
- };
404
- thresholds: {
405
- recommendation_threshold: number;
406
- distance_from_threshold: number;
407
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
408
- };
409
- changed_at: string;
410
- simulation_id?: string | undefined;
411
- }>;
412
- export type ConfidenceDeltaSignal = z.infer<typeof ConfidenceDeltaSignalSchema>;
413
- /**
414
- * Intelligence Layer Input Schema
415
- *
416
- * Input for the intelligence layer agent to perform reasoning,
417
- * simulation, and exploration tasks.
418
- */
419
- export declare const IntelligenceLayerInputSchema: z.ZodObject<{
420
- /** Execution mode */
421
- mode: z.ZodEnum<["reason", "simulate", "explore"]>;
422
- /** The objective or question to investigate */
423
- objective: z.ZodObject<{
424
- statement: z.ZodString;
425
- domain: z.ZodString;
426
- constraints: z.ZodArray<z.ZodString, "many">;
427
- context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
428
- }, "strip", z.ZodTypeAny, {
429
- domain: string;
430
- constraints: string[];
431
- statement: string;
432
- context?: Record<string, unknown> | undefined;
433
- }, {
434
- domain: string;
435
- constraints: string[];
436
- statement: string;
437
- context?: Record<string, unknown> | undefined;
438
- }>;
439
- /** Previous hypotheses to build upon (if any) */
440
- prior_hypotheses: z.ZodOptional<z.ZodArray<z.ZodObject<{
441
- signal_type: z.ZodLiteral<"hypothesis_signal">;
442
- hypothesis_id: z.ZodString;
443
- /** The hypothesis statement */
444
- statement: z.ZodString;
445
- /** Domain/area the hypothesis relates to */
446
- domain: z.ZodString;
447
- /** Supporting evidence or reasoning */
448
- supporting_evidence: z.ZodArray<z.ZodObject<{
449
- evidence_id: z.ZodString;
450
- description: z.ZodString;
451
- weight: z.ZodNumber;
452
- source: z.ZodOptional<z.ZodString>;
453
- }, "strip", z.ZodTypeAny, {
454
- description: string;
455
- weight: number;
456
- evidence_id: string;
457
- source?: string | undefined;
458
- }, {
459
- description: string;
460
- weight: number;
461
- evidence_id: string;
462
- source?: string | undefined;
463
- }>, "many">;
464
- /** Counter-evidence or alternative explanations */
465
- counter_evidence: z.ZodArray<z.ZodObject<{
466
- evidence_id: z.ZodString;
467
- description: z.ZodString;
468
- weight: z.ZodNumber;
469
- source: z.ZodOptional<z.ZodString>;
470
- }, "strip", z.ZodTypeAny, {
471
- description: string;
472
- weight: number;
473
- evidence_id: string;
474
- source?: string | undefined;
475
- }, {
476
- description: string;
477
- weight: number;
478
- evidence_id: string;
479
- source?: string | undefined;
480
- }>, "many">;
481
- /** Initial confidence before simulation */
482
- initial_confidence: z.ZodNumber;
483
- /** Conditions that would strengthen the hypothesis */
484
- strengthening_conditions: z.ZodArray<z.ZodString, "many">;
485
- /** Conditions that would weaken the hypothesis */
486
- weakening_conditions: z.ZodArray<z.ZodString, "many">;
487
- /** Related hypotheses (if exploring multiple paths) */
488
- related_hypothesis_ids: z.ZodArray<z.ZodString, "many">;
489
- /** Timestamp of hypothesis formation */
490
- formed_at: z.ZodString;
491
- }, "strip", z.ZodTypeAny, {
492
- domain: string;
493
- statement: string;
494
- signal_type: "hypothesis_signal";
495
- hypothesis_id: string;
496
- supporting_evidence: {
497
- description: string;
498
- weight: number;
499
- evidence_id: string;
500
- source?: string | undefined;
501
- }[];
502
- counter_evidence: {
503
- description: string;
504
- weight: number;
505
- evidence_id: string;
506
- source?: string | undefined;
507
- }[];
508
- initial_confidence: number;
509
- strengthening_conditions: string[];
510
- weakening_conditions: string[];
511
- related_hypothesis_ids: string[];
512
- formed_at: string;
513
- }, {
514
- domain: string;
515
- statement: string;
516
- signal_type: "hypothesis_signal";
517
- hypothesis_id: string;
518
- supporting_evidence: {
519
- description: string;
520
- weight: number;
521
- evidence_id: string;
522
- source?: string | undefined;
523
- }[];
524
- counter_evidence: {
525
- description: string;
526
- weight: number;
527
- evidence_id: string;
528
- source?: string | undefined;
529
- }[];
530
- initial_confidence: number;
531
- strengthening_conditions: string[];
532
- weakening_conditions: string[];
533
- related_hypothesis_ids: string[];
534
- formed_at: string;
535
- }>, "many">>;
536
- /** Previous simulation outcomes (if any) */
537
- prior_simulations: z.ZodOptional<z.ZodArray<z.ZodObject<{
538
- signal_type: z.ZodLiteral<"simulation_outcome_signal">;
539
- simulation_id: z.ZodString;
540
- /** The hypothesis being tested (if applicable) */
541
- hypothesis_id: z.ZodOptional<z.ZodString>;
542
- /** What scenario was simulated */
543
- scenario: z.ZodObject<{
544
- name: z.ZodString;
545
- description: z.ZodString;
546
- initial_conditions: z.ZodRecord<z.ZodString, z.ZodUnknown>;
547
- parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
548
- }, "strip", z.ZodTypeAny, {
549
- name: string;
550
- description: string;
551
- initial_conditions: Record<string, unknown>;
552
- parameters: Record<string, unknown>;
553
- }, {
554
- name: string;
555
- description: string;
556
- initial_conditions: Record<string, unknown>;
557
- parameters: Record<string, unknown>;
558
- }>;
559
- /** Simulation outcome classification */
560
- outcome: z.ZodEnum<["hypothesis_supported", "hypothesis_weakened", "hypothesis_refuted", "inconclusive", "unexpected_result", "simulation_error"]>;
561
- /** Detailed results from the simulation */
562
- results: z.ZodObject<{
563
- primary_finding: z.ZodString;
564
- secondary_findings: z.ZodArray<z.ZodString, "many">;
565
- metrics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
566
- artifacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
567
- artifact_id: z.ZodString;
568
- type: z.ZodString;
569
- description: z.ZodString;
570
- }, "strip", z.ZodTypeAny, {
571
- type: string;
572
- description: string;
573
- artifact_id: string;
574
- }, {
575
- type: string;
576
- description: string;
577
- artifact_id: string;
578
- }>, "many">>;
579
- }, "strip", z.ZodTypeAny, {
580
- primary_finding: string;
581
- secondary_findings: string[];
582
- metrics?: Record<string, number> | undefined;
583
- artifacts?: {
584
- type: string;
585
- description: string;
586
- artifact_id: string;
587
- }[] | undefined;
588
- }, {
589
- primary_finding: string;
590
- secondary_findings: string[];
591
- metrics?: Record<string, number> | undefined;
592
- artifacts?: {
593
- type: string;
594
- description: string;
595
- artifact_id: string;
596
- }[] | undefined;
597
- }>;
598
- /** Confidence in the simulation outcome */
599
- outcome_confidence: z.ZodNumber;
600
- /** Resource usage during simulation */
601
- resource_usage: z.ZodObject<{
602
- tokens_used: z.ZodNumber;
603
- latency_ms: z.ZodNumber;
604
- within_budget: z.ZodBoolean;
605
- }, "strip", z.ZodTypeAny, {
606
- tokens_used: number;
607
- latency_ms: number;
608
- within_budget: boolean;
609
- }, {
610
- tokens_used: number;
611
- latency_ms: number;
612
- within_budget: boolean;
613
- }>;
614
- /** Recommendations for further exploration (NOT actions) */
615
- exploration_recommendations: z.ZodArray<z.ZodObject<{
616
- recommendation_id: z.ZodString;
617
- type: z.ZodEnum<["additional_simulation", "hypothesis_refinement", "data_collection", "domain_expansion"]>;
618
- description: z.ZodString;
619
- priority: z.ZodNumber;
620
- }, "strip", z.ZodTypeAny, {
621
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
622
- description: string;
623
- priority: number;
624
- recommendation_id: string;
625
- }, {
626
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
627
- description: string;
628
- priority: number;
629
- recommendation_id: string;
630
- }>, "many">;
631
- /** Simulation completed timestamp */
632
- completed_at: z.ZodString;
633
- }, "strip", z.ZodTypeAny, {
634
- signal_type: "simulation_outcome_signal";
635
- simulation_id: string;
636
- scenario: {
637
- name: string;
638
- description: string;
639
- initial_conditions: Record<string, unknown>;
640
- parameters: Record<string, unknown>;
641
- };
642
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
643
- results: {
644
- primary_finding: string;
645
- secondary_findings: string[];
646
- metrics?: Record<string, number> | undefined;
647
- artifacts?: {
648
- type: string;
649
- description: string;
650
- artifact_id: string;
651
- }[] | undefined;
652
- };
653
- outcome_confidence: number;
654
- resource_usage: {
655
- tokens_used: number;
656
- latency_ms: number;
657
- within_budget: boolean;
658
- };
659
- exploration_recommendations: {
660
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
661
- description: string;
662
- priority: number;
663
- recommendation_id: string;
664
- }[];
665
- completed_at: string;
666
- hypothesis_id?: string | undefined;
667
- }, {
668
- signal_type: "simulation_outcome_signal";
669
- simulation_id: string;
670
- scenario: {
671
- name: string;
672
- description: string;
673
- initial_conditions: Record<string, unknown>;
674
- parameters: Record<string, unknown>;
675
- };
676
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
677
- results: {
678
- primary_finding: string;
679
- secondary_findings: string[];
680
- metrics?: Record<string, number> | undefined;
681
- artifacts?: {
682
- type: string;
683
- description: string;
684
- artifact_id: string;
685
- }[] | undefined;
686
- };
687
- outcome_confidence: number;
688
- resource_usage: {
689
- tokens_used: number;
690
- latency_ms: number;
691
- within_budget: boolean;
692
- };
693
- exploration_recommendations: {
694
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
695
- description: string;
696
- priority: number;
697
- recommendation_id: string;
698
- }[];
699
- completed_at: string;
700
- hypothesis_id?: string | undefined;
701
- }>, "many">>;
702
- /** Confidence history for tracking deltas */
703
- confidence_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
704
- signal_type: z.ZodLiteral<"confidence_delta_signal">;
705
- delta_id: z.ZodString;
706
- /** The hypothesis whose confidence changed */
707
- hypothesis_id: z.ZodString;
708
- /** Simulation that caused the change (if applicable) */
709
- simulation_id: z.ZodOptional<z.ZodString>;
710
- /** Previous confidence value */
711
- previous_confidence: z.ZodNumber;
712
- /** New confidence value */
713
- new_confidence: z.ZodNumber;
714
- /** The actual delta (can be positive or negative) */
715
- delta: z.ZodNumber;
716
- /** Reason for the confidence change */
717
- reason: z.ZodObject<{
718
- category: z.ZodEnum<["new_evidence", "contradicting_evidence", "simulation_result", "reasoning_refinement", "assumption_invalidated", "scope_change", "uncertainty_quantification"]>;
719
- description: z.ZodString;
720
- contributing_factors: z.ZodArray<z.ZodObject<{
721
- factor: z.ZodString;
722
- impact: z.ZodNumber;
723
- }, "strip", z.ZodTypeAny, {
724
- impact: number;
725
- factor: string;
726
- }, {
727
- impact: number;
728
- factor: string;
729
- }>, "many">;
730
- }, "strip", z.ZodTypeAny, {
731
- description: string;
732
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
733
- contributing_factors: {
734
- impact: number;
735
- factor: string;
736
- }[];
737
- }, {
738
- description: string;
739
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
740
- contributing_factors: {
741
- impact: number;
742
- factor: string;
743
- }[];
744
- }>;
745
- /** Whether confidence is still within actionable thresholds */
746
- thresholds: z.ZodObject<{
747
- /** Confidence required for recommendation */
748
- recommendation_threshold: z.ZodNumber;
749
- /** Current distance from threshold */
750
- distance_from_threshold: z.ZodNumber;
751
- /** Trend direction over recent deltas */
752
- trend: z.ZodEnum<["increasing", "decreasing", "stable", "oscillating"]>;
753
- }, "strip", z.ZodTypeAny, {
754
- recommendation_threshold: number;
755
- distance_from_threshold: number;
756
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
757
- }, {
758
- recommendation_threshold: number;
759
- distance_from_threshold: number;
760
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
761
- }>;
762
- /** Timestamp of confidence change */
763
- changed_at: z.ZodString;
764
- }, "strip", z.ZodTypeAny, {
765
- signal_type: "confidence_delta_signal";
766
- hypothesis_id: string;
767
- delta_id: string;
768
- previous_confidence: number;
769
- new_confidence: number;
770
- delta: number;
771
- reason: {
772
- description: string;
773
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
774
- contributing_factors: {
775
- impact: number;
776
- factor: string;
777
- }[];
778
- };
779
- thresholds: {
780
- recommendation_threshold: number;
781
- distance_from_threshold: number;
782
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
783
- };
784
- changed_at: string;
785
- simulation_id?: string | undefined;
786
- }, {
787
- signal_type: "confidence_delta_signal";
788
- hypothesis_id: string;
789
- delta_id: string;
790
- previous_confidence: number;
791
- new_confidence: number;
792
- delta: number;
793
- reason: {
794
- description: string;
795
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
796
- contributing_factors: {
797
- impact: number;
798
- factor: string;
799
- }[];
800
- };
801
- thresholds: {
802
- recommendation_threshold: number;
803
- distance_from_threshold: number;
804
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
805
- };
806
- changed_at: string;
807
- simulation_id?: string | undefined;
808
- }>, "many">>;
809
- /** Performance constraints */
810
- performance_limits: z.ZodOptional<z.ZodObject<{
811
- max_tokens: z.ZodDefault<z.ZodNumber>;
812
- max_latency_ms: z.ZodDefault<z.ZodNumber>;
813
- }, "strip", z.ZodTypeAny, {
814
- max_tokens: number;
815
- max_latency_ms: number;
816
- }, {
817
- max_tokens?: number | undefined;
818
- max_latency_ms?: number | undefined;
819
- }>>;
820
- /** Optional correlation ID for multi-step reasoning chains */
821
- reasoning_chain_id: z.ZodOptional<z.ZodString>;
822
- }, "strip", z.ZodTypeAny, {
823
- objective: {
824
- domain: string;
825
- constraints: string[];
826
- statement: string;
827
- context?: Record<string, unknown> | undefined;
828
- };
829
- mode: "reason" | "simulate" | "explore";
830
- prior_hypotheses?: {
831
- domain: string;
832
- statement: string;
833
- signal_type: "hypothesis_signal";
834
- hypothesis_id: string;
835
- supporting_evidence: {
836
- description: string;
837
- weight: number;
838
- evidence_id: string;
839
- source?: string | undefined;
840
- }[];
841
- counter_evidence: {
842
- description: string;
843
- weight: number;
844
- evidence_id: string;
845
- source?: string | undefined;
846
- }[];
847
- initial_confidence: number;
848
- strengthening_conditions: string[];
849
- weakening_conditions: string[];
850
- related_hypothesis_ids: string[];
851
- formed_at: string;
852
- }[] | undefined;
853
- prior_simulations?: {
854
- signal_type: "simulation_outcome_signal";
855
- simulation_id: string;
856
- scenario: {
857
- name: string;
858
- description: string;
859
- initial_conditions: Record<string, unknown>;
860
- parameters: Record<string, unknown>;
861
- };
862
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
863
- results: {
864
- primary_finding: string;
865
- secondary_findings: string[];
866
- metrics?: Record<string, number> | undefined;
867
- artifacts?: {
868
- type: string;
869
- description: string;
870
- artifact_id: string;
871
- }[] | undefined;
872
- };
873
- outcome_confidence: number;
874
- resource_usage: {
875
- tokens_used: number;
876
- latency_ms: number;
877
- within_budget: boolean;
878
- };
879
- exploration_recommendations: {
880
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
881
- description: string;
882
- priority: number;
883
- recommendation_id: string;
884
- }[];
885
- completed_at: string;
886
- hypothesis_id?: string | undefined;
887
- }[] | undefined;
888
- confidence_history?: {
889
- signal_type: "confidence_delta_signal";
890
- hypothesis_id: string;
891
- delta_id: string;
892
- previous_confidence: number;
893
- new_confidence: number;
894
- delta: number;
895
- reason: {
896
- description: string;
897
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
898
- contributing_factors: {
899
- impact: number;
900
- factor: string;
901
- }[];
902
- };
903
- thresholds: {
904
- recommendation_threshold: number;
905
- distance_from_threshold: number;
906
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
907
- };
908
- changed_at: string;
909
- simulation_id?: string | undefined;
910
- }[] | undefined;
911
- performance_limits?: {
912
- max_tokens: number;
913
- max_latency_ms: number;
914
- } | undefined;
915
- reasoning_chain_id?: string | undefined;
916
- }, {
917
- objective: {
918
- domain: string;
919
- constraints: string[];
920
- statement: string;
921
- context?: Record<string, unknown> | undefined;
922
- };
923
- mode: "reason" | "simulate" | "explore";
924
- prior_hypotheses?: {
925
- domain: string;
926
- statement: string;
927
- signal_type: "hypothesis_signal";
928
- hypothesis_id: string;
929
- supporting_evidence: {
930
- description: string;
931
- weight: number;
932
- evidence_id: string;
933
- source?: string | undefined;
934
- }[];
935
- counter_evidence: {
936
- description: string;
937
- weight: number;
938
- evidence_id: string;
939
- source?: string | undefined;
940
- }[];
941
- initial_confidence: number;
942
- strengthening_conditions: string[];
943
- weakening_conditions: string[];
944
- related_hypothesis_ids: string[];
945
- formed_at: string;
946
- }[] | undefined;
947
- prior_simulations?: {
948
- signal_type: "simulation_outcome_signal";
949
- simulation_id: string;
950
- scenario: {
951
- name: string;
952
- description: string;
953
- initial_conditions: Record<string, unknown>;
954
- parameters: Record<string, unknown>;
955
- };
956
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
957
- results: {
958
- primary_finding: string;
959
- secondary_findings: string[];
960
- metrics?: Record<string, number> | undefined;
961
- artifacts?: {
962
- type: string;
963
- description: string;
964
- artifact_id: string;
965
- }[] | undefined;
966
- };
967
- outcome_confidence: number;
968
- resource_usage: {
969
- tokens_used: number;
970
- latency_ms: number;
971
- within_budget: boolean;
972
- };
973
- exploration_recommendations: {
974
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
975
- description: string;
976
- priority: number;
977
- recommendation_id: string;
978
- }[];
979
- completed_at: string;
980
- hypothesis_id?: string | undefined;
981
- }[] | undefined;
982
- confidence_history?: {
983
- signal_type: "confidence_delta_signal";
984
- hypothesis_id: string;
985
- delta_id: string;
986
- previous_confidence: number;
987
- new_confidence: number;
988
- delta: number;
989
- reason: {
990
- description: string;
991
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
992
- contributing_factors: {
993
- impact: number;
994
- factor: string;
995
- }[];
996
- };
997
- thresholds: {
998
- recommendation_threshold: number;
999
- distance_from_threshold: number;
1000
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1001
- };
1002
- changed_at: string;
1003
- simulation_id?: string | undefined;
1004
- }[] | undefined;
1005
- performance_limits?: {
1006
- max_tokens?: number | undefined;
1007
- max_latency_ms?: number | undefined;
1008
- } | undefined;
1009
- reasoning_chain_id?: string | undefined;
1010
- }>;
1011
- export type IntelligenceLayerInput = z.infer<typeof IntelligenceLayerInputSchema>;
1012
- /**
1013
- * Intelligence Layer Output Schema
1014
- *
1015
- * Output containing all signals emitted during intelligence operations.
1016
- * Contains signals ONLY - no final decisions or actions.
1017
- */
1018
- export declare const IntelligenceLayerOutputSchema: z.ZodObject<{
1019
- /** Unique output identifier */
1020
- output_id: z.ZodString;
1021
- /** Mode that was executed */
1022
- mode_executed: z.ZodEnum<["reason", "simulate", "explore"]>;
1023
- /** All hypothesis signals generated */
1024
- hypothesis_signals: z.ZodArray<z.ZodObject<{
1025
- signal_type: z.ZodLiteral<"hypothesis_signal">;
1026
- hypothesis_id: z.ZodString;
1027
- /** The hypothesis statement */
1028
- statement: z.ZodString;
1029
- /** Domain/area the hypothesis relates to */
1030
- domain: z.ZodString;
1031
- /** Supporting evidence or reasoning */
1032
- supporting_evidence: z.ZodArray<z.ZodObject<{
1033
- evidence_id: z.ZodString;
1034
- description: z.ZodString;
1035
- weight: z.ZodNumber;
1036
- source: z.ZodOptional<z.ZodString>;
1037
- }, "strip", z.ZodTypeAny, {
1038
- description: string;
1039
- weight: number;
1040
- evidence_id: string;
1041
- source?: string | undefined;
1042
- }, {
1043
- description: string;
1044
- weight: number;
1045
- evidence_id: string;
1046
- source?: string | undefined;
1047
- }>, "many">;
1048
- /** Counter-evidence or alternative explanations */
1049
- counter_evidence: z.ZodArray<z.ZodObject<{
1050
- evidence_id: z.ZodString;
1051
- description: z.ZodString;
1052
- weight: z.ZodNumber;
1053
- source: z.ZodOptional<z.ZodString>;
1054
- }, "strip", z.ZodTypeAny, {
1055
- description: string;
1056
- weight: number;
1057
- evidence_id: string;
1058
- source?: string | undefined;
1059
- }, {
1060
- description: string;
1061
- weight: number;
1062
- evidence_id: string;
1063
- source?: string | undefined;
1064
- }>, "many">;
1065
- /** Initial confidence before simulation */
1066
- initial_confidence: z.ZodNumber;
1067
- /** Conditions that would strengthen the hypothesis */
1068
- strengthening_conditions: z.ZodArray<z.ZodString, "many">;
1069
- /** Conditions that would weaken the hypothesis */
1070
- weakening_conditions: z.ZodArray<z.ZodString, "many">;
1071
- /** Related hypotheses (if exploring multiple paths) */
1072
- related_hypothesis_ids: z.ZodArray<z.ZodString, "many">;
1073
- /** Timestamp of hypothesis formation */
1074
- formed_at: z.ZodString;
1075
- }, "strip", z.ZodTypeAny, {
1076
- domain: string;
1077
- statement: string;
1078
- signal_type: "hypothesis_signal";
1079
- hypothesis_id: string;
1080
- supporting_evidence: {
1081
- description: string;
1082
- weight: number;
1083
- evidence_id: string;
1084
- source?: string | undefined;
1085
- }[];
1086
- counter_evidence: {
1087
- description: string;
1088
- weight: number;
1089
- evidence_id: string;
1090
- source?: string | undefined;
1091
- }[];
1092
- initial_confidence: number;
1093
- strengthening_conditions: string[];
1094
- weakening_conditions: string[];
1095
- related_hypothesis_ids: string[];
1096
- formed_at: string;
1097
- }, {
1098
- domain: string;
1099
- statement: string;
1100
- signal_type: "hypothesis_signal";
1101
- hypothesis_id: string;
1102
- supporting_evidence: {
1103
- description: string;
1104
- weight: number;
1105
- evidence_id: string;
1106
- source?: string | undefined;
1107
- }[];
1108
- counter_evidence: {
1109
- description: string;
1110
- weight: number;
1111
- evidence_id: string;
1112
- source?: string | undefined;
1113
- }[];
1114
- initial_confidence: number;
1115
- strengthening_conditions: string[];
1116
- weakening_conditions: string[];
1117
- related_hypothesis_ids: string[];
1118
- formed_at: string;
1119
- }>, "many">;
1120
- /** All simulation outcome signals generated */
1121
- simulation_outcome_signals: z.ZodArray<z.ZodObject<{
1122
- signal_type: z.ZodLiteral<"simulation_outcome_signal">;
1123
- simulation_id: z.ZodString;
1124
- /** The hypothesis being tested (if applicable) */
1125
- hypothesis_id: z.ZodOptional<z.ZodString>;
1126
- /** What scenario was simulated */
1127
- scenario: z.ZodObject<{
1128
- name: z.ZodString;
1129
- description: z.ZodString;
1130
- initial_conditions: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1131
- parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1132
- }, "strip", z.ZodTypeAny, {
1133
- name: string;
1134
- description: string;
1135
- initial_conditions: Record<string, unknown>;
1136
- parameters: Record<string, unknown>;
1137
- }, {
1138
- name: string;
1139
- description: string;
1140
- initial_conditions: Record<string, unknown>;
1141
- parameters: Record<string, unknown>;
1142
- }>;
1143
- /** Simulation outcome classification */
1144
- outcome: z.ZodEnum<["hypothesis_supported", "hypothesis_weakened", "hypothesis_refuted", "inconclusive", "unexpected_result", "simulation_error"]>;
1145
- /** Detailed results from the simulation */
1146
- results: z.ZodObject<{
1147
- primary_finding: z.ZodString;
1148
- secondary_findings: z.ZodArray<z.ZodString, "many">;
1149
- metrics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
1150
- artifacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
1151
- artifact_id: z.ZodString;
1152
- type: z.ZodString;
1153
- description: z.ZodString;
1154
- }, "strip", z.ZodTypeAny, {
1155
- type: string;
1156
- description: string;
1157
- artifact_id: string;
1158
- }, {
1159
- type: string;
1160
- description: string;
1161
- artifact_id: string;
1162
- }>, "many">>;
1163
- }, "strip", z.ZodTypeAny, {
1164
- primary_finding: string;
1165
- secondary_findings: string[];
1166
- metrics?: Record<string, number> | undefined;
1167
- artifacts?: {
1168
- type: string;
1169
- description: string;
1170
- artifact_id: string;
1171
- }[] | undefined;
1172
- }, {
1173
- primary_finding: string;
1174
- secondary_findings: string[];
1175
- metrics?: Record<string, number> | undefined;
1176
- artifacts?: {
1177
- type: string;
1178
- description: string;
1179
- artifact_id: string;
1180
- }[] | undefined;
1181
- }>;
1182
- /** Confidence in the simulation outcome */
1183
- outcome_confidence: z.ZodNumber;
1184
- /** Resource usage during simulation */
1185
- resource_usage: z.ZodObject<{
1186
- tokens_used: z.ZodNumber;
1187
- latency_ms: z.ZodNumber;
1188
- within_budget: z.ZodBoolean;
1189
- }, "strip", z.ZodTypeAny, {
1190
- tokens_used: number;
1191
- latency_ms: number;
1192
- within_budget: boolean;
1193
- }, {
1194
- tokens_used: number;
1195
- latency_ms: number;
1196
- within_budget: boolean;
1197
- }>;
1198
- /** Recommendations for further exploration (NOT actions) */
1199
- exploration_recommendations: z.ZodArray<z.ZodObject<{
1200
- recommendation_id: z.ZodString;
1201
- type: z.ZodEnum<["additional_simulation", "hypothesis_refinement", "data_collection", "domain_expansion"]>;
1202
- description: z.ZodString;
1203
- priority: z.ZodNumber;
1204
- }, "strip", z.ZodTypeAny, {
1205
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
1206
- description: string;
1207
- priority: number;
1208
- recommendation_id: string;
1209
- }, {
1210
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
1211
- description: string;
1212
- priority: number;
1213
- recommendation_id: string;
1214
- }>, "many">;
1215
- /** Simulation completed timestamp */
1216
- completed_at: z.ZodString;
1217
- }, "strip", z.ZodTypeAny, {
1218
- signal_type: "simulation_outcome_signal";
1219
- simulation_id: string;
1220
- scenario: {
1221
- name: string;
1222
- description: string;
1223
- initial_conditions: Record<string, unknown>;
1224
- parameters: Record<string, unknown>;
1225
- };
1226
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
1227
- results: {
1228
- primary_finding: string;
1229
- secondary_findings: string[];
1230
- metrics?: Record<string, number> | undefined;
1231
- artifacts?: {
1232
- type: string;
1233
- description: string;
1234
- artifact_id: string;
1235
- }[] | undefined;
1236
- };
1237
- outcome_confidence: number;
1238
- resource_usage: {
1239
- tokens_used: number;
1240
- latency_ms: number;
1241
- within_budget: boolean;
1242
- };
1243
- exploration_recommendations: {
1244
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
1245
- description: string;
1246
- priority: number;
1247
- recommendation_id: string;
1248
- }[];
1249
- completed_at: string;
1250
- hypothesis_id?: string | undefined;
1251
- }, {
1252
- signal_type: "simulation_outcome_signal";
1253
- simulation_id: string;
1254
- scenario: {
1255
- name: string;
1256
- description: string;
1257
- initial_conditions: Record<string, unknown>;
1258
- parameters: Record<string, unknown>;
1259
- };
1260
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
1261
- results: {
1262
- primary_finding: string;
1263
- secondary_findings: string[];
1264
- metrics?: Record<string, number> | undefined;
1265
- artifacts?: {
1266
- type: string;
1267
- description: string;
1268
- artifact_id: string;
1269
- }[] | undefined;
1270
- };
1271
- outcome_confidence: number;
1272
- resource_usage: {
1273
- tokens_used: number;
1274
- latency_ms: number;
1275
- within_budget: boolean;
1276
- };
1277
- exploration_recommendations: {
1278
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
1279
- description: string;
1280
- priority: number;
1281
- recommendation_id: string;
1282
- }[];
1283
- completed_at: string;
1284
- hypothesis_id?: string | undefined;
1285
- }>, "many">;
1286
- /** All confidence delta signals generated */
1287
- confidence_delta_signals: z.ZodArray<z.ZodObject<{
1288
- signal_type: z.ZodLiteral<"confidence_delta_signal">;
1289
- delta_id: z.ZodString;
1290
- /** The hypothesis whose confidence changed */
1291
- hypothesis_id: z.ZodString;
1292
- /** Simulation that caused the change (if applicable) */
1293
- simulation_id: z.ZodOptional<z.ZodString>;
1294
- /** Previous confidence value */
1295
- previous_confidence: z.ZodNumber;
1296
- /** New confidence value */
1297
- new_confidence: z.ZodNumber;
1298
- /** The actual delta (can be positive or negative) */
1299
- delta: z.ZodNumber;
1300
- /** Reason for the confidence change */
1301
- reason: z.ZodObject<{
1302
- category: z.ZodEnum<["new_evidence", "contradicting_evidence", "simulation_result", "reasoning_refinement", "assumption_invalidated", "scope_change", "uncertainty_quantification"]>;
1303
- description: z.ZodString;
1304
- contributing_factors: z.ZodArray<z.ZodObject<{
1305
- factor: z.ZodString;
1306
- impact: z.ZodNumber;
1307
- }, "strip", z.ZodTypeAny, {
1308
- impact: number;
1309
- factor: string;
1310
- }, {
1311
- impact: number;
1312
- factor: string;
1313
- }>, "many">;
1314
- }, "strip", z.ZodTypeAny, {
1315
- description: string;
1316
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
1317
- contributing_factors: {
1318
- impact: number;
1319
- factor: string;
1320
- }[];
1321
- }, {
1322
- description: string;
1323
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
1324
- contributing_factors: {
1325
- impact: number;
1326
- factor: string;
1327
- }[];
1328
- }>;
1329
- /** Whether confidence is still within actionable thresholds */
1330
- thresholds: z.ZodObject<{
1331
- /** Confidence required for recommendation */
1332
- recommendation_threshold: z.ZodNumber;
1333
- /** Current distance from threshold */
1334
- distance_from_threshold: z.ZodNumber;
1335
- /** Trend direction over recent deltas */
1336
- trend: z.ZodEnum<["increasing", "decreasing", "stable", "oscillating"]>;
1337
- }, "strip", z.ZodTypeAny, {
1338
- recommendation_threshold: number;
1339
- distance_from_threshold: number;
1340
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1341
- }, {
1342
- recommendation_threshold: number;
1343
- distance_from_threshold: number;
1344
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1345
- }>;
1346
- /** Timestamp of confidence change */
1347
- changed_at: z.ZodString;
1348
- }, "strip", z.ZodTypeAny, {
1349
- signal_type: "confidence_delta_signal";
1350
- hypothesis_id: string;
1351
- delta_id: string;
1352
- previous_confidence: number;
1353
- new_confidence: number;
1354
- delta: number;
1355
- reason: {
1356
- description: string;
1357
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
1358
- contributing_factors: {
1359
- impact: number;
1360
- factor: string;
1361
- }[];
1362
- };
1363
- thresholds: {
1364
- recommendation_threshold: number;
1365
- distance_from_threshold: number;
1366
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1367
- };
1368
- changed_at: string;
1369
- simulation_id?: string | undefined;
1370
- }, {
1371
- signal_type: "confidence_delta_signal";
1372
- hypothesis_id: string;
1373
- delta_id: string;
1374
- previous_confidence: number;
1375
- new_confidence: number;
1376
- delta: number;
1377
- reason: {
1378
- description: string;
1379
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
1380
- contributing_factors: {
1381
- impact: number;
1382
- factor: string;
1383
- }[];
1384
- };
1385
- thresholds: {
1386
- recommendation_threshold: number;
1387
- distance_from_threshold: number;
1388
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1389
- };
1390
- changed_at: string;
1391
- simulation_id?: string | undefined;
1392
- }>, "many">;
1393
- /** Summary of intelligence operations */
1394
- summary: z.ZodObject<{
1395
- hypotheses_formed: z.ZodNumber;
1396
- simulations_run: z.ZodNumber;
1397
- confidence_updates: z.ZodNumber;
1398
- highest_confidence_hypothesis: z.ZodOptional<z.ZodString>;
1399
- highest_confidence_value: z.ZodOptional<z.ZodNumber>;
1400
- /** Explicit statement that no final decisions were made */
1401
- final_decision_status: z.ZodLiteral<"no_final_decision">;
1402
- }, "strip", z.ZodTypeAny, {
1403
- hypotheses_formed: number;
1404
- simulations_run: number;
1405
- confidence_updates: number;
1406
- final_decision_status: "no_final_decision";
1407
- highest_confidence_hypothesis?: string | undefined;
1408
- highest_confidence_value?: number | undefined;
1409
- }, {
1410
- hypotheses_formed: number;
1411
- simulations_run: number;
1412
- confidence_updates: number;
1413
- final_decision_status: "no_final_decision";
1414
- highest_confidence_hypothesis?: string | undefined;
1415
- highest_confidence_value?: number | undefined;
1416
- }>;
1417
- /** Resource consumption tracking */
1418
- resource_consumption: z.ZodObject<{
1419
- total_tokens_used: z.ZodNumber;
1420
- total_latency_ms: z.ZodNumber;
1421
- budget_tokens_remaining: z.ZodNumber;
1422
- budget_latency_remaining_ms: z.ZodNumber;
1423
- within_budget: z.ZodBoolean;
1424
- }, "strip", z.ZodTypeAny, {
1425
- within_budget: boolean;
1426
- total_tokens_used: number;
1427
- total_latency_ms: number;
1428
- budget_tokens_remaining: number;
1429
- budget_latency_remaining_ms: number;
1430
- }, {
1431
- within_budget: boolean;
1432
- total_tokens_used: number;
1433
- total_latency_ms: number;
1434
- budget_tokens_remaining: number;
1435
- budget_latency_remaining_ms: number;
1436
- }>;
1437
- /** Suggestions for human decision-makers (NOT agent decisions) */
1438
- human_decision_suggestions: z.ZodArray<z.ZodObject<{
1439
- suggestion_id: z.ZodString;
1440
- hypothesis_id: z.ZodString;
1441
- confidence: z.ZodNumber;
1442
- rationale: z.ZodString;
1443
- caveats: z.ZodArray<z.ZodString, "many">;
1444
- }, "strip", z.ZodTypeAny, {
1445
- confidence: number;
1446
- hypothesis_id: string;
1447
- suggestion_id: string;
1448
- rationale: string;
1449
- caveats: string[];
1450
- }, {
1451
- confidence: number;
1452
- hypothesis_id: string;
1453
- suggestion_id: string;
1454
- rationale: string;
1455
- caveats: string[];
1456
- }>, "many">;
1457
- /** Completion timestamp */
1458
- completed_at: z.ZodString;
1459
- }, "strip", z.ZodTypeAny, {
1460
- summary: {
1461
- hypotheses_formed: number;
1462
- simulations_run: number;
1463
- confidence_updates: number;
1464
- final_decision_status: "no_final_decision";
1465
- highest_confidence_hypothesis?: string | undefined;
1466
- highest_confidence_value?: number | undefined;
1467
- };
1468
- completed_at: string;
1469
- output_id: string;
1470
- mode_executed: "reason" | "simulate" | "explore";
1471
- hypothesis_signals: {
1472
- domain: string;
1473
- statement: string;
1474
- signal_type: "hypothesis_signal";
1475
- hypothesis_id: string;
1476
- supporting_evidence: {
1477
- description: string;
1478
- weight: number;
1479
- evidence_id: string;
1480
- source?: string | undefined;
1481
- }[];
1482
- counter_evidence: {
1483
- description: string;
1484
- weight: number;
1485
- evidence_id: string;
1486
- source?: string | undefined;
1487
- }[];
1488
- initial_confidence: number;
1489
- strengthening_conditions: string[];
1490
- weakening_conditions: string[];
1491
- related_hypothesis_ids: string[];
1492
- formed_at: string;
1493
- }[];
1494
- simulation_outcome_signals: {
1495
- signal_type: "simulation_outcome_signal";
1496
- simulation_id: string;
1497
- scenario: {
1498
- name: string;
1499
- description: string;
1500
- initial_conditions: Record<string, unknown>;
1501
- parameters: Record<string, unknown>;
1502
- };
1503
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
1504
- results: {
1505
- primary_finding: string;
1506
- secondary_findings: string[];
1507
- metrics?: Record<string, number> | undefined;
1508
- artifacts?: {
1509
- type: string;
1510
- description: string;
1511
- artifact_id: string;
1512
- }[] | undefined;
1513
- };
1514
- outcome_confidence: number;
1515
- resource_usage: {
1516
- tokens_used: number;
1517
- latency_ms: number;
1518
- within_budget: boolean;
1519
- };
1520
- exploration_recommendations: {
1521
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
1522
- description: string;
1523
- priority: number;
1524
- recommendation_id: string;
1525
- }[];
1526
- completed_at: string;
1527
- hypothesis_id?: string | undefined;
1528
- }[];
1529
- confidence_delta_signals: {
1530
- signal_type: "confidence_delta_signal";
1531
- hypothesis_id: string;
1532
- delta_id: string;
1533
- previous_confidence: number;
1534
- new_confidence: number;
1535
- delta: number;
1536
- reason: {
1537
- description: string;
1538
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
1539
- contributing_factors: {
1540
- impact: number;
1541
- factor: string;
1542
- }[];
1543
- };
1544
- thresholds: {
1545
- recommendation_threshold: number;
1546
- distance_from_threshold: number;
1547
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1548
- };
1549
- changed_at: string;
1550
- simulation_id?: string | undefined;
1551
- }[];
1552
- resource_consumption: {
1553
- within_budget: boolean;
1554
- total_tokens_used: number;
1555
- total_latency_ms: number;
1556
- budget_tokens_remaining: number;
1557
- budget_latency_remaining_ms: number;
1558
- };
1559
- human_decision_suggestions: {
1560
- confidence: number;
1561
- hypothesis_id: string;
1562
- suggestion_id: string;
1563
- rationale: string;
1564
- caveats: string[];
1565
- }[];
1566
- }, {
1567
- summary: {
1568
- hypotheses_formed: number;
1569
- simulations_run: number;
1570
- confidence_updates: number;
1571
- final_decision_status: "no_final_decision";
1572
- highest_confidence_hypothesis?: string | undefined;
1573
- highest_confidence_value?: number | undefined;
1574
- };
1575
- completed_at: string;
1576
- output_id: string;
1577
- mode_executed: "reason" | "simulate" | "explore";
1578
- hypothesis_signals: {
1579
- domain: string;
1580
- statement: string;
1581
- signal_type: "hypothesis_signal";
1582
- hypothesis_id: string;
1583
- supporting_evidence: {
1584
- description: string;
1585
- weight: number;
1586
- evidence_id: string;
1587
- source?: string | undefined;
1588
- }[];
1589
- counter_evidence: {
1590
- description: string;
1591
- weight: number;
1592
- evidence_id: string;
1593
- source?: string | undefined;
1594
- }[];
1595
- initial_confidence: number;
1596
- strengthening_conditions: string[];
1597
- weakening_conditions: string[];
1598
- related_hypothesis_ids: string[];
1599
- formed_at: string;
1600
- }[];
1601
- simulation_outcome_signals: {
1602
- signal_type: "simulation_outcome_signal";
1603
- simulation_id: string;
1604
- scenario: {
1605
- name: string;
1606
- description: string;
1607
- initial_conditions: Record<string, unknown>;
1608
- parameters: Record<string, unknown>;
1609
- };
1610
- outcome: "hypothesis_supported" | "hypothesis_weakened" | "hypothesis_refuted" | "inconclusive" | "unexpected_result" | "simulation_error";
1611
- results: {
1612
- primary_finding: string;
1613
- secondary_findings: string[];
1614
- metrics?: Record<string, number> | undefined;
1615
- artifacts?: {
1616
- type: string;
1617
- description: string;
1618
- artifact_id: string;
1619
- }[] | undefined;
1620
- };
1621
- outcome_confidence: number;
1622
- resource_usage: {
1623
- tokens_used: number;
1624
- latency_ms: number;
1625
- within_budget: boolean;
1626
- };
1627
- exploration_recommendations: {
1628
- type: "additional_simulation" | "hypothesis_refinement" | "data_collection" | "domain_expansion";
1629
- description: string;
1630
- priority: number;
1631
- recommendation_id: string;
1632
- }[];
1633
- completed_at: string;
1634
- hypothesis_id?: string | undefined;
1635
- }[];
1636
- confidence_delta_signals: {
1637
- signal_type: "confidence_delta_signal";
1638
- hypothesis_id: string;
1639
- delta_id: string;
1640
- previous_confidence: number;
1641
- new_confidence: number;
1642
- delta: number;
1643
- reason: {
1644
- description: string;
1645
- category: "new_evidence" | "contradicting_evidence" | "simulation_result" | "reasoning_refinement" | "assumption_invalidated" | "scope_change" | "uncertainty_quantification";
1646
- contributing_factors: {
1647
- impact: number;
1648
- factor: string;
1649
- }[];
1650
- };
1651
- thresholds: {
1652
- recommendation_threshold: number;
1653
- distance_from_threshold: number;
1654
- trend: "increasing" | "decreasing" | "stable" | "oscillating";
1655
- };
1656
- changed_at: string;
1657
- simulation_id?: string | undefined;
1658
- }[];
1659
- resource_consumption: {
1660
- within_budget: boolean;
1661
- total_tokens_used: number;
1662
- total_latency_ms: number;
1663
- budget_tokens_remaining: number;
1664
- budget_latency_remaining_ms: number;
1665
- };
1666
- human_decision_suggestions: {
1667
- confidence: number;
1668
- hypothesis_id: string;
1669
- suggestion_id: string;
1670
- rationale: string;
1671
- caveats: string[];
1672
- }[];
1673
- }>;
1674
- export type IntelligenceLayerOutput = z.infer<typeof IntelligenceLayerOutputSchema>;