codehere 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of codehere might be problematic. Click here for more details.

Files changed (405) hide show
  1. package/README.md +223 -42
  2. package/dist/application/agents/documentation-agent.d.ts +24 -0
  3. package/dist/application/agents/documentation-agent.d.ts.map +1 -0
  4. package/dist/application/agents/documentation-agent.js +399 -0
  5. package/dist/application/agents/documentation-agent.js.map +1 -0
  6. package/dist/application/agents/execution-agent.d.ts +11 -0
  7. package/dist/application/agents/execution-agent.d.ts.map +1 -1
  8. package/dist/application/agents/execution-agent.js +289 -80
  9. package/dist/application/agents/execution-agent.js.map +1 -1
  10. package/dist/application/agents/multi-agent-orchestrator.d.ts +4 -0
  11. package/dist/application/agents/multi-agent-orchestrator.d.ts.map +1 -1
  12. package/dist/application/agents/multi-agent-orchestrator.js +86 -0
  13. package/dist/application/agents/multi-agent-orchestrator.js.map +1 -1
  14. package/dist/application/agents/planning-agent.d.ts +3 -0
  15. package/dist/application/agents/planning-agent.d.ts.map +1 -1
  16. package/dist/application/agents/planning-agent.js +132 -64
  17. package/dist/application/agents/planning-agent.js.map +1 -1
  18. package/dist/application/agents/product-requirements-agent.d.ts +21 -0
  19. package/dist/application/agents/product-requirements-agent.d.ts.map +1 -0
  20. package/dist/application/agents/product-requirements-agent.js +247 -0
  21. package/dist/application/agents/product-requirements-agent.js.map +1 -0
  22. package/dist/application/agents/validation-agent.d.ts +5 -1
  23. package/dist/application/agents/validation-agent.d.ts.map +1 -1
  24. package/dist/application/agents/validation-agent.js +156 -21
  25. package/dist/application/agents/validation-agent.js.map +1 -1
  26. package/dist/application/services/dependency-container.d.ts +25 -2
  27. package/dist/application/services/dependency-container.d.ts.map +1 -1
  28. package/dist/application/services/dependency-container.js +163 -1
  29. package/dist/application/services/dependency-container.js.map +1 -1
  30. package/dist/application/services/intelligent-router.d.ts +13 -0
  31. package/dist/application/services/intelligent-router.d.ts.map +1 -1
  32. package/dist/application/services/intelligent-router.js +300 -87
  33. package/dist/application/services/intelligent-router.js.map +1 -1
  34. package/dist/application/use-cases/ask-question-use-case.d.ts +31 -0
  35. package/dist/application/use-cases/ask-question-use-case.d.ts.map +1 -1
  36. package/dist/application/use-cases/ask-question-use-case.js +254 -55
  37. package/dist/application/use-cases/ask-question-use-case.js.map +1 -1
  38. package/dist/application/use-cases/edit-file-use-case.d.ts.map +1 -1
  39. package/dist/application/use-cases/edit-file-use-case.js +86 -4
  40. package/dist/application/use-cases/edit-file-use-case.js.map +1 -1
  41. package/dist/application/use-cases/planning-use-case.d.ts.map +1 -1
  42. package/dist/application/use-cases/planning-use-case.js +10 -1
  43. package/dist/application/use-cases/planning-use-case.js.map +1 -1
  44. package/dist/application/use-cases/react-orchestration-use-case.d.ts.map +1 -1
  45. package/dist/application/use-cases/react-orchestration-use-case.js +6 -2
  46. package/dist/application/use-cases/react-orchestration-use-case.js.map +1 -1
  47. package/dist/domain/entities/documentation.d.ts +35 -0
  48. package/dist/domain/entities/documentation.d.ts.map +1 -0
  49. package/dist/domain/entities/documentation.js +6 -0
  50. package/dist/domain/entities/documentation.js.map +1 -0
  51. package/dist/domain/entities/product-requirements.d.ts +50 -0
  52. package/dist/domain/entities/product-requirements.d.ts.map +1 -0
  53. package/dist/domain/entities/product-requirements.js +6 -0
  54. package/dist/domain/entities/product-requirements.js.map +1 -0
  55. package/dist/domain/entities/task.d.ts +152 -0
  56. package/dist/domain/entities/task.d.ts.map +1 -0
  57. package/dist/domain/entities/task.js +61 -0
  58. package/dist/domain/entities/task.js.map +1 -0
  59. package/dist/domain/interfaces/agent.interface.d.ts +15 -0
  60. package/dist/domain/interfaces/agent.interface.d.ts.map +1 -0
  61. package/dist/domain/interfaces/agent.interface.js +6 -0
  62. package/dist/domain/interfaces/agent.interface.js.map +1 -0
  63. package/dist/domain/services/environment-mode-manager.d.ts +18 -0
  64. package/dist/domain/services/environment-mode-manager.d.ts.map +1 -0
  65. package/dist/domain/services/environment-mode-manager.js +37 -0
  66. package/dist/domain/services/environment-mode-manager.js.map +1 -0
  67. package/dist/domain/services/react-loop.d.ts +8 -0
  68. package/dist/domain/services/react-loop.d.ts.map +1 -1
  69. package/dist/domain/services/react-loop.js +82 -6
  70. package/dist/domain/services/react-loop.js.map +1 -1
  71. package/dist/domain/services/risk-tier-detector.d.ts +18 -0
  72. package/dist/domain/services/risk-tier-detector.d.ts.map +1 -0
  73. package/dist/domain/services/risk-tier-detector.js +65 -0
  74. package/dist/domain/services/risk-tier-detector.js.map +1 -0
  75. package/dist/formatter.d.ts +2 -2
  76. package/dist/formatter.d.ts.map +1 -1
  77. package/dist/formatter.js +40 -20
  78. package/dist/formatter.js.map +1 -1
  79. package/dist/index.js +218 -125
  80. package/dist/index.js.map +1 -1
  81. package/dist/infrastructure/ai/cohere-ai-service.d.ts +3 -1
  82. package/dist/infrastructure/ai/cohere-ai-service.d.ts.map +1 -1
  83. package/dist/infrastructure/ai/cohere-ai-service.js +65 -5
  84. package/dist/infrastructure/ai/cohere-ai-service.js.map +1 -1
  85. package/dist/infrastructure/ai/fake-ai-service.d.ts +22 -0
  86. package/dist/infrastructure/ai/fake-ai-service.d.ts.map +1 -0
  87. package/dist/infrastructure/ai/fake-ai-service.js +59 -0
  88. package/dist/infrastructure/ai/fake-ai-service.js.map +1 -0
  89. package/dist/infrastructure/ai/provider-ai-service.d.ts +59 -0
  90. package/dist/infrastructure/ai/provider-ai-service.d.ts.map +1 -0
  91. package/dist/infrastructure/ai/provider-ai-service.js +477 -0
  92. package/dist/infrastructure/ai/provider-ai-service.js.map +1 -0
  93. package/dist/infrastructure/cache/embedding-cache.d.ts +13 -1
  94. package/dist/infrastructure/cache/embedding-cache.d.ts.map +1 -1
  95. package/dist/infrastructure/cache/embedding-cache.js +80 -9
  96. package/dist/infrastructure/cache/embedding-cache.js.map +1 -1
  97. package/dist/infrastructure/cache/query-result-cache.d.ts +68 -0
  98. package/dist/infrastructure/cache/query-result-cache.d.ts.map +1 -0
  99. package/dist/infrastructure/cache/query-result-cache.js +138 -0
  100. package/dist/infrastructure/cache/query-result-cache.js.map +1 -0
  101. package/dist/infrastructure/cache/response-cache.d.ts +86 -0
  102. package/dist/infrastructure/cache/response-cache.d.ts.map +1 -0
  103. package/dist/infrastructure/cache/response-cache.js +224 -0
  104. package/dist/infrastructure/cache/response-cache.js.map +1 -0
  105. package/dist/infrastructure/cache/security-scan-cache.d.ts +57 -0
  106. package/dist/infrastructure/cache/security-scan-cache.d.ts.map +1 -0
  107. package/dist/infrastructure/cache/security-scan-cache.js +124 -0
  108. package/dist/infrastructure/cache/security-scan-cache.js.map +1 -0
  109. package/dist/infrastructure/completion/bash-completion.d.ts +8 -0
  110. package/dist/infrastructure/completion/bash-completion.d.ts.map +1 -0
  111. package/dist/infrastructure/completion/bash-completion.js +101 -0
  112. package/dist/infrastructure/completion/bash-completion.js.map +1 -0
  113. package/dist/infrastructure/completion/completion-generator.d.ts +42 -0
  114. package/dist/infrastructure/completion/completion-generator.d.ts.map +1 -0
  115. package/dist/infrastructure/completion/completion-generator.js +184 -0
  116. package/dist/infrastructure/completion/completion-generator.js.map +1 -0
  117. package/dist/infrastructure/completion/fish-completion.d.ts +8 -0
  118. package/dist/infrastructure/completion/fish-completion.d.ts.map +1 -0
  119. package/dist/infrastructure/completion/fish-completion.js +65 -0
  120. package/dist/infrastructure/completion/fish-completion.js.map +1 -0
  121. package/dist/infrastructure/completion/zsh-completion.d.ts +8 -0
  122. package/dist/infrastructure/completion/zsh-completion.d.ts.map +1 -0
  123. package/dist/infrastructure/completion/zsh-completion.js +85 -0
  124. package/dist/infrastructure/completion/zsh-completion.js.map +1 -0
  125. package/dist/infrastructure/context/context-compressor.d.ts +94 -0
  126. package/dist/infrastructure/context/context-compressor.d.ts.map +1 -0
  127. package/dist/infrastructure/context/context-compressor.js +329 -0
  128. package/dist/infrastructure/context/context-compressor.js.map +1 -0
  129. package/dist/infrastructure/context/conversation-context.d.ts +58 -0
  130. package/dist/infrastructure/context/conversation-context.d.ts.map +1 -0
  131. package/dist/infrastructure/context/conversation-context.js +170 -0
  132. package/dist/infrastructure/context/conversation-context.js.map +1 -0
  133. package/dist/infrastructure/context/session-manager.d.ts +26 -0
  134. package/dist/infrastructure/context/session-manager.d.ts.map +1 -0
  135. package/dist/infrastructure/context/session-manager.js +98 -0
  136. package/dist/infrastructure/context/session-manager.js.map +1 -0
  137. package/dist/infrastructure/cost/cost-tracker.d.ts +1 -0
  138. package/dist/infrastructure/cost/cost-tracker.d.ts.map +1 -1
  139. package/dist/infrastructure/cost/cost-tracker.js +12 -5
  140. package/dist/infrastructure/cost/cost-tracker.js.map +1 -1
  141. package/dist/infrastructure/governance/nist-ai-rmf.d.ts +6 -8
  142. package/dist/infrastructure/governance/nist-ai-rmf.d.ts.map +1 -1
  143. package/dist/infrastructure/governance/nist-ai-rmf.js +6 -8
  144. package/dist/infrastructure/governance/nist-ai-rmf.js.map +1 -1
  145. package/dist/infrastructure/governance/policy-as-code.d.ts +6 -8
  146. package/dist/infrastructure/governance/policy-as-code.d.ts.map +1 -1
  147. package/dist/infrastructure/governance/policy-as-code.js +24 -11
  148. package/dist/infrastructure/governance/policy-as-code.js.map +1 -1
  149. package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts +7 -9
  150. package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts.map +1 -1
  151. package/dist/infrastructure/governance/prompt-to-code-lineage.js +7 -9
  152. package/dist/infrastructure/governance/prompt-to-code-lineage.js.map +1 -1
  153. package/dist/infrastructure/observability/execution-tracer.d.ts +5 -2
  154. package/dist/infrastructure/observability/execution-tracer.d.ts.map +1 -1
  155. package/dist/infrastructure/observability/execution-tracer.js +45 -8
  156. package/dist/infrastructure/observability/execution-tracer.js.map +1 -1
  157. package/dist/infrastructure/providers/cohere-provider.d.ts +39 -0
  158. package/dist/infrastructure/providers/cohere-provider.d.ts.map +1 -0
  159. package/dist/infrastructure/providers/cohere-provider.js +359 -0
  160. package/dist/infrastructure/providers/cohere-provider.js.map +1 -0
  161. package/dist/infrastructure/providers/fake-provider.d.ts +43 -0
  162. package/dist/infrastructure/providers/fake-provider.d.ts.map +1 -0
  163. package/dist/infrastructure/providers/fake-provider.js +130 -0
  164. package/dist/infrastructure/providers/fake-provider.js.map +1 -0
  165. package/dist/infrastructure/providers/local-llm-provider.d.ts +49 -0
  166. package/dist/infrastructure/providers/local-llm-provider.d.ts.map +1 -0
  167. package/dist/infrastructure/providers/local-llm-provider.js +330 -0
  168. package/dist/infrastructure/providers/local-llm-provider.js.map +1 -0
  169. package/dist/infrastructure/providers/model-config.types.d.ts +70 -0
  170. package/dist/infrastructure/providers/model-config.types.d.ts.map +1 -0
  171. package/dist/infrastructure/providers/model-config.types.js +9 -0
  172. package/dist/infrastructure/providers/model-config.types.js.map +1 -0
  173. package/dist/infrastructure/providers/model-provider.interface.d.ts +113 -0
  174. package/dist/infrastructure/providers/model-provider.interface.d.ts.map +1 -0
  175. package/dist/infrastructure/providers/model-provider.interface.js +8 -0
  176. package/dist/infrastructure/providers/model-provider.interface.js.map +1 -0
  177. package/dist/infrastructure/providers/openai-provider.d.ts +38 -0
  178. package/dist/infrastructure/providers/openai-provider.d.ts.map +1 -0
  179. package/dist/infrastructure/providers/openai-provider.js +413 -0
  180. package/dist/infrastructure/providers/openai-provider.js.map +1 -0
  181. package/dist/infrastructure/providers/operation-provider-resolver.d.ts +48 -0
  182. package/dist/infrastructure/providers/operation-provider-resolver.d.ts.map +1 -0
  183. package/dist/infrastructure/providers/operation-provider-resolver.js +105 -0
  184. package/dist/infrastructure/providers/operation-provider-resolver.js.map +1 -0
  185. package/dist/infrastructure/providers/provider-config-loader.d.ts +37 -0
  186. package/dist/infrastructure/providers/provider-config-loader.d.ts.map +1 -0
  187. package/dist/infrastructure/providers/provider-config-loader.js +120 -0
  188. package/dist/infrastructure/providers/provider-config-loader.js.map +1 -0
  189. package/dist/infrastructure/providers/provider-registry.d.ts +53 -0
  190. package/dist/infrastructure/providers/provider-registry.d.ts.map +1 -0
  191. package/dist/infrastructure/providers/provider-registry.js +88 -0
  192. package/dist/infrastructure/providers/provider-registry.js.map +1 -0
  193. package/dist/infrastructure/security/ai-sast-scanner.d.ts +4 -0
  194. package/dist/infrastructure/security/ai-sast-scanner.d.ts.map +1 -1
  195. package/dist/infrastructure/security/ai-sast-scanner.js +82 -4
  196. package/dist/infrastructure/security/ai-sast-scanner.js.map +1 -1
  197. package/dist/infrastructure/security/enhanced-security-gate.d.ts +2 -0
  198. package/dist/infrastructure/security/enhanced-security-gate.d.ts.map +1 -1
  199. package/dist/infrastructure/security/enhanced-security-gate.js +74 -15
  200. package/dist/infrastructure/security/enhanced-security-gate.js.map +1 -1
  201. package/dist/infrastructure/storage/plan-repository.d.ts +38 -0
  202. package/dist/infrastructure/storage/plan-repository.d.ts.map +1 -0
  203. package/dist/infrastructure/storage/plan-repository.js +133 -0
  204. package/dist/infrastructure/storage/plan-repository.js.map +1 -0
  205. package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts +11 -0
  206. package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts.map +1 -1
  207. package/dist/infrastructure/storage/sqlite-embedding-repository.js +121 -6
  208. package/dist/infrastructure/storage/sqlite-embedding-repository.js.map +1 -1
  209. package/dist/infrastructure/storage/task-helpers.d.ts +58 -0
  210. package/dist/infrastructure/storage/task-helpers.d.ts.map +1 -0
  211. package/dist/infrastructure/storage/task-helpers.js +157 -0
  212. package/dist/infrastructure/storage/task-helpers.js.map +1 -0
  213. package/dist/infrastructure/storage/task-repository.d.ts +67 -0
  214. package/dist/infrastructure/storage/task-repository.d.ts.map +1 -0
  215. package/dist/infrastructure/storage/task-repository.js +205 -0
  216. package/dist/infrastructure/storage/task-repository.js.map +1 -0
  217. package/dist/infrastructure/ux/bi-directional-learning.d.ts +22 -0
  218. package/dist/infrastructure/ux/bi-directional-learning.d.ts.map +1 -1
  219. package/dist/infrastructure/ux/bi-directional-learning.js +144 -7
  220. package/dist/infrastructure/ux/bi-directional-learning.js.map +1 -1
  221. package/dist/infrastructure/ux/capability-boundaries.d.ts +50 -0
  222. package/dist/infrastructure/ux/capability-boundaries.d.ts.map +1 -0
  223. package/dist/infrastructure/ux/capability-boundaries.js +167 -0
  224. package/dist/infrastructure/ux/capability-boundaries.js.map +1 -0
  225. package/dist/infrastructure/ux/comprehensive-formatter.d.ts +63 -0
  226. package/dist/infrastructure/ux/comprehensive-formatter.d.ts.map +1 -0
  227. package/dist/infrastructure/ux/comprehensive-formatter.js +212 -0
  228. package/dist/infrastructure/ux/comprehensive-formatter.js.map +1 -0
  229. package/dist/infrastructure/ux/contextual-feature-discovery.d.ts +24 -0
  230. package/dist/infrastructure/ux/contextual-feature-discovery.d.ts.map +1 -0
  231. package/dist/infrastructure/ux/contextual-feature-discovery.js +144 -0
  232. package/dist/infrastructure/ux/contextual-feature-discovery.js.map +1 -0
  233. package/dist/infrastructure/ux/expectation-management.d.ts +33 -0
  234. package/dist/infrastructure/ux/expectation-management.d.ts.map +1 -1
  235. package/dist/infrastructure/ux/expectation-management.js +138 -4
  236. package/dist/infrastructure/ux/expectation-management.js.map +1 -1
  237. package/dist/infrastructure/ux/feature-discovery.d.ts +47 -0
  238. package/dist/infrastructure/ux/feature-discovery.d.ts.map +1 -0
  239. package/dist/infrastructure/ux/feature-discovery.js +190 -0
  240. package/dist/infrastructure/ux/feature-discovery.js.map +1 -0
  241. package/dist/infrastructure/ux/feedback-prompt.d.ts +42 -0
  242. package/dist/infrastructure/ux/feedback-prompt.d.ts.map +1 -0
  243. package/dist/infrastructure/ux/feedback-prompt.js +181 -0
  244. package/dist/infrastructure/ux/feedback-prompt.js.map +1 -0
  245. package/dist/infrastructure/ux/hitl-review-portal.d.ts +47 -0
  246. package/dist/infrastructure/ux/hitl-review-portal.d.ts.map +1 -0
  247. package/dist/infrastructure/ux/hitl-review-portal.js +228 -0
  248. package/dist/infrastructure/ux/hitl-review-portal.js.map +1 -0
  249. package/dist/infrastructure/ux/hitl-validation.d.ts +35 -0
  250. package/dist/infrastructure/ux/hitl-validation.d.ts.map +1 -1
  251. package/dist/infrastructure/ux/hitl-validation.js +86 -0
  252. package/dist/infrastructure/ux/hitl-validation.js.map +1 -1
  253. package/dist/infrastructure/ux/progress-indicator.d.ts +55 -0
  254. package/dist/infrastructure/ux/progress-indicator.d.ts.map +1 -0
  255. package/dist/infrastructure/ux/progress-indicator.js +131 -0
  256. package/dist/infrastructure/ux/progress-indicator.js.map +1 -0
  257. package/dist/infrastructure/ux/progressive-disclosure.d.ts.map +1 -1
  258. package/dist/infrastructure/ux/progressive-disclosure.js +2 -1
  259. package/dist/infrastructure/ux/progressive-disclosure.js.map +1 -1
  260. package/dist/infrastructure/ux/proportional-friction.d.ts +73 -0
  261. package/dist/infrastructure/ux/proportional-friction.d.ts.map +1 -0
  262. package/dist/infrastructure/ux/proportional-friction.js +200 -0
  263. package/dist/infrastructure/ux/proportional-friction.js.map +1 -0
  264. package/dist/infrastructure/ux/review-checkpoint.d.ts +35 -0
  265. package/dist/infrastructure/ux/review-checkpoint.d.ts.map +1 -0
  266. package/dist/infrastructure/ux/review-checkpoint.js +119 -0
  267. package/dist/infrastructure/ux/review-checkpoint.js.map +1 -0
  268. package/dist/infrastructure/ux/staged-feature-intro.d.ts +47 -0
  269. package/dist/infrastructure/ux/staged-feature-intro.d.ts.map +1 -0
  270. package/dist/infrastructure/ux/staged-feature-intro.js +144 -0
  271. package/dist/infrastructure/ux/staged-feature-intro.js.map +1 -0
  272. package/dist/infrastructure/ux/syntax-highlighter.d.ts +21 -0
  273. package/dist/infrastructure/ux/syntax-highlighter.d.ts.map +1 -0
  274. package/dist/infrastructure/ux/syntax-highlighter.js +172 -0
  275. package/dist/infrastructure/ux/syntax-highlighter.js.map +1 -0
  276. package/dist/infrastructure/validation/agent-feedback.d.ts +115 -0
  277. package/dist/infrastructure/validation/agent-feedback.d.ts.map +1 -0
  278. package/dist/infrastructure/validation/agent-feedback.js +227 -0
  279. package/dist/infrastructure/validation/agent-feedback.js.map +1 -0
  280. package/dist/infrastructure/validation/agent-validation-helper.d.ts +75 -0
  281. package/dist/infrastructure/validation/agent-validation-helper.d.ts.map +1 -0
  282. package/dist/infrastructure/validation/agent-validation-helper.js +88 -0
  283. package/dist/infrastructure/validation/agent-validation-helper.js.map +1 -0
  284. package/dist/infrastructure/validation/feedback-stats.d.ts +99 -0
  285. package/dist/infrastructure/validation/feedback-stats.d.ts.map +1 -0
  286. package/dist/infrastructure/validation/feedback-stats.js +173 -0
  287. package/dist/infrastructure/validation/feedback-stats.js.map +1 -0
  288. package/dist/infrastructure/validation/review-handler.d.ts +54 -0
  289. package/dist/infrastructure/validation/review-handler.d.ts.map +1 -0
  290. package/dist/infrastructure/validation/review-handler.js +206 -0
  291. package/dist/infrastructure/validation/review-handler.js.map +1 -0
  292. package/dist/infrastructure/validation/summary-aggregator.d.ts +42 -0
  293. package/dist/infrastructure/validation/summary-aggregator.d.ts.map +1 -0
  294. package/dist/infrastructure/validation/summary-aggregator.js +156 -0
  295. package/dist/infrastructure/validation/summary-aggregator.js.map +1 -0
  296. package/dist/infrastructure/validation/summary-extractor.d.ts +59 -0
  297. package/dist/infrastructure/validation/summary-extractor.d.ts.map +1 -0
  298. package/dist/infrastructure/validation/summary-extractor.js +102 -0
  299. package/dist/infrastructure/validation/summary-extractor.js.map +1 -0
  300. package/dist/infrastructure/validation/trace-summary.d.ts +72 -0
  301. package/dist/infrastructure/validation/trace-summary.d.ts.map +1 -0
  302. package/dist/infrastructure/validation/trace-summary.js +371 -0
  303. package/dist/infrastructure/validation/trace-summary.js.map +1 -0
  304. package/dist/infrastructure/validation/trust-config.d.ts +27 -0
  305. package/dist/infrastructure/validation/trust-config.d.ts.map +1 -0
  306. package/dist/infrastructure/validation/trust-config.js +113 -0
  307. package/dist/infrastructure/validation/trust-config.js.map +1 -0
  308. package/dist/infrastructure/xai/attention-visualizer.d.ts +6 -8
  309. package/dist/infrastructure/xai/attention-visualizer.d.ts.map +1 -1
  310. package/dist/infrastructure/xai/attention-visualizer.js +6 -8
  311. package/dist/infrastructure/xai/attention-visualizer.js.map +1 -1
  312. package/dist/infrastructure/xai/cot-visualizer.d.ts +6 -8
  313. package/dist/infrastructure/xai/cot-visualizer.d.ts.map +1 -1
  314. package/dist/infrastructure/xai/cot-visualizer.js +62 -18
  315. package/dist/infrastructure/xai/cot-visualizer.js.map +1 -1
  316. package/dist/infrastructure/xai/decision-tree-log.d.ts +6 -10
  317. package/dist/infrastructure/xai/decision-tree-log.d.ts.map +1 -1
  318. package/dist/infrastructure/xai/decision-tree-log.js +6 -10
  319. package/dist/infrastructure/xai/decision-tree-log.js.map +1 -1
  320. package/dist/infrastructure/xai/interactive-xai.d.ts +6 -8
  321. package/dist/infrastructure/xai/interactive-xai.d.ts.map +1 -1
  322. package/dist/infrastructure/xai/interactive-xai.js +6 -8
  323. package/dist/infrastructure/xai/interactive-xai.js.map +1 -1
  324. package/dist/infrastructure/xai/uncertainty-quantifier.d.ts +6 -9
  325. package/dist/infrastructure/xai/uncertainty-quantifier.d.ts.map +1 -1
  326. package/dist/infrastructure/xai/uncertainty-quantifier.js +6 -9
  327. package/dist/infrastructure/xai/uncertainty-quantifier.js.map +1 -1
  328. package/dist/presentation/cli/commands/ask-command.d.ts.map +1 -1
  329. package/dist/presentation/cli/commands/ask-command.js +152 -13
  330. package/dist/presentation/cli/commands/ask-command.js.map +1 -1
  331. package/dist/presentation/cli/commands/docs-command.d.ts +12 -0
  332. package/dist/presentation/cli/commands/docs-command.d.ts.map +1 -0
  333. package/dist/presentation/cli/commands/docs-command.js +196 -0
  334. package/dist/presentation/cli/commands/docs-command.js.map +1 -0
  335. package/dist/presentation/cli/commands/fix-command.d.ts +8 -0
  336. package/dist/presentation/cli/commands/fix-command.d.ts.map +1 -0
  337. package/dist/presentation/cli/commands/fix-command.js +309 -0
  338. package/dist/presentation/cli/commands/fix-command.js.map +1 -0
  339. package/dist/presentation/cli/commands/help-command.d.ts.map +1 -1
  340. package/dist/presentation/cli/commands/help-command.js +2 -0
  341. package/dist/presentation/cli/commands/help-command.js.map +1 -1
  342. package/dist/presentation/cli/commands/orchestrate-command.d.ts +2 -0
  343. package/dist/presentation/cli/commands/orchestrate-command.d.ts.map +1 -1
  344. package/dist/presentation/cli/commands/orchestrate-command.js +88 -1
  345. package/dist/presentation/cli/commands/orchestrate-command.js.map +1 -1
  346. package/dist/presentation/cli/commands/plan-command.d.ts +1 -0
  347. package/dist/presentation/cli/commands/plan-command.d.ts.map +1 -1
  348. package/dist/presentation/cli/commands/plan-command.js +136 -7
  349. package/dist/presentation/cli/commands/plan-command.js.map +1 -1
  350. package/dist/presentation/cli/commands/product-command.d.ts +12 -0
  351. package/dist/presentation/cli/commands/product-command.d.ts.map +1 -0
  352. package/dist/presentation/cli/commands/product-command.js +188 -0
  353. package/dist/presentation/cli/commands/product-command.js.map +1 -0
  354. package/dist/presentation/cli/commands/react-command.d.ts.map +1 -1
  355. package/dist/presentation/cli/commands/react-command.js +98 -16
  356. package/dist/presentation/cli/commands/react-command.js.map +1 -1
  357. package/dist/presentation/cli/commands/review-command.d.ts +14 -0
  358. package/dist/presentation/cli/commands/review-command.d.ts.map +1 -0
  359. package/dist/presentation/cli/commands/review-command.js +22 -0
  360. package/dist/presentation/cli/commands/review-command.js.map +1 -0
  361. package/dist/presentation/cli/commands/run-command.d.ts +15 -0
  362. package/dist/presentation/cli/commands/run-command.d.ts.map +1 -0
  363. package/dist/presentation/cli/commands/run-command.js +29 -0
  364. package/dist/presentation/cli/commands/run-command.js.map +1 -0
  365. package/dist/presentation/cli/commands/setup-command.d.ts.map +1 -1
  366. package/dist/presentation/cli/commands/setup-command.js +67 -12
  367. package/dist/presentation/cli/commands/setup-command.js.map +1 -1
  368. package/dist/presentation/cli/commands/smart-command.d.ts +3 -1
  369. package/dist/presentation/cli/commands/smart-command.d.ts.map +1 -1
  370. package/dist/presentation/cli/commands/smart-command.js +227 -23
  371. package/dist/presentation/cli/commands/smart-command.js.map +1 -1
  372. package/dist/presentation/cli/commands/status-command.d.ts +11 -0
  373. package/dist/presentation/cli/commands/status-command.d.ts.map +1 -0
  374. package/dist/presentation/cli/commands/status-command.js +176 -0
  375. package/dist/presentation/cli/commands/status-command.js.map +1 -0
  376. package/dist/presentation/cli/commands/suggest-command.d.ts +13 -0
  377. package/dist/presentation/cli/commands/suggest-command.d.ts.map +1 -0
  378. package/dist/presentation/cli/commands/suggest-command.js +25 -0
  379. package/dist/presentation/cli/commands/suggest-command.js.map +1 -0
  380. package/dist/presentation/cli/commands/trace-command.d.ts.map +1 -1
  381. package/dist/presentation/cli/commands/trace-command.js +9 -5
  382. package/dist/presentation/cli/commands/trace-command.js.map +1 -1
  383. package/dist/presentation/cli/commands/undo-command.js +15 -6
  384. package/dist/presentation/cli/commands/undo-command.js.map +1 -1
  385. package/dist/presentation/cli/error-display.d.ts +2 -0
  386. package/dist/presentation/cli/error-display.d.ts.map +1 -1
  387. package/dist/presentation/cli/error-display.js +220 -2
  388. package/dist/presentation/cli/error-display.js.map +1 -1
  389. package/dist/presentation/cli/keyboard-shortcuts.d.ts +27 -0
  390. package/dist/presentation/cli/keyboard-shortcuts.d.ts.map +1 -0
  391. package/dist/presentation/cli/keyboard-shortcuts.js +77 -0
  392. package/dist/presentation/cli/keyboard-shortcuts.js.map +1 -0
  393. package/dist/session.d.ts.map +1 -1
  394. package/dist/session.js +39 -2
  395. package/dist/session.js.map +1 -1
  396. package/dist/ui.d.ts.map +1 -1
  397. package/dist/ui.js +8 -5
  398. package/dist/ui.js.map +1 -1
  399. package/dist/utils/version.js +2 -2
  400. package/dist/verification/backup.d.ts.map +1 -1
  401. package/dist/verification/backup.js +24 -3
  402. package/dist/verification/backup.js.map +1 -1
  403. package/dist/verification/compiler.js +47 -12
  404. package/dist/verification/compiler.js.map +1 -1
  405. package/package.json +10 -2
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Infrastructure: Summary Aggregator
3
+ * Merges multiple TraceSummaries into a composite summary
4
+ * Used by MultiAgentOrchestrator to aggregate agent summaries
5
+ */
6
+ import type { TraceSummary } from './trace-summary.js';
7
+ export interface CompositeSummary {
8
+ runId: string;
9
+ operation: string;
10
+ agentName: string;
11
+ filesChanged: string[];
12
+ filesCreated: string[];
13
+ filesDeleted: string[];
14
+ reasoningSteps: TraceSummary['reasoningSteps'];
15
+ validationChecks: TraceSummary['validationChecks'];
16
+ metrics: TraceSummary['metrics'];
17
+ reviewNeeded: TraceSummary['reviewNeeded'];
18
+ outcome: TraceSummary['outcome'];
19
+ errors?: string[];
20
+ warnings?: string[];
21
+ agentSummaries: Array<{
22
+ agent: string;
23
+ runId: string;
24
+ summary: TraceSummary;
25
+ }>;
26
+ phaseOrder: string[];
27
+ }
28
+ /**
29
+ * Aggregate multiple agent summaries into a composite summary
30
+ */
31
+ export declare class SummaryAggregator {
32
+ /**
33
+ * Merge multiple summaries into a composite summary
34
+ */
35
+ mergeSummaries(summaries: Array<{
36
+ agent: string;
37
+ summary: TraceSummary;
38
+ runId?: string;
39
+ }>, unifiedRunId: string, operation: string): CompositeSummary;
40
+ }
41
+ export declare const summaryAggregator: SummaryAggregator;
42
+ //# sourceMappingURL=summary-aggregator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"summary-aggregator.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/validation/summary-aggregator.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,cAAc,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAC;IAC/C,gBAAgB,EAAE,YAAY,CAAC,kBAAkB,CAAC,CAAC;IACnD,OAAO,EAAE,YAAY,CAAC,SAAS,CAAC,CAAC;IACjC,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,CAAC;IAC3C,OAAO,EAAE,YAAY,CAAC,SAAS,CAAC,CAAC;IACjC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,cAAc,EAAE,KAAK,CAAC;QACpB,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,YAAY,CAAC;KACvB,CAAC,CAAC;IACH,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB;AAED;;GAEG;AACH,qBAAa,iBAAiB;IAC5B;;OAEG;IACH,cAAc,CACZ,SAAS,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,YAAY,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,EAC1E,YAAY,EAAE,MAAM,EACpB,SAAS,EAAE,MAAM,GAChB,gBAAgB;CA8JpB;AAGD,eAAO,MAAM,iBAAiB,mBAA0B,CAAC"}
@@ -0,0 +1,156 @@
1
+ /**
2
+ * Infrastructure: Summary Aggregator
3
+ * Merges multiple TraceSummaries into a composite summary
4
+ * Used by MultiAgentOrchestrator to aggregate agent summaries
5
+ */
6
+ /**
7
+ * Aggregate multiple agent summaries into a composite summary
8
+ */
9
+ export class SummaryAggregator {
10
+ /**
11
+ * Merge multiple summaries into a composite summary
12
+ */
13
+ mergeSummaries(summaries, unifiedRunId, operation) {
14
+ if (summaries.length === 0) {
15
+ // Return empty summary structure
16
+ return {
17
+ runId: unifiedRunId,
18
+ operation,
19
+ agentName: 'multi-agent-orchestrator',
20
+ filesChanged: [],
21
+ filesCreated: [],
22
+ filesDeleted: [],
23
+ reasoningSteps: [],
24
+ validationChecks: [],
25
+ metrics: {
26
+ duration: 0,
27
+ operationsCount: 0,
28
+ },
29
+ reviewNeeded: {
30
+ required: false,
31
+ reasons: [],
32
+ },
33
+ outcome: 'success',
34
+ agentSummaries: [],
35
+ phaseOrder: [],
36
+ };
37
+ }
38
+ // Aggregate files
39
+ const allFilesChanged = new Set();
40
+ const allFilesCreated = new Set();
41
+ const allFilesDeleted = new Set();
42
+ // Aggregate reasoning steps
43
+ const allReasoningSteps = [];
44
+ // Aggregate validation checks
45
+ const allValidationChecks = [];
46
+ // Aggregate metrics
47
+ let totalTokens = 0;
48
+ let totalDuration = 0;
49
+ let totalOperations = 0;
50
+ let totalFilesAnalyzed = 0;
51
+ // Aggregate errors and warnings
52
+ const allErrors = [];
53
+ const allWarnings = [];
54
+ // Track review needs
55
+ const reviewReasons = [];
56
+ let highestRiskLevel = 'low';
57
+ // Determine overall outcome
58
+ let hasFailures = false;
59
+ let hasPartialSuccess = false;
60
+ let needsReview = false;
61
+ const phaseOrder = [];
62
+ for (const { agent, summary, runId } of summaries) {
63
+ if (!summary)
64
+ continue;
65
+ phaseOrder.push(agent);
66
+ // Aggregate files
67
+ summary.filesChanged.forEach(f => allFilesChanged.add(f));
68
+ summary.filesCreated.forEach(f => allFilesCreated.add(f));
69
+ summary.filesDeleted.forEach(f => allFilesDeleted.add(f));
70
+ // Aggregate reasoning steps (limit to key steps per agent)
71
+ allReasoningSteps.push(...summary.reasoningSteps.slice(0, 3));
72
+ // Aggregate validation checks
73
+ allValidationChecks.push(...summary.validationChecks);
74
+ // Aggregate metrics
75
+ if (summary.metrics.tokensUsed) {
76
+ totalTokens += summary.metrics.tokensUsed;
77
+ }
78
+ totalDuration += summary.metrics.duration;
79
+ totalOperations += summary.metrics.operationsCount;
80
+ if (summary.metrics.filesAnalyzed) {
81
+ totalFilesAnalyzed += summary.metrics.filesAnalyzed;
82
+ }
83
+ // Aggregate errors and warnings
84
+ if (summary.errors) {
85
+ allErrors.push(...summary.errors);
86
+ }
87
+ if (summary.warnings) {
88
+ allWarnings.push(...summary.warnings);
89
+ }
90
+ // Track review needs
91
+ if (summary.reviewNeeded.required) {
92
+ needsReview = true;
93
+ reviewReasons.push(...summary.reviewNeeded.reasons.map(r => `${agent}: ${r}`));
94
+ // Determine highest risk level
95
+ const riskLevel = summary.reviewNeeded.riskLevel || 'medium';
96
+ const riskOrder = { low: 1, medium: 2, high: 3, critical: 4 };
97
+ if (riskOrder[riskLevel] > riskOrder[highestRiskLevel]) {
98
+ highestRiskLevel = riskLevel;
99
+ }
100
+ }
101
+ // Track outcomes
102
+ if (summary.outcome === 'failure') {
103
+ hasFailures = true;
104
+ }
105
+ else if (summary.outcome === 'partial_success') {
106
+ hasPartialSuccess = true;
107
+ }
108
+ }
109
+ // Determine overall outcome
110
+ let overallOutcome = 'success';
111
+ if (hasFailures) {
112
+ overallOutcome = 'failure';
113
+ }
114
+ else if (hasPartialSuccess || needsReview) {
115
+ overallOutcome = needsReview ? 'needs_review' : 'partial_success';
116
+ }
117
+ // Deduplicate errors and warnings
118
+ const uniqueErrors = Array.from(new Set(allErrors));
119
+ const uniqueWarnings = Array.from(new Set(allWarnings));
120
+ return {
121
+ runId: unifiedRunId,
122
+ operation,
123
+ agentName: 'multi-agent-orchestrator',
124
+ filesChanged: Array.from(allFilesChanged),
125
+ filesCreated: Array.from(allFilesCreated),
126
+ filesDeleted: Array.from(allFilesDeleted),
127
+ reasoningSteps: allReasoningSteps.slice(0, 10), // Limit to top 10 steps
128
+ validationChecks: allValidationChecks,
129
+ metrics: {
130
+ tokensUsed: totalTokens > 0 ? totalTokens : undefined,
131
+ duration: totalDuration,
132
+ operationsCount: totalOperations,
133
+ filesAnalyzed: totalFilesAnalyzed > 0 ? totalFilesAnalyzed : undefined,
134
+ },
135
+ reviewNeeded: {
136
+ required: needsReview,
137
+ reasons: reviewReasons,
138
+ riskLevel: highestRiskLevel,
139
+ },
140
+ outcome: overallOutcome,
141
+ errors: uniqueErrors.length > 0 ? uniqueErrors : undefined,
142
+ warnings: uniqueWarnings.length > 0 ? uniqueWarnings : undefined,
143
+ agentSummaries: summaries
144
+ .filter(s => s.summary)
145
+ .map(s => ({
146
+ agent: s.agent,
147
+ runId: s.runId || s.summary.runId,
148
+ summary: s.summary,
149
+ })),
150
+ phaseOrder,
151
+ };
152
+ }
153
+ }
154
+ // Singleton instance
155
+ export const summaryAggregator = new SummaryAggregator();
156
+ //# sourceMappingURL=summary-aggregator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"summary-aggregator.js","sourceRoot":"","sources":["../../../src/infrastructure/validation/summary-aggregator.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Infrastructure: Summary Extractor
3
+ * Extracts summaries from different response types for review flow
4
+ * Priority: compositeSummary > validationSummary > routingDecision
5
+ */
6
+ import type { TraceSummary } from './trace-summary.js';
7
+ import type { CompositeSummary } from './summary-aggregator.js';
8
+ export interface SummarySource {
9
+ summary: TraceSummary | CompositeSummary;
10
+ source: 'composite' | 'validation' | 'routing';
11
+ }
12
+ /**
13
+ * Extract summary from various response types
14
+ * Priority order: compositeSummary > validationSummary > routingDecision.summary
15
+ */
16
+ export declare class SummaryExtractor {
17
+ /**
18
+ * Extract summary from orchestration response
19
+ */
20
+ extractFromOrchestration(result: {
21
+ compositeSummary?: CompositeSummary;
22
+ validation?: {
23
+ validationSummary?: TraceSummary;
24
+ } | any;
25
+ execution?: {
26
+ validationSummary?: TraceSummary;
27
+ } | any;
28
+ plan?: {
29
+ validationSummary?: TraceSummary;
30
+ } | any;
31
+ [key: string]: any;
32
+ }): SummarySource | null;
33
+ /**
34
+ * Extract summary from planning response
35
+ */
36
+ extractFromPlanning(result: {
37
+ validationSummary?: TraceSummary;
38
+ }): SummarySource | null;
39
+ /**
40
+ * Extract summary from routing response
41
+ */
42
+ extractFromRouting(result: {
43
+ routingDecision?: {
44
+ summary?: TraceSummary;
45
+ selectedAgent?: string;
46
+ confidence?: number;
47
+ selectionReason?: string;
48
+ };
49
+ result?: {
50
+ validationSummary?: TraceSummary;
51
+ };
52
+ }): SummarySource | null;
53
+ /**
54
+ * Convert CompositeSummary to TraceSummary format
55
+ */
56
+ private compositeToTraceSummary;
57
+ }
58
+ export declare const summaryExtractor: SummaryExtractor;
59
+ //# sourceMappingURL=summary-extractor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"summary-extractor.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/validation/summary-extractor.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,YAAY,GAAG,gBAAgB,CAAC;IACzC,MAAM,EAAE,WAAW,GAAG,YAAY,GAAG,SAAS,CAAC;CAChD;AAED;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B;;OAEG;IACH,wBAAwB,CAAC,MAAM,EAAE;QAC/B,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;QACpC,UAAU,CAAC,EAAE;YAAE,iBAAiB,CAAC,EAAE,YAAY,CAAA;SAAE,GAAG,GAAG,CAAC;QACxD,SAAS,CAAC,EAAE;YAAE,iBAAiB,CAAC,EAAE,YAAY,CAAA;SAAE,GAAG,GAAG,CAAC;QACvD,IAAI,CAAC,EAAE;YAAE,iBAAiB,CAAC,EAAE,YAAY,CAAA;SAAE,GAAG,GAAG,CAAC;QAClD,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,GAAG,aAAa,GAAG,IAAI;IAsCxB;;OAEG;IACH,mBAAmB,CAAC,MAAM,EAAE;QAC1B,iBAAiB,CAAC,EAAE,YAAY,CAAC;KAClC,GAAG,aAAa,GAAG,IAAI;IAUxB;;OAEG;IACH,kBAAkB,CAAC,MAAM,EAAE;QACzB,eAAe,CAAC,EAAE;YAChB,OAAO,CAAC,EAAE,YAAY,CAAC;YACvB,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,eAAe,CAAC,EAAE,MAAM,CAAC;SAC1B,CAAC;QACF,MAAM,CAAC,EAAE;YACP,iBAAiB,CAAC,EAAE,YAAY,CAAC;SAClC,CAAC;KACH,GAAG,aAAa,GAAG,IAAI;IAoBxB;;OAEG;IACH,OAAO,CAAC,uBAAuB;CAiBhC;AAGD,eAAO,MAAM,gBAAgB,kBAAyB,CAAC"}
@@ -0,0 +1,102 @@
1
+ /**
2
+ * Infrastructure: Summary Extractor
3
+ * Extracts summaries from different response types for review flow
4
+ * Priority: compositeSummary > validationSummary > routingDecision
5
+ */
6
+ /**
7
+ * Extract summary from various response types
8
+ * Priority order: compositeSummary > validationSummary > routingDecision.summary
9
+ */
10
+ export class SummaryExtractor {
11
+ /**
12
+ * Extract summary from orchestration response
13
+ */
14
+ extractFromOrchestration(result) {
15
+ // Priority 1: Composite summary (aggregated from all agents)
16
+ if (result.compositeSummary) {
17
+ // Convert CompositeSummary to TraceSummary format for review handler
18
+ const traceSummary = this.compositeToTraceSummary(result.compositeSummary);
19
+ return {
20
+ summary: traceSummary,
21
+ source: 'composite',
22
+ };
23
+ }
24
+ // Priority 2: Validation summary
25
+ if (result.validation?.validationSummary) {
26
+ return {
27
+ summary: result.validation.validationSummary,
28
+ source: 'validation',
29
+ };
30
+ }
31
+ // Priority 3: Execution summary
32
+ if (result.execution?.validationSummary) {
33
+ return {
34
+ summary: result.execution.validationSummary,
35
+ source: 'validation',
36
+ };
37
+ }
38
+ // Priority 4: Planning summary
39
+ if (result.plan?.validationSummary) {
40
+ return {
41
+ summary: result.plan.validationSummary,
42
+ source: 'validation',
43
+ };
44
+ }
45
+ return null;
46
+ }
47
+ /**
48
+ * Extract summary from planning response
49
+ */
50
+ extractFromPlanning(result) {
51
+ if (result.validationSummary) {
52
+ return {
53
+ summary: result.validationSummary,
54
+ source: 'validation',
55
+ };
56
+ }
57
+ return null;
58
+ }
59
+ /**
60
+ * Extract summary from routing response
61
+ */
62
+ extractFromRouting(result) {
63
+ // Priority 1: Validation summary from executed agent
64
+ if (result.result?.validationSummary) {
65
+ return {
66
+ summary: result.result.validationSummary,
67
+ source: 'validation',
68
+ };
69
+ }
70
+ // Priority 2: Routing decision summary (if available)
71
+ if (result.routingDecision?.summary) {
72
+ return {
73
+ summary: result.routingDecision.summary,
74
+ source: 'routing',
75
+ };
76
+ }
77
+ return null;
78
+ }
79
+ /**
80
+ * Convert CompositeSummary to TraceSummary format
81
+ */
82
+ compositeToTraceSummary(composite) {
83
+ return {
84
+ runId: composite.runId,
85
+ operation: composite.operation,
86
+ agentName: composite.agentName,
87
+ filesChanged: composite.filesChanged,
88
+ filesCreated: composite.filesCreated,
89
+ filesDeleted: composite.filesDeleted,
90
+ reasoningSteps: composite.reasoningSteps,
91
+ validationChecks: composite.validationChecks,
92
+ metrics: composite.metrics,
93
+ reviewNeeded: composite.reviewNeeded,
94
+ outcome: composite.outcome,
95
+ errors: composite.errors,
96
+ warnings: composite.warnings,
97
+ };
98
+ }
99
+ }
100
+ // Singleton instance
101
+ export const summaryExtractor = new SummaryExtractor();
102
+ //# sourceMappingURL=summary-extractor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"summary-extractor.js","sourceRoot":"","sources":["../../../src/infrastructure/validation/summary-extractor.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAUH;;;GAGG;AACH,MAAM,OAAO,gBAAgB;IAC3B;;OAEG;IACH,wBAAwB,CAAC,MAMxB;QACC,6DAA6D;QAC7D,IAAI,MAAM,CAAC,gBAAgB,EAAE,CAAC;YAC5B,qEAAqE;YACrE,MAAM,YAAY,GAAG,IAAI,CAAC,uBAAuB,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC;YAC3E,OAAO;gBACL,OAAO,EAAE,YAAY;gBACrB,MAAM,EAAE,WAAW;aACpB,CAAC;QACJ,CAAC;QAED,iCAAiC;QACjC,IAAI,MAAM,CAAC,UAAU,EAAE,iBAAiB,EAAE,CAAC;YACzC,OAAO;gBACL,OAAO,EAAE,MAAM,CAAC,UAAU,CAAC,iBAAiB;gBAC5C,MAAM,EAAE,YAAY;aACrB,CAAC;QACJ,CAAC;QAED,gCAAgC;QAChC,IAAI,MAAM,CAAC,SAAS,EAAE,iBAAiB,EAAE,CAAC;YACxC,OAAO;gBACL,OAAO,EAAE,MAAM,CAAC,SAAS,CAAC,iBAAiB;gBAC3C,MAAM,EAAE,YAAY;aACrB,CAAC;QACJ,CAAC;QAED,+BAA+B;QAC/B,IAAI,MAAM,CAAC,IAAI,EAAE,iBAAiB,EAAE,CAAC;YACnC,OAAO;gBACL,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,iBAAiB;gBACtC,MAAM,EAAE,YAAY;aACrB,CAAC;QACJ,CAAC;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,mBAAmB,CAAC,MAEnB;QACC,IAAI,MAAM,CAAC,iBAAiB,EAAE,CAAC;YAC7B,OAAO;gBACL,OAAO,EAAE,MAAM,CAAC,iBAAiB;gBACjC,MAAM,EAAE,YAAY;aACrB,CAAC;QACJ,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,kBAAkB,CAAC,MAUlB;QACC,qDAAqD;QACrD,IAAI,MAAM,CAAC,MAAM,EAAE,iBAAiB,EAAE,CAAC;YACrC,OAAO;gBACL,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,iBAAiB;gBACxC,MAAM,EAAE,YAAY;aACrB,CAAC;QACJ,CAAC;QAED,sDAAsD;QACtD,IAAI,MAAM,CAAC,eAAe,EAAE,OAAO,EAAE,CAAC;YACpC,OAAO;gBACL,OAAO,EAAE,MAAM,CAAC,eAAe,CAAC,OAAO;gBACvC,MAAM,EAAE,SAAS;aAClB,CAAC;QACJ,CAAC;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACK,uBAAuB,CAAC,SAA2B;QACzD,OAAO;YACL,KAAK,EAAE,SAAS,CAAC,KAAK;YACtB,SAAS,EAAE,SAAS,CAAC,SAAS;YAC9B,SAAS,EAAE,SAAS,CAAC,SAAS;YAC9B,YAAY,EAAE,SAAS,CAAC,YAAY;YACpC,YAAY,EAAE,SAAS,CAAC,YAAY;YACpC,YAAY,EAAE,SAAS,CAAC,YAAY;YACpC,cAAc,EAAE,SAAS,CAAC,cAAc;YACxC,gBAAgB,EAAE,SAAS,CAAC,gBAAgB;YAC5C,OAAO,EAAE,SAAS,CAAC,OAAO;YAC1B,YAAY,EAAE,SAAS,CAAC,YAAY;YACpC,OAAO,EAAE,SAAS,CAAC,OAAO;YAC1B,MAAM,EAAE,SAAS,CAAC,MAAM;YACxB,QAAQ,EAAE,SAAS,CAAC,QAAQ;SAC7B,CAAC;IACJ,CAAC;CACF;AAED,qBAAqB;AACrB,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,gBAAgB,EAAE,CAAC"}
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Infrastructure: Trace Summary Formatter
3
+ * Structured summary of agent runs for validation and review
4
+ *
5
+ * Outputs:
6
+ * - Files changed
7
+ * - Reasoning steps occurred
8
+ * - Validation checks passed/failed
9
+ * - Tokens used
10
+ * - Where user review is needed
11
+ */
12
+ import type { RunContext } from '../observability/execution-tracer.js';
13
+ import type { AgentFeedback } from './agent-feedback.js';
14
+ export interface TraceSummary {
15
+ runId: string;
16
+ operation: string;
17
+ agentName: string;
18
+ filesChanged: string[];
19
+ filesCreated: string[];
20
+ filesDeleted: string[];
21
+ reasoningSteps: Array<{
22
+ step: string;
23
+ timestamp: number;
24
+ type: 'thought' | 'action' | 'observation' | 'decision';
25
+ details?: string;
26
+ }>;
27
+ validationChecks: Array<{
28
+ check: string;
29
+ passed: boolean;
30
+ message?: string;
31
+ critical?: boolean;
32
+ }>;
33
+ metrics: {
34
+ tokensUsed?: number;
35
+ duration: number;
36
+ operationsCount: number;
37
+ filesAnalyzed?: number;
38
+ };
39
+ reviewNeeded: {
40
+ required: boolean;
41
+ reasons: string[];
42
+ riskLevel?: 'low' | 'medium' | 'high' | 'critical';
43
+ };
44
+ outcome: 'success' | 'failure' | 'partial_success' | 'needs_review';
45
+ errors?: string[];
46
+ warnings?: string[];
47
+ }
48
+ /**
49
+ * Format trace summary from execution trace and feedback
50
+ */
51
+ export declare class TraceSummaryFormatter {
52
+ /**
53
+ * Create summary from run context and feedback
54
+ */
55
+ createSummary(run: RunContext, feedback?: AgentFeedback, agentName?: string): TraceSummary;
56
+ /**
57
+ * Format summary for console display
58
+ */
59
+ formatSummary(summary: TraceSummary): string;
60
+ private extractFilesChanged;
61
+ private extractFilesCreated;
62
+ private extractFilesDeleted;
63
+ private extractReasoningSteps;
64
+ private extractValidationChecks;
65
+ private calculateMetrics;
66
+ private determineReviewNeeds;
67
+ private determineOutcome;
68
+ private extractErrors;
69
+ private extractWarnings;
70
+ }
71
+ export declare const traceSummaryFormatter: TraceSummaryFormatter;
72
+ //# sourceMappingURL=trace-summary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trace-summary.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/validation/trace-summary.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAkB,MAAM,sCAAsC,CAAC;AACvF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGzD,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAGlB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;IAGvB,cAAc,EAAE,KAAK,CAAC;QACpB,IAAI,EAAE,MAAM,CAAC;QACb,SAAS,EAAE,MAAM,CAAC;QAClB,IAAI,EAAE,SAAS,GAAG,QAAQ,GAAG,aAAa,GAAG,UAAU,CAAC;QACxD,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC,CAAC;IAGH,gBAAgB,EAAE,KAAK,CAAC;QACtB,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,OAAO,CAAC;QAChB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;KACpB,CAAC,CAAC;IAGH,OAAO,EAAE;QACP,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,QAAQ,EAAE,MAAM,CAAC;QACjB,eAAe,EAAE,MAAM,CAAC;QACxB,aAAa,CAAC,EAAE,MAAM,CAAC;KACxB,CAAC;IAGF,YAAY,EAAE;QACZ,QAAQ,EAAE,OAAO,CAAC;QAClB,OAAO,EAAE,MAAM,EAAE,CAAC;QAClB,SAAS,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC;KACpD,CAAC;IAGF,OAAO,EAAE,SAAS,GAAG,SAAS,GAAG,iBAAiB,GAAG,cAAc,CAAC;IACpE,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAED;;GAEG;AACH,qBAAa,qBAAqB;IAChC;;OAEG;IACH,aAAa,CACX,GAAG,EAAE,UAAU,EACf,QAAQ,CAAC,EAAE,aAAa,EACxB,SAAS,GAAE,MAAwB,GAClC,YAAY;IA+Cf;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,YAAY,GAAG,MAAM;IA2I5C,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,mBAAmB;IAY3B,OAAO,CAAC,qBAAqB;IAgC7B,OAAO,CAAC,uBAAuB;IAiC/B,OAAO,CAAC,gBAAgB;IAsBxB,OAAO,CAAC,oBAAoB;IAuD5B,OAAO,CAAC,gBAAgB;IAwBxB,OAAO,CAAC,aAAa;IAUrB,OAAO,CAAC,eAAe;CAexB;AAGD,eAAO,MAAM,qBAAqB,uBAA8B,CAAC"}