agentic-qe 3.2.3 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (340) hide show
  1. package/.claude/agents/v3/qe-accessibility-auditor.md +90 -0
  2. package/README.md +43 -5
  3. package/package.json +3 -2
  4. package/scripts/cloud-db-config.json +37 -0
  5. package/scripts/cloud-db-connect.sh +37 -0
  6. package/scripts/cloud-db-tunnel.sh +23 -0
  7. package/v3/CHANGELOG.md +165 -0
  8. package/v3/README.md +59 -1
  9. package/v3/assets/agents/v3/qe-accessibility-auditor.md +90 -0
  10. package/v3/dist/adapters/claude-flow/index.d.ts +54 -0
  11. package/v3/dist/adapters/claude-flow/index.d.ts.map +1 -0
  12. package/v3/dist/adapters/claude-flow/index.js +79 -0
  13. package/v3/dist/adapters/claude-flow/index.js.map +1 -0
  14. package/v3/dist/adapters/claude-flow/model-router-bridge.d.ts +70 -0
  15. package/v3/dist/adapters/claude-flow/model-router-bridge.d.ts.map +1 -0
  16. package/v3/dist/adapters/claude-flow/model-router-bridge.js +203 -0
  17. package/v3/dist/adapters/claude-flow/model-router-bridge.js.map +1 -0
  18. package/v3/dist/adapters/claude-flow/pretrain-bridge.d.ts +73 -0
  19. package/v3/dist/adapters/claude-flow/pretrain-bridge.d.ts.map +1 -0
  20. package/v3/dist/adapters/claude-flow/pretrain-bridge.js +276 -0
  21. package/v3/dist/adapters/claude-flow/pretrain-bridge.js.map +1 -0
  22. package/v3/dist/adapters/claude-flow/trajectory-bridge.d.ts +70 -0
  23. package/v3/dist/adapters/claude-flow/trajectory-bridge.d.ts.map +1 -0
  24. package/v3/dist/adapters/claude-flow/trajectory-bridge.js +205 -0
  25. package/v3/dist/adapters/claude-flow/trajectory-bridge.js.map +1 -0
  26. package/v3/dist/adapters/claude-flow/types.d.ts +99 -0
  27. package/v3/dist/adapters/claude-flow/types.d.ts.map +1 -0
  28. package/v3/dist/adapters/claude-flow/types.js +6 -0
  29. package/v3/dist/adapters/claude-flow/types.js.map +1 -0
  30. package/v3/dist/causal-discovery/causal-graph.d.ts +80 -1
  31. package/v3/dist/causal-discovery/causal-graph.d.ts.map +1 -1
  32. package/v3/dist/causal-discovery/causal-graph.js +111 -1
  33. package/v3/dist/causal-discovery/causal-graph.js.map +1 -1
  34. package/v3/dist/cli/bundle.js +11612 -4929
  35. package/v3/dist/cli/commands/claude-flow-setup.d.ts +82 -0
  36. package/v3/dist/cli/commands/claude-flow-setup.d.ts.map +1 -0
  37. package/v3/dist/cli/commands/claude-flow-setup.js +334 -0
  38. package/v3/dist/cli/commands/claude-flow-setup.js.map +1 -0
  39. package/v3/dist/cli/commands/hooks.d.ts +2 -0
  40. package/v3/dist/cli/commands/hooks.d.ts.map +1 -1
  41. package/v3/dist/cli/commands/hooks.js +13 -2
  42. package/v3/dist/cli/commands/hooks.js.map +1 -1
  43. package/v3/dist/cli/commands/init.d.ts +19 -0
  44. package/v3/dist/cli/commands/init.d.ts.map +1 -0
  45. package/v3/dist/cli/commands/init.js +345 -0
  46. package/v3/dist/cli/commands/init.js.map +1 -0
  47. package/v3/dist/cli/index.js +110 -2
  48. package/v3/dist/cli/index.js.map +1 -1
  49. package/v3/dist/coordination/mincut/interfaces.d.ts +8 -2
  50. package/v3/dist/coordination/mincut/interfaces.d.ts.map +1 -1
  51. package/v3/dist/coordination/mincut/interfaces.js.map +1 -1
  52. package/v3/dist/coordination/mincut/mincut-health-monitor.d.ts +5 -0
  53. package/v3/dist/coordination/mincut/mincut-health-monitor.d.ts.map +1 -1
  54. package/v3/dist/coordination/mincut/mincut-health-monitor.js +22 -4
  55. package/v3/dist/coordination/mincut/mincut-health-monitor.js.map +1 -1
  56. package/v3/dist/coordination/mincut/queen-integration.d.ts +4 -0
  57. package/v3/dist/coordination/mincut/queen-integration.d.ts.map +1 -1
  58. package/v3/dist/coordination/mincut/queen-integration.js +14 -1
  59. package/v3/dist/coordination/mincut/queen-integration.js.map +1 -1
  60. package/v3/dist/coordination/queen-coordinator.d.ts +5 -0
  61. package/v3/dist/coordination/queen-coordinator.d.ts.map +1 -1
  62. package/v3/dist/coordination/queen-coordinator.js +45 -7
  63. package/v3/dist/coordination/queen-coordinator.js.map +1 -1
  64. package/v3/dist/domains/learning-optimization/coordinator.d.ts +5 -0
  65. package/v3/dist/domains/learning-optimization/coordinator.d.ts.map +1 -1
  66. package/v3/dist/domains/learning-optimization/coordinator.js +79 -0
  67. package/v3/dist/domains/learning-optimization/coordinator.js.map +1 -1
  68. package/v3/dist/domains/test-generation/coherence-gate.d.ts +245 -0
  69. package/v3/dist/domains/test-generation/coherence-gate.d.ts.map +1 -0
  70. package/v3/dist/domains/test-generation/coherence-gate.js +454 -0
  71. package/v3/dist/domains/test-generation/coherence-gate.js.map +1 -0
  72. package/v3/dist/domains/test-generation/coordinator.d.ts +32 -1
  73. package/v3/dist/domains/test-generation/coordinator.d.ts.map +1 -1
  74. package/v3/dist/domains/test-generation/coordinator.js +70 -1
  75. package/v3/dist/domains/test-generation/coordinator.js.map +1 -1
  76. package/v3/dist/domains/test-generation/index.d.ts +1 -0
  77. package/v3/dist/domains/test-generation/index.d.ts.map +1 -1
  78. package/v3/dist/domains/test-generation/index.js +4 -0
  79. package/v3/dist/domains/test-generation/index.js.map +1 -1
  80. package/v3/dist/domains/test-generation/services/index.d.ts +1 -0
  81. package/v3/dist/domains/test-generation/services/index.d.ts.map +1 -1
  82. package/v3/dist/domains/test-generation/services/index.js +2 -0
  83. package/v3/dist/domains/test-generation/services/index.js.map +1 -1
  84. package/v3/dist/domains/visual-accessibility/index.d.ts +2 -1
  85. package/v3/dist/domains/visual-accessibility/index.d.ts.map +1 -1
  86. package/v3/dist/domains/visual-accessibility/index.js +1 -0
  87. package/v3/dist/domains/visual-accessibility/index.js.map +1 -1
  88. package/v3/dist/domains/visual-accessibility/interfaces.d.ts +131 -0
  89. package/v3/dist/domains/visual-accessibility/interfaces.d.ts.map +1 -1
  90. package/v3/dist/domains/visual-accessibility/plugin.d.ts +26 -0
  91. package/v3/dist/domains/visual-accessibility/plugin.d.ts.map +1 -1
  92. package/v3/dist/domains/visual-accessibility/plugin.js +151 -0
  93. package/v3/dist/domains/visual-accessibility/plugin.js.map +1 -1
  94. package/v3/dist/domains/visual-accessibility/services/accessibility-tester.d.ts +42 -1
  95. package/v3/dist/domains/visual-accessibility/services/accessibility-tester.d.ts.map +1 -1
  96. package/v3/dist/domains/visual-accessibility/services/accessibility-tester.js +69 -0
  97. package/v3/dist/domains/visual-accessibility/services/accessibility-tester.js.map +1 -1
  98. package/v3/dist/domains/visual-accessibility/services/eu-compliance.d.ts +138 -0
  99. package/v3/dist/domains/visual-accessibility/services/eu-compliance.d.ts.map +1 -0
  100. package/v3/dist/domains/visual-accessibility/services/eu-compliance.js +830 -0
  101. package/v3/dist/domains/visual-accessibility/services/eu-compliance.js.map +1 -0
  102. package/v3/dist/domains/visual-accessibility/services/index.d.ts +1 -0
  103. package/v3/dist/domains/visual-accessibility/services/index.d.ts.map +1 -1
  104. package/v3/dist/domains/visual-accessibility/services/index.js +1 -0
  105. package/v3/dist/domains/visual-accessibility/services/index.js.map +1 -1
  106. package/v3/dist/init/enhancements/claude-flow-adapter.d.ts +84 -0
  107. package/v3/dist/init/enhancements/claude-flow-adapter.d.ts.map +1 -0
  108. package/v3/dist/init/enhancements/claude-flow-adapter.js +250 -0
  109. package/v3/dist/init/enhancements/claude-flow-adapter.js.map +1 -0
  110. package/v3/dist/init/enhancements/detector.d.ts +10 -0
  111. package/v3/dist/init/enhancements/detector.d.ts.map +1 -0
  112. package/v3/dist/init/enhancements/detector.js +87 -0
  113. package/v3/dist/init/enhancements/detector.js.map +1 -0
  114. package/v3/dist/init/enhancements/index.d.ts +13 -0
  115. package/v3/dist/init/enhancements/index.d.ts.map +1 -0
  116. package/v3/dist/init/enhancements/index.js +25 -0
  117. package/v3/dist/init/enhancements/index.js.map +1 -0
  118. package/v3/dist/init/enhancements/types.d.ts +93 -0
  119. package/v3/dist/init/enhancements/types.d.ts.map +1 -0
  120. package/v3/dist/init/enhancements/types.js +6 -0
  121. package/v3/dist/init/enhancements/types.js.map +1 -0
  122. package/v3/dist/init/index.d.ts +8 -0
  123. package/v3/dist/init/index.d.ts.map +1 -1
  124. package/v3/dist/init/index.js +4 -0
  125. package/v3/dist/init/index.js.map +1 -1
  126. package/v3/dist/init/migration/config-migrator.d.ts +31 -0
  127. package/v3/dist/init/migration/config-migrator.d.ts.map +1 -0
  128. package/v3/dist/init/migration/config-migrator.js +133 -0
  129. package/v3/dist/init/migration/config-migrator.js.map +1 -0
  130. package/v3/dist/init/migration/data-migrator.d.ts +72 -0
  131. package/v3/dist/init/migration/data-migrator.d.ts.map +1 -0
  132. package/v3/dist/init/migration/data-migrator.js +233 -0
  133. package/v3/dist/init/migration/data-migrator.js.map +1 -0
  134. package/v3/dist/init/migration/detector.d.ts +44 -0
  135. package/v3/dist/init/migration/detector.d.ts.map +1 -0
  136. package/v3/dist/init/migration/detector.js +106 -0
  137. package/v3/dist/init/migration/detector.js.map +1 -0
  138. package/v3/dist/init/migration/index.d.ts +8 -0
  139. package/v3/dist/init/migration/index.d.ts.map +1 -0
  140. package/v3/dist/init/migration/index.js +8 -0
  141. package/v3/dist/init/migration/index.js.map +1 -0
  142. package/v3/dist/init/orchestrator.d.ts +68 -0
  143. package/v3/dist/init/orchestrator.d.ts.map +1 -0
  144. package/v3/dist/init/orchestrator.js +239 -0
  145. package/v3/dist/init/orchestrator.js.map +1 -0
  146. package/v3/dist/init/phases/01-detection.d.ts +30 -0
  147. package/v3/dist/init/phases/01-detection.d.ts.map +1 -0
  148. package/v3/dist/init/phases/01-detection.js +143 -0
  149. package/v3/dist/init/phases/01-detection.js.map +1 -0
  150. package/v3/dist/init/phases/02-analysis.d.ts +18 -0
  151. package/v3/dist/init/phases/02-analysis.d.ts.map +1 -0
  152. package/v3/dist/init/phases/02-analysis.js +28 -0
  153. package/v3/dist/init/phases/02-analysis.js.map +1 -0
  154. package/v3/dist/init/phases/03-configuration.d.ts +26 -0
  155. package/v3/dist/init/phases/03-configuration.d.ts.map +1 -0
  156. package/v3/dist/init/phases/03-configuration.js +98 -0
  157. package/v3/dist/init/phases/03-configuration.js.map +1 -0
  158. package/v3/dist/init/phases/04-database.d.ts +22 -0
  159. package/v3/dist/init/phases/04-database.d.ts.map +1 -0
  160. package/v3/dist/init/phases/04-database.js +88 -0
  161. package/v3/dist/init/phases/04-database.js.map +1 -0
  162. package/v3/dist/init/phases/05-learning.d.ts +28 -0
  163. package/v3/dist/init/phases/05-learning.d.ts.map +1 -0
  164. package/v3/dist/init/phases/05-learning.js +98 -0
  165. package/v3/dist/init/phases/05-learning.js.map +1 -0
  166. package/v3/dist/init/phases/06-code-intelligence.d.ts +33 -0
  167. package/v3/dist/init/phases/06-code-intelligence.d.ts.map +1 -0
  168. package/v3/dist/init/phases/06-code-intelligence.js +115 -0
  169. package/v3/dist/init/phases/06-code-intelligence.js.map +1 -0
  170. package/v3/dist/init/phases/07-hooks.d.ts +27 -0
  171. package/v3/dist/init/phases/07-hooks.d.ts.map +1 -0
  172. package/v3/dist/init/phases/07-hooks.js +209 -0
  173. package/v3/dist/init/phases/07-hooks.js.map +1 -0
  174. package/v3/dist/init/phases/08-mcp.d.ts +22 -0
  175. package/v3/dist/init/phases/08-mcp.d.ts.map +1 -0
  176. package/v3/dist/init/phases/08-mcp.js +62 -0
  177. package/v3/dist/init/phases/08-mcp.js.map +1 -0
  178. package/v3/dist/init/phases/09-assets.d.ts +23 -0
  179. package/v3/dist/init/phases/09-assets.d.ts.map +1 -0
  180. package/v3/dist/init/phases/09-assets.js +82 -0
  181. package/v3/dist/init/phases/09-assets.js.map +1 -0
  182. package/v3/dist/init/phases/10-workers.d.ts +23 -0
  183. package/v3/dist/init/phases/10-workers.d.ts.map +1 -0
  184. package/v3/dist/init/phases/10-workers.js +111 -0
  185. package/v3/dist/init/phases/10-workers.js.map +1 -0
  186. package/v3/dist/init/phases/11-claude-md.d.ts +26 -0
  187. package/v3/dist/init/phases/11-claude-md.d.ts.map +1 -0
  188. package/v3/dist/init/phases/11-claude-md.js +121 -0
  189. package/v3/dist/init/phases/11-claude-md.js.map +1 -0
  190. package/v3/dist/init/phases/12-verification.d.ts +38 -0
  191. package/v3/dist/init/phases/12-verification.d.ts.map +1 -0
  192. package/v3/dist/init/phases/12-verification.js +187 -0
  193. package/v3/dist/init/phases/12-verification.js.map +1 -0
  194. package/v3/dist/init/phases/index.d.ts +46 -0
  195. package/v3/dist/init/phases/index.d.ts.map +1 -0
  196. package/v3/dist/init/phases/index.js +64 -0
  197. package/v3/dist/init/phases/index.js.map +1 -0
  198. package/v3/dist/init/phases/phase-interface.d.ts +193 -0
  199. package/v3/dist/init/phases/phase-interface.d.ts.map +1 -0
  200. package/v3/dist/init/phases/phase-interface.js +119 -0
  201. package/v3/dist/init/phases/phase-interface.js.map +1 -0
  202. package/v3/dist/integrations/coherence/coherence-service.d.ts +323 -0
  203. package/v3/dist/integrations/coherence/coherence-service.d.ts.map +1 -0
  204. package/v3/dist/integrations/coherence/coherence-service.js +799 -0
  205. package/v3/dist/integrations/coherence/coherence-service.js.map +1 -0
  206. package/v3/dist/integrations/coherence/engines/category-adapter.d.ts +170 -0
  207. package/v3/dist/integrations/coherence/engines/category-adapter.d.ts.map +1 -0
  208. package/v3/dist/integrations/coherence/engines/category-adapter.js +403 -0
  209. package/v3/dist/integrations/coherence/engines/category-adapter.js.map +1 -0
  210. package/v3/dist/integrations/coherence/engines/causal-adapter.d.ts +159 -0
  211. package/v3/dist/integrations/coherence/engines/causal-adapter.d.ts.map +1 -0
  212. package/v3/dist/integrations/coherence/engines/causal-adapter.js +348 -0
  213. package/v3/dist/integrations/coherence/engines/causal-adapter.js.map +1 -0
  214. package/v3/dist/integrations/coherence/engines/cohomology-adapter.d.ts +174 -0
  215. package/v3/dist/integrations/coherence/engines/cohomology-adapter.d.ts.map +1 -0
  216. package/v3/dist/integrations/coherence/engines/cohomology-adapter.js +401 -0
  217. package/v3/dist/integrations/coherence/engines/cohomology-adapter.js.map +1 -0
  218. package/v3/dist/integrations/coherence/engines/homotopy-adapter.d.ts +201 -0
  219. package/v3/dist/integrations/coherence/engines/homotopy-adapter.d.ts.map +1 -0
  220. package/v3/dist/integrations/coherence/engines/homotopy-adapter.js +324 -0
  221. package/v3/dist/integrations/coherence/engines/homotopy-adapter.js.map +1 -0
  222. package/v3/dist/integrations/coherence/engines/index.d.ts +20 -0
  223. package/v3/dist/integrations/coherence/engines/index.d.ts.map +1 -0
  224. package/v3/dist/integrations/coherence/engines/index.js +26 -0
  225. package/v3/dist/integrations/coherence/engines/index.js.map +1 -0
  226. package/v3/dist/integrations/coherence/engines/spectral-adapter.d.ts +193 -0
  227. package/v3/dist/integrations/coherence/engines/spectral-adapter.d.ts.map +1 -0
  228. package/v3/dist/integrations/coherence/engines/spectral-adapter.js +476 -0
  229. package/v3/dist/integrations/coherence/engines/spectral-adapter.js.map +1 -0
  230. package/v3/dist/integrations/coherence/engines/witness-adapter.d.ts +175 -0
  231. package/v3/dist/integrations/coherence/engines/witness-adapter.d.ts.map +1 -0
  232. package/v3/dist/integrations/coherence/engines/witness-adapter.js +377 -0
  233. package/v3/dist/integrations/coherence/engines/witness-adapter.js.map +1 -0
  234. package/v3/dist/integrations/coherence/index.d.ts +84 -0
  235. package/v3/dist/integrations/coherence/index.d.ts.map +1 -0
  236. package/v3/dist/integrations/coherence/index.js +114 -0
  237. package/v3/dist/integrations/coherence/index.js.map +1 -0
  238. package/v3/dist/integrations/coherence/threshold-tuner.d.ts +396 -0
  239. package/v3/dist/integrations/coherence/threshold-tuner.d.ts.map +1 -0
  240. package/v3/dist/integrations/coherence/threshold-tuner.js +538 -0
  241. package/v3/dist/integrations/coherence/threshold-tuner.js.map +1 -0
  242. package/v3/dist/integrations/coherence/types.d.ts +879 -0
  243. package/v3/dist/integrations/coherence/types.d.ts.map +1 -0
  244. package/v3/dist/integrations/coherence/types.js +134 -0
  245. package/v3/dist/integrations/coherence/types.js.map +1 -0
  246. package/v3/dist/integrations/coherence/wasm-loader.d.ts +351 -0
  247. package/v3/dist/integrations/coherence/wasm-loader.d.ts.map +1 -0
  248. package/v3/dist/integrations/coherence/wasm-loader.js +842 -0
  249. package/v3/dist/integrations/coherence/wasm-loader.js.map +1 -0
  250. package/v3/dist/integrations/embeddings/index/HNSWIndex.d.ts.map +1 -1
  251. package/v3/dist/integrations/embeddings/index/HNSWIndex.js +4 -1
  252. package/v3/dist/integrations/embeddings/index/HNSWIndex.js.map +1 -1
  253. package/v3/dist/kernel/interfaces.d.ts +8 -1
  254. package/v3/dist/kernel/interfaces.d.ts.map +1 -1
  255. package/v3/dist/learning/aqe-learning-engine.d.ts +272 -0
  256. package/v3/dist/learning/aqe-learning-engine.d.ts.map +1 -0
  257. package/v3/dist/learning/aqe-learning-engine.js +708 -0
  258. package/v3/dist/learning/aqe-learning-engine.js.map +1 -0
  259. package/v3/dist/learning/causal-verifier.d.ts +244 -0
  260. package/v3/dist/learning/causal-verifier.d.ts.map +1 -0
  261. package/v3/dist/learning/causal-verifier.js +300 -0
  262. package/v3/dist/learning/causal-verifier.js.map +1 -0
  263. package/v3/dist/learning/experience-capture.d.ts +266 -0
  264. package/v3/dist/learning/experience-capture.d.ts.map +1 -0
  265. package/v3/dist/learning/experience-capture.js +647 -0
  266. package/v3/dist/learning/experience-capture.js.map +1 -0
  267. package/v3/dist/learning/index.d.ts +8 -0
  268. package/v3/dist/learning/index.d.ts.map +1 -1
  269. package/v3/dist/learning/index.js +16 -0
  270. package/v3/dist/learning/index.js.map +1 -1
  271. package/v3/dist/learning/memory-auditor.d.ts +235 -0
  272. package/v3/dist/learning/memory-auditor.d.ts.map +1 -0
  273. package/v3/dist/learning/memory-auditor.js +478 -0
  274. package/v3/dist/learning/memory-auditor.js.map +1 -0
  275. package/v3/dist/learning/pattern-store.d.ts.map +1 -1
  276. package/v3/dist/learning/pattern-store.js +27 -6
  277. package/v3/dist/learning/pattern-store.js.map +1 -1
  278. package/v3/dist/learning/qe-patterns.d.ts +15 -1
  279. package/v3/dist/learning/qe-patterns.d.ts.map +1 -1
  280. package/v3/dist/learning/qe-patterns.js +26 -5
  281. package/v3/dist/learning/qe-patterns.js.map +1 -1
  282. package/v3/dist/learning/qe-reasoning-bank.d.ts +38 -2
  283. package/v3/dist/learning/qe-reasoning-bank.d.ts.map +1 -1
  284. package/v3/dist/learning/qe-reasoning-bank.js +86 -4
  285. package/v3/dist/learning/qe-reasoning-bank.js.map +1 -1
  286. package/v3/dist/learning/real-qe-reasoning-bank.d.ts +32 -2
  287. package/v3/dist/learning/real-qe-reasoning-bank.d.ts.map +1 -1
  288. package/v3/dist/learning/real-qe-reasoning-bank.js +61 -6
  289. package/v3/dist/learning/real-qe-reasoning-bank.js.map +1 -1
  290. package/v3/dist/mcp/bundle.js +6303 -266
  291. package/v3/dist/mcp/tools/coherence/audit.d.ts +107 -0
  292. package/v3/dist/mcp/tools/coherence/audit.d.ts.map +1 -0
  293. package/v3/dist/mcp/tools/coherence/audit.js +236 -0
  294. package/v3/dist/mcp/tools/coherence/audit.js.map +1 -0
  295. package/v3/dist/mcp/tools/coherence/check.d.ts +106 -0
  296. package/v3/dist/mcp/tools/coherence/check.d.ts.map +1 -0
  297. package/v3/dist/mcp/tools/coherence/check.js +205 -0
  298. package/v3/dist/mcp/tools/coherence/check.js.map +1 -0
  299. package/v3/dist/mcp/tools/coherence/collapse.d.ts +123 -0
  300. package/v3/dist/mcp/tools/coherence/collapse.d.ts.map +1 -0
  301. package/v3/dist/mcp/tools/coherence/collapse.js +279 -0
  302. package/v3/dist/mcp/tools/coherence/collapse.js.map +1 -0
  303. package/v3/dist/mcp/tools/coherence/consensus.d.ts +100 -0
  304. package/v3/dist/mcp/tools/coherence/consensus.d.ts.map +1 -0
  305. package/v3/dist/mcp/tools/coherence/consensus.js +201 -0
  306. package/v3/dist/mcp/tools/coherence/consensus.js.map +1 -0
  307. package/v3/dist/mcp/tools/coherence/index.d.ts +31 -0
  308. package/v3/dist/mcp/tools/coherence/index.d.ts.map +1 -0
  309. package/v3/dist/mcp/tools/coherence/index.js +42 -0
  310. package/v3/dist/mcp/tools/coherence/index.js.map +1 -0
  311. package/v3/dist/mcp/tools/index.d.ts +6 -1
  312. package/v3/dist/mcp/tools/index.d.ts.map +1 -1
  313. package/v3/dist/mcp/tools/index.js +9 -1
  314. package/v3/dist/mcp/tools/index.js.map +1 -1
  315. package/v3/dist/mcp/tools/mincut/index.d.ts +1 -1
  316. package/v3/dist/mcp/tools/mincut/index.d.ts.map +1 -1
  317. package/v3/dist/mcp/tools/mincut/index.js.map +1 -1
  318. package/v3/dist/mcp/tools/registry.d.ts +4 -0
  319. package/v3/dist/mcp/tools/registry.d.ts.map +1 -1
  320. package/v3/dist/mcp/tools/registry.js +5 -0
  321. package/v3/dist/mcp/tools/registry.js.map +1 -1
  322. package/v3/dist/mcp/types.d.ts +1 -1
  323. package/v3/dist/mcp/types.d.ts.map +1 -1
  324. package/v3/dist/strange-loop/belief-reconciler.d.ts +357 -0
  325. package/v3/dist/strange-loop/belief-reconciler.d.ts.map +1 -0
  326. package/v3/dist/strange-loop/belief-reconciler.js +696 -0
  327. package/v3/dist/strange-loop/belief-reconciler.js.map +1 -0
  328. package/v3/dist/strange-loop/index.d.ts +1 -0
  329. package/v3/dist/strange-loop/index.d.ts.map +1 -1
  330. package/v3/dist/strange-loop/index.js +2 -0
  331. package/v3/dist/strange-loop/index.js.map +1 -1
  332. package/v3/dist/strange-loop/strange-loop.d.ts +177 -5
  333. package/v3/dist/strange-loop/strange-loop.d.ts.map +1 -1
  334. package/v3/dist/strange-loop/strange-loop.js +452 -9
  335. package/v3/dist/strange-loop/strange-loop.js.map +1 -1
  336. package/v3/dist/strange-loop/types.d.ts +205 -1
  337. package/v3/dist/strange-loop/types.d.ts.map +1 -1
  338. package/v3/dist/strange-loop/types.js +5 -0
  339. package/v3/dist/strange-loop/types.js.map +1 -1
  340. package/v3/package.json +5 -1
@@ -0,0 +1,478 @@
1
+ /**
2
+ * Agentic QE v3 - Memory Coherence Auditor
3
+ * ADR-052 Phase 3 Action A3.2
4
+ *
5
+ * Periodically audits QE pattern memory for contradictions and coherence issues.
6
+ * Uses the Prime Radiant Coherence Service to detect inconsistent patterns.
7
+ *
8
+ * **Architecture:**
9
+ * ```
10
+ * ┌────────────────────────────────────────────────────────────┐
11
+ * │ MEMORY COHERENCE AUDITOR │
12
+ * ├────────────────────────────────────────────────────────────┤
13
+ * │ │
14
+ * │ ┌──────────────┐ ┌──────────────┐ │
15
+ * │ │ QE Patterns │───────▶│ Coherence │ │
16
+ * │ │ (Memory) │ │ Service │ │
17
+ * │ └──────────────┘ └──────┬───────┘ │
18
+ * │ │ │
19
+ * │ ┌────────▼────────┐ │
20
+ * │ │ Energy Analysis │ │
21
+ * │ │ • Contradictions│ │
22
+ * │ │ • Hotspots │ │
23
+ * │ └────────┬────────┘ │
24
+ * │ │ │
25
+ * │ ┌────────▼────────┐ │
26
+ * │ │ Recommendations │ │
27
+ * │ │ • Merge │ │
28
+ * │ │ • Remove │ │
29
+ * │ │ • Review │ │
30
+ * │ └─────────────────┘ │
31
+ * │ │
32
+ * └────────────────────────────────────────────────────────────┘
33
+ * ```
34
+ *
35
+ * @example
36
+ * ```typescript
37
+ * import { createMemoryAuditor } from './learning';
38
+ * import { createCoherenceService } from './integrations/coherence';
39
+ *
40
+ * // Create auditor
41
+ * const auditor = createMemoryAuditor(coherenceService, eventBus);
42
+ *
43
+ * // Audit patterns
44
+ * const result = await auditor.auditPatterns(patterns);
45
+ *
46
+ * if (result.contradictionCount > 0) {
47
+ * console.log('Found contradictions:', result.hotspots);
48
+ * console.log('Recommendations:', result.recommendations);
49
+ * }
50
+ *
51
+ * // Background audit
52
+ * await auditor.runBackgroundAudit(async () => {
53
+ * return await patternStore.getAll();
54
+ * });
55
+ * ```
56
+ *
57
+ * @module learning/memory-auditor
58
+ */
59
+ /**
60
+ * Default auditor configuration
61
+ */
62
+ export const DEFAULT_AUDITOR_CONFIG = {
63
+ batchSize: 50,
64
+ energyThreshold: 0.4,
65
+ hotspotThreshold: 0.6,
66
+ maxRecommendations: 10,
67
+ };
68
+ // ============================================================================
69
+ // Memory Coherence Auditor
70
+ // ============================================================================
71
+ /**
72
+ * Memory Coherence Auditor
73
+ *
74
+ * Periodically scans QE patterns for coherence issues:
75
+ * - Contradictory patterns (detected via Prime Radiant)
76
+ * - Duplicate/overlapping patterns
77
+ * - Outdated patterns with low usage
78
+ * - Overly broad patterns
79
+ *
80
+ * Generates actionable recommendations:
81
+ * - Merge similar patterns
82
+ * - Remove outdated patterns
83
+ * - Review high-energy patterns
84
+ * - Split overly broad patterns
85
+ */
86
+ export class MemoryCoherenceAuditor {
87
+ coherenceService;
88
+ eventBus;
89
+ config;
90
+ isAuditing = false;
91
+ constructor(coherenceService, eventBus, config = DEFAULT_AUDITOR_CONFIG) {
92
+ this.coherenceService = coherenceService;
93
+ this.eventBus = eventBus;
94
+ this.config = config;
95
+ }
96
+ /**
97
+ * Audit a collection of patterns for coherence
98
+ *
99
+ * @param patterns - Patterns to audit
100
+ * @returns Audit result with contradictions and recommendations
101
+ */
102
+ async auditPatterns(patterns) {
103
+ const startTime = Date.now();
104
+ // Emit start event
105
+ await this.emitEvent('memory:audit_started', {
106
+ totalPatterns: patterns.length,
107
+ timestamp: new Date(),
108
+ });
109
+ try {
110
+ // Group patterns by domain for focused analysis
111
+ const domainGroups = this.groupByDomain(patterns);
112
+ const hotspots = [];
113
+ let totalContradictions = 0;
114
+ let totalEnergy = 0;
115
+ // Check each domain for coherence
116
+ for (const [domain, domainPatterns] of Object.entries(domainGroups)) {
117
+ if (domainPatterns.length < 2)
118
+ continue; // Skip single-pattern domains
119
+ // Convert patterns to coherence nodes
120
+ const nodes = this.patternsToNodes(domainPatterns);
121
+ // Check coherence using Prime Radiant
122
+ const result = await this.coherenceService.checkCoherence(nodes);
123
+ totalEnergy += result.energy;
124
+ totalContradictions += result.contradictions.length;
125
+ // Identify hotspots (high-energy domains)
126
+ if (result.energy > this.config.hotspotThreshold) {
127
+ hotspots.push({
128
+ domain: domain,
129
+ patternIds: domainPatterns.map(p => p.id),
130
+ energy: result.energy,
131
+ description: this.describeHotspot(result, domain),
132
+ });
133
+ }
134
+ }
135
+ // Calculate global energy
136
+ const domainCount = Object.keys(domainGroups).length;
137
+ const globalEnergy = domainCount > 0 ? totalEnergy / domainCount : 0;
138
+ // Identify hotspots across all patterns
139
+ const allHotspots = await this.identifyHotspots(patterns);
140
+ // Generate recommendations
141
+ const recommendations = await this.generateRecommendations(allHotspots, patterns);
142
+ const duration = Date.now() - startTime;
143
+ const auditResult = {
144
+ totalPatterns: patterns.length,
145
+ scannedPatterns: patterns.length,
146
+ contradictionCount: totalContradictions,
147
+ globalEnergy,
148
+ hotspots: allHotspots,
149
+ recommendations,
150
+ duration,
151
+ timestamp: new Date(),
152
+ };
153
+ // Emit completion event
154
+ await this.emitEvent('memory:audit_completed', {
155
+ result: auditResult,
156
+ timestamp: new Date(),
157
+ });
158
+ return auditResult;
159
+ }
160
+ catch (error) {
161
+ // Emit error event
162
+ try {
163
+ await this.emitEvent('memory:audit_failed', {
164
+ error: error instanceof Error ? error.message : String(error),
165
+ timestamp: new Date(),
166
+ });
167
+ }
168
+ catch (eventError) {
169
+ // Ignore event emission errors
170
+ console.warn('Failed to emit audit_failed event:', eventError);
171
+ }
172
+ // Re-throw the original error
173
+ throw error;
174
+ }
175
+ }
176
+ /**
177
+ * Identify coherence hotspots across patterns
178
+ *
179
+ * @param patterns - All patterns to analyze
180
+ * @returns Detected hotspots
181
+ */
182
+ async identifyHotspots(patterns) {
183
+ const hotspots = [];
184
+ // Group patterns by domain
185
+ const domainGroups = this.groupByDomain(patterns);
186
+ // Check each domain
187
+ for (const [domain, domainPatterns] of Object.entries(domainGroups)) {
188
+ if (domainPatterns.length < 2)
189
+ continue;
190
+ // Convert to coherence nodes
191
+ const nodes = this.patternsToNodes(domainPatterns);
192
+ // Check coherence
193
+ const result = await this.coherenceService.checkCoherence(nodes);
194
+ // Flag high-energy domains
195
+ if (result.energy > this.config.hotspotThreshold) {
196
+ hotspots.push({
197
+ domain: domain,
198
+ patternIds: domainPatterns.map(p => p.id),
199
+ energy: result.energy,
200
+ description: this.describeHotspot(result, domain),
201
+ });
202
+ }
203
+ }
204
+ return hotspots;
205
+ }
206
+ /**
207
+ * Generate actionable recommendations from hotspots
208
+ *
209
+ * @param hotspots - Detected hotspots
210
+ * @param patterns - All patterns
211
+ * @returns Prioritized recommendations
212
+ */
213
+ async generateRecommendations(hotspots, patterns) {
214
+ const recommendations = [];
215
+ const patternMap = new Map(patterns.map(p => [p.id, p]));
216
+ // Process each hotspot
217
+ for (const hotspot of hotspots) {
218
+ const hotspotPatterns = hotspot.patternIds
219
+ .map(id => patternMap.get(id))
220
+ .filter((p) => p !== undefined);
221
+ // Detect duplicate-like patterns (similar name/description)
222
+ const duplicates = this.findDuplicates(hotspotPatterns);
223
+ if (duplicates.length > 0) {
224
+ recommendations.push({
225
+ type: 'merge',
226
+ patternIds: duplicates,
227
+ reason: `Detected ${duplicates.length} similar patterns in ${hotspot.domain} domain`,
228
+ priority: 'high',
229
+ });
230
+ }
231
+ // Detect outdated patterns (low usage, low success)
232
+ const outdated = this.findOutdated(hotspotPatterns);
233
+ if (outdated.length > 0) {
234
+ recommendations.push({
235
+ type: 'remove',
236
+ patternIds: outdated,
237
+ reason: `Found ${outdated.length} outdated patterns with low usage/success`,
238
+ priority: 'medium',
239
+ });
240
+ }
241
+ // High-energy patterns need review
242
+ if (hotspot.energy > 0.7) {
243
+ recommendations.push({
244
+ type: 'review',
245
+ patternIds: hotspot.patternIds,
246
+ reason: `Critical coherence energy (${hotspot.energy.toFixed(2)}) in ${hotspot.domain}`,
247
+ priority: 'high',
248
+ });
249
+ }
250
+ // Detect overly broad patterns (low specificity)
251
+ const broad = this.findBroadPatterns(hotspotPatterns);
252
+ if (broad.length > 0) {
253
+ recommendations.push({
254
+ type: 'split',
255
+ patternIds: broad,
256
+ reason: `Found ${broad.length} overly generic patterns that should be specialized`,
257
+ priority: 'low',
258
+ });
259
+ }
260
+ }
261
+ // Sort by priority and limit
262
+ return recommendations
263
+ .sort((a, b) => this.priorityValue(b.priority) - this.priorityValue(a.priority))
264
+ .slice(0, this.config.maxRecommendations);
265
+ }
266
+ /**
267
+ * Run a background audit that doesn't block
268
+ *
269
+ * @param patternSource - Function to fetch patterns
270
+ */
271
+ async runBackgroundAudit(patternSource) {
272
+ if (this.isAuditing) {
273
+ console.warn('Audit already in progress, skipping');
274
+ return;
275
+ }
276
+ this.isAuditing = true;
277
+ try {
278
+ // Emit progress event
279
+ await this.emitEvent('memory:audit_progress', {
280
+ status: 'fetching_patterns',
281
+ timestamp: new Date(),
282
+ });
283
+ // Fetch patterns
284
+ const patterns = await patternSource();
285
+ // Emit progress event
286
+ await this.emitEvent('memory:audit_progress', {
287
+ status: 'analyzing_coherence',
288
+ totalPatterns: patterns.length,
289
+ timestamp: new Date(),
290
+ });
291
+ // Run audit
292
+ const result = await this.auditPatterns(patterns);
293
+ // Emit progress event
294
+ await this.emitEvent('memory:audit_progress', {
295
+ status: 'completed',
296
+ result,
297
+ timestamp: new Date(),
298
+ });
299
+ }
300
+ catch (error) {
301
+ await this.emitEvent('memory:audit_progress', {
302
+ status: 'failed',
303
+ error: error instanceof Error ? error.message : String(error),
304
+ timestamp: new Date(),
305
+ });
306
+ }
307
+ finally {
308
+ this.isAuditing = false;
309
+ }
310
+ }
311
+ // ============================================================================
312
+ // Private Helper Methods
313
+ // ============================================================================
314
+ /**
315
+ * Group patterns by domain
316
+ */
317
+ groupByDomain(patterns) {
318
+ const groups = {};
319
+ for (const pattern of patterns) {
320
+ const domain = pattern.qeDomain;
321
+ if (!groups[domain]) {
322
+ groups[domain] = [];
323
+ }
324
+ groups[domain].push(pattern);
325
+ }
326
+ return groups;
327
+ }
328
+ /**
329
+ * Convert patterns to coherence nodes
330
+ */
331
+ patternsToNodes(patterns) {
332
+ return patterns.map(pattern => ({
333
+ id: pattern.id,
334
+ embedding: pattern.embedding || this.createFallbackEmbedding(pattern),
335
+ weight: pattern.qualityScore,
336
+ metadata: {
337
+ name: pattern.name,
338
+ description: pattern.description,
339
+ domain: pattern.qeDomain,
340
+ confidence: pattern.confidence,
341
+ usageCount: pattern.usageCount,
342
+ successRate: pattern.successRate,
343
+ },
344
+ }));
345
+ }
346
+ /**
347
+ * Create a fallback embedding for patterns without one
348
+ */
349
+ createFallbackEmbedding(pattern) {
350
+ // Simple hash-based embedding as fallback
351
+ const text = `${pattern.name} ${pattern.description}`;
352
+ const embedding = [];
353
+ for (let i = 0; i < 64; i++) {
354
+ const charCode = text.charCodeAt(i % text.length);
355
+ embedding.push((charCode / 255) * 2 - 1); // Normalize to [-1, 1]
356
+ }
357
+ return embedding;
358
+ }
359
+ /**
360
+ * Describe a hotspot in human-readable form
361
+ */
362
+ describeHotspot(result, domain) {
363
+ const energy = result.energy.toFixed(2);
364
+ const contradictions = result.contradictions.length;
365
+ if (contradictions > 0) {
366
+ return `${domain} has ${contradictions} contradiction(s) with energy ${energy}`;
367
+ }
368
+ return `${domain} has high coherence energy (${energy}) indicating potential inconsistencies`;
369
+ }
370
+ /**
371
+ * Find duplicate-like patterns
372
+ */
373
+ findDuplicates(patterns) {
374
+ const duplicates = [];
375
+ const groups = new Map();
376
+ // Group patterns by normalized content
377
+ for (const pattern of patterns) {
378
+ const key = this.normalizeText(`${pattern.name} ${pattern.description}`);
379
+ if (!groups.has(key)) {
380
+ groups.set(key, []);
381
+ }
382
+ groups.get(key).push(pattern.id);
383
+ }
384
+ // Find groups with multiple patterns (duplicates)
385
+ for (const [_, ids] of groups) {
386
+ if (ids.length > 1) {
387
+ // Keep the first, mark the rest as duplicates
388
+ duplicates.push(...ids.slice(1));
389
+ }
390
+ }
391
+ return duplicates;
392
+ }
393
+ /**
394
+ * Find outdated patterns
395
+ */
396
+ findOutdated(patterns) {
397
+ return patterns
398
+ .filter(p => p.usageCount < 5 && p.successRate < 0.5)
399
+ .map(p => p.id);
400
+ }
401
+ /**
402
+ * Find overly broad patterns
403
+ */
404
+ findBroadPatterns(patterns) {
405
+ return patterns
406
+ .filter(p => {
407
+ const hasGenericName = /generic|general|common|basic/i.test(p.name);
408
+ const hasLowSpecificity = p.context.tags.length < 2;
409
+ return hasGenericName || hasLowSpecificity;
410
+ })
411
+ .map(p => p.id);
412
+ }
413
+ /**
414
+ * Normalize text for comparison
415
+ */
416
+ normalizeText(text) {
417
+ return text
418
+ .toLowerCase()
419
+ .replace(/[^a-z0-9\s]/g, '')
420
+ .replace(/\s+/g, ' ')
421
+ .trim();
422
+ }
423
+ /**
424
+ * Convert priority to numeric value for sorting
425
+ */
426
+ priorityValue(priority) {
427
+ switch (priority) {
428
+ case 'high': return 3;
429
+ case 'medium': return 2;
430
+ case 'low': return 1;
431
+ default: return 0;
432
+ }
433
+ }
434
+ /**
435
+ * Emit event if event bus is available
436
+ */
437
+ async emitEvent(eventType, payload) {
438
+ if (!this.eventBus)
439
+ return;
440
+ try {
441
+ await this.eventBus.publish({
442
+ id: `memory-audit-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`,
443
+ type: eventType,
444
+ source: 'learning-optimization',
445
+ timestamp: new Date(),
446
+ payload,
447
+ });
448
+ }
449
+ catch (error) {
450
+ console.warn(`Failed to emit event ${eventType}:`, error);
451
+ }
452
+ }
453
+ }
454
+ // ============================================================================
455
+ // Factory Function
456
+ // ============================================================================
457
+ /**
458
+ * Create a Memory Coherence Auditor
459
+ *
460
+ * @param coherenceService - Coherence service for verification
461
+ * @param eventBus - Optional event bus for notifications
462
+ * @param config - Optional configuration overrides
463
+ * @returns Configured auditor instance
464
+ *
465
+ * @example
466
+ * ```typescript
467
+ * const auditor = createMemoryAuditor(coherenceService, eventBus, {
468
+ * batchSize: 100,
469
+ * energyThreshold: 0.5,
470
+ * });
471
+ *
472
+ * const result = await auditor.auditPatterns(patterns);
473
+ * ```
474
+ */
475
+ export function createMemoryAuditor(coherenceService, eventBus, config) {
476
+ return new MemoryCoherenceAuditor(coherenceService, eventBus, { ...DEFAULT_AUDITOR_CONFIG, ...config });
477
+ }
478
+ //# sourceMappingURL=memory-auditor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory-auditor.js","sourceRoot":"","sources":["../../src/learning/memory-auditor.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyDG;AA0EH;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAwB;IACzD,SAAS,EAAE,EAAE;IACb,eAAe,EAAE,GAAG;IACpB,gBAAgB,EAAE,GAAG;IACrB,kBAAkB,EAAE,EAAE;CACvB,CAAC;AAEF,+EAA+E;AAC/E,2BAA2B;AAC3B,+EAA+E;AAE/E;;;;;;;;;;;;;;GAcG;AACH,MAAM,OAAO,sBAAsB;IAId;IACA;IACA;IALX,UAAU,GAAG,KAAK,CAAC;IAE3B,YACmB,gBAAkC,EAClC,QAAmB,EACnB,SAA8B,sBAAsB;QAFpD,qBAAgB,GAAhB,gBAAgB,CAAkB;QAClC,aAAQ,GAAR,QAAQ,CAAW;QACnB,WAAM,GAAN,MAAM,CAA8C;IACpE,CAAC;IAEJ;;;;;OAKG;IACH,KAAK,CAAC,aAAa,CAAC,QAAqB;QACvC,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;QAE7B,mBAAmB;QACnB,MAAM,IAAI,CAAC,SAAS,CAAC,sBAAsB,EAAE;YAC3C,aAAa,EAAE,QAAQ,CAAC,MAAM;YAC9B,SAAS,EAAE,IAAI,IAAI,EAAE;SACtB,CAAC,CAAC;QAEH,IAAI,CAAC;YACH,gDAAgD;YAChD,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;YAClD,MAAM,QAAQ,GAAqB,EAAE,CAAC;YACtC,IAAI,mBAAmB,GAAG,CAAC,CAAC;YAC5B,IAAI,WAAW,GAAG,CAAC,CAAC;YAEpB,kCAAkC;YAClC,KAAK,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;gBACpE,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC;oBAAE,SAAS,CAAC,8BAA8B;gBAEvE,sCAAsC;gBACtC,MAAM,KAAK,GAAG,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,CAAC;gBAEnD,sCAAsC;gBACtC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;gBAEjE,WAAW,IAAI,MAAM,CAAC,MAAM,CAAC;gBAC7B,mBAAmB,IAAI,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC;gBAEpD,0CAA0C;gBAC1C,IAAI,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,CAAC;oBACjD,QAAQ,CAAC,IAAI,CAAC;wBACZ,MAAM,EAAE,MAAkB;wBAC1B,UAAU,EAAE,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;wBACzC,MAAM,EAAE,MAAM,CAAC,MAAM;wBACrB,WAAW,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,MAAkB,CAAC;qBAC9D,CAAC,CAAC;gBACL,CAAC;YACH,CAAC;YAED,0BAA0B;YAC1B,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,MAAM,CAAC;YACrD,MAAM,YAAY,GAAG,WAAW,GAAG,CAAC,CAAC,CAAC,CAAC,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;YAErE,wCAAwC;YACxC,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC;YAE1D,2BAA2B;YAC3B,MAAM,eAAe,GAAG,MAAM,IAAI,CAAC,uBAAuB,CACxD,WAAW,EACX,QAAQ,CACT,CAAC;YAEF,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC;YAExC,MAAM,WAAW,GAAsB;gBACrC,aAAa,EAAE,QAAQ,CAAC,MAAM;gBAC9B,eAAe,EAAE,QAAQ,CAAC,MAAM;gBAChC,kBAAkB,EAAE,mBAAmB;gBACvC,YAAY;gBACZ,QAAQ,EAAE,WAAW;gBACrB,eAAe;gBACf,QAAQ;gBACR,SAAS,EAAE,IAAI,IAAI,EAAE;aACtB,CAAC;YAEF,wBAAwB;YACxB,MAAM,IAAI,CAAC,SAAS,CAAC,wBAAwB,EAAE;gBAC7C,MAAM,EAAE,WAAW;gBACnB,SAAS,EAAE,IAAI,IAAI,EAAE;aACtB,CAAC,CAAC;YAEH,OAAO,WAAW,CAAC;QACrB,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,mBAAmB;YACnB,IAAI,CAAC;gBACH,MAAM,IAAI,CAAC,SAAS,CAAC,qBAAqB,EAAE;oBAC1C,KAAK,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;oBAC7D,SAAS,EAAE,IAAI,IAAI,EAAE;iBACtB,CAAC,CAAC;YACL,CAAC;YAAC,OAAO,UAAU,EAAE,CAAC;gBACpB,+BAA+B;gBAC/B,OAAO,CAAC,IAAI,CAAC,oCAAoC,EAAE,UAAU,CAAC,CAAC;YACjE,CAAC;YAED,8BAA8B;YAC9B,MAAM,KAAK,CAAC;QACd,CAAC;IACH,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,gBAAgB,CAAC,QAAqB;QAC1C,MAAM,QAAQ,GAAqB,EAAE,CAAC;QAEtC,2BAA2B;QAC3B,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;QAElD,oBAAoB;QACpB,KAAK,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;YACpE,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC;gBAAE,SAAS;YAExC,6BAA6B;YAC7B,MAAM,KAAK,GAAG,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,CAAC;YAEnD,kBAAkB;YAClB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;YAEjE,2BAA2B;YAC3B,IAAI,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,CAAC;gBACjD,QAAQ,CAAC,IAAI,CAAC;oBACZ,MAAM,EAAE,MAAkB;oBAC1B,UAAU,EAAE,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;oBACzC,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,WAAW,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,MAAkB,CAAC;iBAC9D,CAAC,CAAC;YACL,CAAC;QACH,CAAC;QAED,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,uBAAuB,CAC3B,QAA0B,EAC1B,QAAqB;QAErB,MAAM,eAAe,GAA0B,EAAE,CAAC;QAClD,MAAM,UAAU,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAEzD,uBAAuB;QACvB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC/B,MAAM,eAAe,GAAG,OAAO,CAAC,UAAU;iBACvC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;iBAC7B,MAAM,CAAC,CAAC,CAAC,EAAkB,EAAE,CAAC,CAAC,KAAK,SAAS,CAAC,CAAC;YAElD,4DAA4D;YAC5D,MAAM,UAAU,GAAG,IAAI,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC;YACxD,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBAC1B,eAAe,CAAC,IAAI,CAAC;oBACnB,IAAI,EAAE,OAAO;oBACb,UAAU,EAAE,UAAU;oBACtB,MAAM,EAAE,YAAY,UAAU,CAAC,MAAM,wBAAwB,OAAO,CAAC,MAAM,SAAS;oBACpF,QAAQ,EAAE,MAAM;iBACjB,CAAC,CAAC;YACL,CAAC;YAED,oDAAoD;YACpD,MAAM,QAAQ,GAAG,IAAI,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC;YACpD,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACxB,eAAe,CAAC,IAAI,CAAC;oBACnB,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE,QAAQ;oBACpB,MAAM,EAAE,SAAS,QAAQ,CAAC,MAAM,2CAA2C;oBAC3E,QAAQ,EAAE,QAAQ;iBACnB,CAAC,CAAC;YACL,CAAC;YAED,mCAAmC;YACnC,IAAI,OAAO,CAAC,MAAM,GAAG,GAAG,EAAE,CAAC;gBACzB,eAAe,CAAC,IAAI,CAAC;oBACnB,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE,OAAO,CAAC,UAAU;oBAC9B,MAAM,EAAE,8BAA8B,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,OAAO,CAAC,MAAM,EAAE;oBACvF,QAAQ,EAAE,MAAM;iBACjB,CAAC,CAAC;YACL,CAAC;YAED,iDAAiD;YACjD,MAAM,KAAK,GAAG,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAAC,CAAC;YACtD,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACrB,eAAe,CAAC,IAAI,CAAC;oBACnB,IAAI,EAAE,OAAO;oBACb,UAAU,EAAE,KAAK;oBACjB,MAAM,EAAE,SAAS,KAAK,CAAC,MAAM,qDAAqD;oBAClF,QAAQ,EAAE,KAAK;iBAChB,CAAC,CAAC;YACL,CAAC;QACH,CAAC;QAED,6BAA6B;QAC7B,OAAO,eAAe;aACnB,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC;aAC/E,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC;IAC9C,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,kBAAkB,CACtB,aAAyC;QAEzC,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACpB,OAAO,CAAC,IAAI,CAAC,qCAAqC,CAAC,CAAC;YACpD,OAAO;QACT,CAAC;QAED,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QAEvB,IAAI,CAAC;YACH,sBAAsB;YACtB,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,EAAE;gBAC5C,MAAM,EAAE,mBAAmB;gBAC3B,SAAS,EAAE,IAAI,IAAI,EAAE;aACtB,CAAC,CAAC;YAEH,iBAAiB;YACjB,MAAM,QAAQ,GAAG,MAAM,aAAa,EAAE,CAAC;YAEvC,sBAAsB;YACtB,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,EAAE;gBAC5C,MAAM,EAAE,qBAAqB;gBAC7B,aAAa,EAAE,QAAQ,CAAC,MAAM;gBAC9B,SAAS,EAAE,IAAI,IAAI,EAAE;aACtB,CAAC,CAAC;YAEH,YAAY;YACZ,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;YAElD,sBAAsB;YACtB,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,EAAE;gBAC5C,MAAM,EAAE,WAAW;gBACnB,MAAM;gBACN,SAAS,EAAE,IAAI,IAAI,EAAE;aACtB,CAAC,CAAC;QACL,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,EAAE;gBAC5C,MAAM,EAAE,QAAQ;gBAChB,KAAK,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;gBAC7D,SAAS,EAAE,IAAI,IAAI,EAAE;aACtB,CAAC,CAAC;QACL,CAAC;gBAAS,CAAC;YACT,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QAC1B,CAAC;IACH,CAAC;IAED,+EAA+E;IAC/E,yBAAyB;IACzB,+EAA+E;IAE/E;;OAEG;IACK,aAAa,CAAC,QAAqB;QACzC,MAAM,MAAM,GAA2C,EAAE,CAAC;QAE1D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC/B,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC;YAChC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC;gBACpB,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;YACtB,CAAC;YACD,MAAM,CAAC,MAAM,CAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAChC,CAAC;QAED,OAAO,MAAuC,CAAC;IACjD,CAAC;IAED;;OAEG;IACK,eAAe,CAAC,QAAqB;QAC3C,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;YAC9B,EAAE,EAAE,OAAO,CAAC,EAAE;YACd,SAAS,EAAE,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,uBAAuB,CAAC,OAAO,CAAC;YACrE,MAAM,EAAE,OAAO,CAAC,YAAY;YAC5B,QAAQ,EAAE;gBACR,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,WAAW,EAAE,OAAO,CAAC,WAAW;gBAChC,MAAM,EAAE,OAAO,CAAC,QAAQ;gBACxB,UAAU,EAAE,OAAO,CAAC,UAAU;gBAC9B,UAAU,EAAE,OAAO,CAAC,UAAU;gBAC9B,WAAW,EAAE,OAAO,CAAC,WAAW;aACjC;SACF,CAAC,CAAC,CAAC;IACN,CAAC;IAED;;OAEG;IACK,uBAAuB,CAAC,OAAkB;QAChD,0CAA0C;QAC1C,MAAM,IAAI,GAAG,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,WAAW,EAAE,CAAC;QACtD,MAAM,SAAS,GAAa,EAAE,CAAC;QAE/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC;YAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAClD,SAAS,CAAC,IAAI,CAAC,CAAC,QAAQ,GAAG,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,uBAAuB;QACnE,CAAC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;IAED;;OAEG;IACK,eAAe,CAAC,MAAuB,EAAE,MAAgB;QAC/D,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACxC,MAAM,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC;QAEpD,IAAI,cAAc,GAAG,CAAC,EAAE,CAAC;YACvB,OAAO,GAAG,MAAM,QAAQ,cAAc,iCAAiC,MAAM,EAAE,CAAC;QAClF,CAAC;QAED,OAAO,GAAG,MAAM,+BAA+B,MAAM,wCAAwC,CAAC;IAChG,CAAC;IAED;;OAEG;IACK,cAAc,CAAC,QAAqB;QAC1C,MAAM,UAAU,GAAa,EAAE,CAAC;QAChC,MAAM,MAAM,GAAG,IAAI,GAAG,EAAoB,CAAC;QAE3C,uCAAuC;QACvC,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC/B,MAAM,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;YAEzE,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC;gBACrB,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;YACtB,CAAC;YACD,MAAM,CAAC,GAAG,CAAC,GAAG,CAAE,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QACpC,CAAC;QAED,kDAAkD;QAClD,KAAK,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,MAAM,EAAE,CAAC;YAC9B,IAAI,GAAG,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACnB,8CAA8C;gBAC9C,UAAU,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YACnC,CAAC;QACH,CAAC;QAED,OAAO,UAAU,CAAC;IACpB,CAAC;IAED;;OAEG;IACK,YAAY,CAAC,QAAqB;QACxC,OAAO,QAAQ;aACZ,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,GAAG,CAAC,IAAI,CAAC,CAAC,WAAW,GAAG,GAAG,CAAC;aACpD,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;IACpB,CAAC;IAED;;OAEG;IACK,iBAAiB,CAAC,QAAqB;QAC7C,OAAO,QAAQ;aACZ,MAAM,CAAC,CAAC,CAAC,EAAE;YACV,MAAM,cAAc,GAAG,+BAA+B,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;YACpE,MAAM,iBAAiB,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YACpD,OAAO,cAAc,IAAI,iBAAiB,CAAC;QAC7C,CAAC,CAAC;aACD,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;IACpB,CAAC;IAED;;OAEG;IACK,aAAa,CAAC,IAAY;QAChC,OAAO,IAAI;aACR,WAAW,EAAE;aACb,OAAO,CAAC,cAAc,EAAE,EAAE,CAAC;aAC3B,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC;aACpB,IAAI,EAAE,CAAC;IACZ,CAAC;IAED;;OAEG;IACK,aAAa,CAAC,QAAmC;QACvD,QAAQ,QAAQ,EAAE,CAAC;YACjB,KAAK,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;YACtB,KAAK,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC;YACxB,KAAK,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC;YACrB,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC;QACpB,CAAC;IACH,CAAC;IAED;;OAEG;IACK,KAAK,CAAC,SAAS,CAAC,SAAiB,EAAE,OAAgB;QACzD,IAAI,CAAC,IAAI,CAAC,QAAQ;YAAE,OAAO;QAE3B,IAAI,CAAC;YACH,MAAM,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;gBAC1B,EAAE,EAAE,gBAAgB,IAAI,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;gBAC3E,IAAI,EAAE,SAAS;gBACf,MAAM,EAAE,uBAAuB;gBAC/B,SAAS,EAAE,IAAI,IAAI,EAAE;gBACrB,OAAO;aACR,CAAC,CAAC;QACL,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,IAAI,CAAC,wBAAwB,SAAS,GAAG,EAAE,KAAK,CAAC,CAAC;QAC5D,CAAC;IACH,CAAC;CACF;AAED,+EAA+E;AAC/E,mBAAmB;AACnB,+EAA+E;AAE/E;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,UAAU,mBAAmB,CACjC,gBAAkC,EAClC,QAAmB,EACnB,MAAqC;IAErC,OAAO,IAAI,sBAAsB,CAC/B,gBAAgB,EAChB,QAAQ,EACR,EAAE,GAAG,sBAAsB,EAAE,GAAG,MAAM,EAAE,CACzC,CAAC;AACJ,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"pattern-store.d.ts","sourceRoot":"","sources":["../../src/learning/pattern-store.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"pattern-store.d.ts","sourceRoot":"","sources":["../../src/learning/pattern-store.ts"],"names":[],"mappings":"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"}
@@ -427,16 +427,29 @@ export class PatternStore {
427
427
  if (queryLower) {
428
428
  const nameLower = pattern.name.toLowerCase();
429
429
  const descLower = pattern.description.toLowerCase();
430
+ // Exact match in name gets high score
430
431
  if (nameLower.includes(queryLower))
431
432
  score += 0.5;
432
- if (descLower.includes(queryLower))
433
- score += 0.3;
433
+ // Check description - higher score for exact task match
434
+ // Pattern descriptions often contain "Pattern extracted from: {task}"
435
+ if (descLower.includes(queryLower)) {
436
+ // If the query is a substantial part of description, it's a strong match
437
+ const queryRatio = queryLower.length / descLower.length;
438
+ if (queryRatio > 0.3) {
439
+ score += 0.5; // Strong match - query is significant part of description
440
+ }
441
+ else {
442
+ score += 0.3; // Weak match - query is small part of description
443
+ }
444
+ }
434
445
  for (const tag of pattern.context.tags) {
435
446
  if (tag.toLowerCase().includes(queryLower)) {
436
447
  score += 0.2;
437
448
  break;
438
449
  }
439
450
  }
451
+ // Cap at 1.0
452
+ score = Math.min(score, 1.0);
440
453
  }
441
454
  else {
442
455
  // No query - use quality score
@@ -557,8 +570,12 @@ export class PatternStore {
557
570
  qualityScore,
558
571
  lastUsedAt: now,
559
572
  };
560
- // Check for promotion
561
- if (shouldPromotePattern(updated) && updated.tier === 'short-term') {
573
+ // Check for promotion (ADR-052: shouldPromotePattern returns PromotionCheck object)
574
+ const promotionCheck = shouldPromotePattern(updated);
575
+ const shouldPromote = promotionCheck.meetsUsageCriteria &&
576
+ promotionCheck.meetsQualityCriteria &&
577
+ promotionCheck.meetsCoherenceCriteria;
578
+ if (shouldPromote && updated.tier === 'short-term') {
562
579
  await this.promote(id);
563
580
  }
564
581
  else {
@@ -679,8 +696,12 @@ export class PatternStore {
679
696
  const toRemove = [];
680
697
  const toPromote = [];
681
698
  for (const pattern of this.patternCache.values()) {
682
- // Check for promotion
683
- if (shouldPromotePattern(pattern)) {
699
+ // Check for promotion (ADR-052: returns PromotionCheck object)
700
+ const promotionCheck = shouldPromotePattern(pattern);
701
+ const canPromote = promotionCheck.meetsUsageCriteria &&
702
+ promotionCheck.meetsQualityCriteria &&
703
+ promotionCheck.meetsCoherenceCriteria;
704
+ if (canPromote) {
684
705
  toPromote.push(pattern.id);
685
706
  continue;
686
707
  }