agentic-qe 1.0.0 → 1.0.2

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 (863) hide show
  1. package/.claude/agents/qe-api-contract-validator.md +51 -11
  2. package/.claude/agents/qe-chaos-engineer.md +95 -43
  3. package/.claude/agents/qe-coverage-analyzer.md +134 -57
  4. package/.claude/agents/qe-deployment-readiness.md +48 -11
  5. package/.claude/agents/qe-flaky-test-hunter.md +57 -11
  6. package/.claude/agents/qe-fleet-commander.md +106 -49
  7. package/.claude/agents/qe-performance-tester.md +98 -45
  8. package/.claude/agents/qe-production-intelligence.md +48 -11
  9. package/.claude/agents/qe-quality-gate.md +160 -28
  10. package/.claude/agents/qe-regression-risk-analyzer.md +53 -11
  11. package/.claude/agents/qe-requirements-validator.md +48 -11
  12. package/.claude/agents/qe-security-scanner.md +230 -47
  13. package/.claude/agents/qe-test-data-architect.md +49 -11
  14. package/.claude/agents/qe-test-executor.md +59 -55
  15. package/.claude/agents/qe-test-generator.md +222 -48
  16. package/.claude/agents/qe-visual-tester.md +66 -65
  17. package/.claude/aqe-fleet.json +3 -3
  18. package/CHANGELOG.md +376 -0
  19. package/README.md +47 -3
  20. package/dist/agents/ApiContractValidatorAgent.d.ts.map +1 -1
  21. package/dist/agents/ApiContractValidatorAgent.js +1 -1
  22. package/dist/agents/ApiContractValidatorAgent.js.map +1 -1
  23. package/dist/agents/BaseAgent.d.ts +22 -3
  24. package/dist/agents/BaseAgent.d.ts.map +1 -1
  25. package/dist/agents/BaseAgent.js +124 -6
  26. package/dist/agents/BaseAgent.js.map +1 -1
  27. package/dist/agents/CoverageAnalyzerAgent.d.ts +0 -1
  28. package/dist/agents/CoverageAnalyzerAgent.d.ts.map +1 -1
  29. package/dist/agents/CoverageAnalyzerAgent.js +12 -8
  30. package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
  31. package/dist/agents/QualityAnalyzerAgent.d.ts +0 -1
  32. package/dist/agents/QualityAnalyzerAgent.d.ts.map +1 -1
  33. package/dist/agents/QualityGateAgent.d.ts +0 -1
  34. package/dist/agents/QualityGateAgent.d.ts.map +1 -1
  35. package/dist/agents/RegressionRiskAnalyzerAgent.js +17 -7
  36. package/dist/agents/RegressionRiskAnalyzerAgent.js.map +1 -1
  37. package/dist/agents/SecurityScannerAgent.d.ts +1 -0
  38. package/dist/agents/SecurityScannerAgent.d.ts.map +1 -1
  39. package/dist/agents/SecurityScannerAgent.js +46 -41
  40. package/dist/agents/SecurityScannerAgent.js.map +1 -1
  41. package/dist/agents/TestExecutorAgent.d.ts +1 -1
  42. package/dist/agents/TestExecutorAgent.d.ts.map +1 -1
  43. package/dist/agents/TestExecutorAgent.js +74 -13
  44. package/dist/agents/TestExecutorAgent.js.map +1 -1
  45. package/dist/agents/index.js +2 -2
  46. package/dist/agents/index.js.map +1 -1
  47. package/dist/cli/commands/agent/assign.d.ts +76 -0
  48. package/dist/cli/commands/agent/assign.d.ts.map +1 -0
  49. package/dist/cli/commands/agent/assign.js +290 -0
  50. package/dist/cli/commands/agent/assign.js.map +1 -0
  51. package/dist/cli/commands/agent/attach.d.ts +86 -0
  52. package/dist/cli/commands/agent/attach.d.ts.map +1 -0
  53. package/dist/cli/commands/agent/attach.js +278 -0
  54. package/dist/cli/commands/agent/attach.js.map +1 -0
  55. package/dist/cli/commands/agent/benchmark.d.ts +45 -0
  56. package/dist/cli/commands/agent/benchmark.d.ts.map +1 -0
  57. package/dist/cli/commands/agent/benchmark.js +102 -0
  58. package/dist/cli/commands/agent/benchmark.js.map +1 -0
  59. package/dist/cli/commands/agent/clone.d.ts +20 -0
  60. package/dist/cli/commands/agent/clone.d.ts.map +1 -0
  61. package/dist/cli/commands/agent/clone.js +58 -0
  62. package/dist/cli/commands/agent/clone.js.map +1 -0
  63. package/dist/cli/commands/agent/detach.d.ts +76 -0
  64. package/dist/cli/commands/agent/detach.d.ts.map +1 -0
  65. package/dist/cli/commands/agent/detach.js +260 -0
  66. package/dist/cli/commands/agent/detach.js.map +1 -0
  67. package/dist/cli/commands/agent/index.d.ts +31 -0
  68. package/dist/cli/commands/agent/index.d.ts.map +1 -0
  69. package/dist/cli/commands/agent/index.js +54 -0
  70. package/dist/cli/commands/agent/index.js.map +1 -0
  71. package/dist/cli/commands/agent/inspect.d.ts +110 -0
  72. package/dist/cli/commands/agent/inspect.d.ts.map +1 -0
  73. package/dist/cli/commands/agent/inspect.js +282 -0
  74. package/dist/cli/commands/agent/inspect.js.map +1 -0
  75. package/dist/cli/commands/agent/migrate.d.ts +24 -0
  76. package/dist/cli/commands/agent/migrate.d.ts.map +1 -0
  77. package/dist/cli/commands/agent/migrate.js +80 -0
  78. package/dist/cli/commands/agent/migrate.js.map +1 -0
  79. package/dist/cli/commands/agent/restart.d.ts +71 -0
  80. package/dist/cli/commands/agent/restart.d.ts.map +1 -0
  81. package/dist/cli/commands/agent/restart.js +237 -0
  82. package/dist/cli/commands/agent/restart.js.map +1 -0
  83. package/dist/cli/commands/analyze.js +17 -7
  84. package/dist/cli/commands/analyze.js.map +1 -1
  85. package/dist/cli/commands/config/export.d.ts +15 -0
  86. package/dist/cli/commands/config/export.d.ts.map +1 -0
  87. package/dist/cli/commands/config/export.js +104 -0
  88. package/dist/cli/commands/config/export.js.map +1 -0
  89. package/dist/cli/commands/config/get.d.ts +23 -0
  90. package/dist/cli/commands/config/get.d.ts.map +1 -0
  91. package/dist/cli/commands/config/get.js +129 -0
  92. package/dist/cli/commands/config/get.js.map +1 -0
  93. package/dist/cli/commands/config/import.d.ts +17 -0
  94. package/dist/cli/commands/config/import.d.ts.map +1 -0
  95. package/dist/cli/commands/config/import.js +148 -0
  96. package/dist/cli/commands/config/import.js.map +1 -0
  97. package/dist/cli/commands/config/index.d.ts +18 -0
  98. package/dist/cli/commands/config/index.d.ts.map +1 -0
  99. package/dist/cli/commands/config/index.js +35 -0
  100. package/dist/cli/commands/config/index.js.map +1 -0
  101. package/dist/cli/commands/config/init.d.ts +21 -0
  102. package/dist/cli/commands/config/init.d.ts.map +1 -0
  103. package/dist/cli/commands/config/init.js +181 -0
  104. package/dist/cli/commands/config/init.js.map +1 -0
  105. package/dist/cli/commands/config/list.d.ts +5 -0
  106. package/dist/cli/commands/config/list.d.ts.map +1 -0
  107. package/dist/cli/commands/config/list.js +39 -0
  108. package/dist/cli/commands/config/list.js.map +1 -0
  109. package/dist/cli/commands/config/reset.d.ts +5 -0
  110. package/dist/cli/commands/config/reset.d.ts.map +1 -0
  111. package/dist/cli/commands/config/reset.js +44 -0
  112. package/dist/cli/commands/config/reset.js.map +1 -0
  113. package/dist/cli/commands/config/schema.d.ts +115 -0
  114. package/dist/cli/commands/config/schema.d.ts.map +1 -0
  115. package/dist/cli/commands/config/schema.js +98 -0
  116. package/dist/cli/commands/config/schema.js.map +1 -0
  117. package/dist/cli/commands/config/set.d.ts +19 -0
  118. package/dist/cli/commands/config/set.d.ts.map +1 -0
  119. package/dist/cli/commands/config/set.js +143 -0
  120. package/dist/cli/commands/config/set.js.map +1 -0
  121. package/dist/cli/commands/config/validate.d.ts +23 -0
  122. package/dist/cli/commands/config/validate.d.ts.map +1 -0
  123. package/dist/cli/commands/config/validate.js +165 -0
  124. package/dist/cli/commands/config/validate.js.map +1 -0
  125. package/dist/cli/commands/debug/agent.d.ts +40 -0
  126. package/dist/cli/commands/debug/agent.d.ts.map +1 -0
  127. package/dist/cli/commands/debug/agent.js +184 -0
  128. package/dist/cli/commands/debug/agent.js.map +1 -0
  129. package/dist/cli/commands/debug/diagnostics.d.ts +27 -0
  130. package/dist/cli/commands/debug/diagnostics.d.ts.map +1 -0
  131. package/dist/cli/commands/debug/diagnostics.js +386 -0
  132. package/dist/cli/commands/debug/diagnostics.js.map +1 -0
  133. package/dist/cli/commands/debug/health-check.d.ts +38 -0
  134. package/dist/cli/commands/debug/health-check.d.ts.map +1 -0
  135. package/dist/cli/commands/debug/health-check.js +326 -0
  136. package/dist/cli/commands/debug/health-check.js.map +1 -0
  137. package/dist/cli/commands/debug/index.d.ts +17 -0
  138. package/dist/cli/commands/debug/index.d.ts.map +1 -0
  139. package/dist/cli/commands/debug/index.js +20 -0
  140. package/dist/cli/commands/debug/index.js.map +1 -0
  141. package/dist/cli/commands/debug/profile.d.ts +84 -0
  142. package/dist/cli/commands/debug/profile.d.ts.map +1 -0
  143. package/dist/cli/commands/debug/profile.js +375 -0
  144. package/dist/cli/commands/debug/profile.js.map +1 -0
  145. package/dist/cli/commands/debug/trace.d.ts +40 -0
  146. package/dist/cli/commands/debug/trace.d.ts.map +1 -0
  147. package/dist/cli/commands/debug/trace.js +252 -0
  148. package/dist/cli/commands/debug/trace.js.map +1 -0
  149. package/dist/cli/commands/debug/troubleshoot.d.ts +38 -0
  150. package/dist/cli/commands/debug/troubleshoot.d.ts.map +1 -0
  151. package/dist/cli/commands/debug/troubleshoot.js +324 -0
  152. package/dist/cli/commands/debug/troubleshoot.js.map +1 -0
  153. package/dist/cli/commands/fleet/backup.d.ts +49 -0
  154. package/dist/cli/commands/fleet/backup.d.ts.map +1 -0
  155. package/dist/cli/commands/fleet/backup.js +88 -0
  156. package/dist/cli/commands/fleet/backup.js.map +1 -0
  157. package/dist/cli/commands/fleet/health.d.ts +24 -0
  158. package/dist/cli/commands/fleet/health.d.ts.map +1 -0
  159. package/dist/cli/commands/fleet/health.js +417 -0
  160. package/dist/cli/commands/fleet/health.js.map +1 -0
  161. package/dist/cli/commands/fleet/init.d.ts +11 -0
  162. package/dist/cli/commands/fleet/init.d.ts.map +1 -0
  163. package/dist/cli/commands/fleet/init.js +91 -0
  164. package/dist/cli/commands/fleet/init.js.map +1 -0
  165. package/dist/cli/commands/fleet/logs.d.ts +21 -0
  166. package/dist/cli/commands/fleet/logs.d.ts.map +1 -0
  167. package/dist/cli/commands/fleet/logs.js +266 -0
  168. package/dist/cli/commands/fleet/logs.js.map +1 -0
  169. package/dist/cli/commands/fleet/metrics.d.ts +27 -0
  170. package/dist/cli/commands/fleet/metrics.d.ts.map +1 -0
  171. package/dist/cli/commands/fleet/metrics.js +368 -0
  172. package/dist/cli/commands/fleet/metrics.js.map +1 -0
  173. package/dist/cli/commands/fleet/monitor.d.ts +18 -0
  174. package/dist/cli/commands/fleet/monitor.d.ts.map +1 -0
  175. package/dist/cli/commands/fleet/monitor.js +234 -0
  176. package/dist/cli/commands/fleet/monitor.js.map +1 -0
  177. package/dist/cli/commands/fleet/optimize.d.ts +42 -0
  178. package/dist/cli/commands/fleet/optimize.d.ts.map +1 -0
  179. package/dist/cli/commands/fleet/optimize.js +135 -0
  180. package/dist/cli/commands/fleet/optimize.js.map +1 -0
  181. package/dist/cli/commands/fleet/recover.d.ts +22 -0
  182. package/dist/cli/commands/fleet/recover.d.ts.map +1 -0
  183. package/dist/cli/commands/fleet/recover.js +99 -0
  184. package/dist/cli/commands/fleet/recover.js.map +1 -0
  185. package/dist/cli/commands/fleet/restart.d.ts +18 -0
  186. package/dist/cli/commands/fleet/restart.d.ts.map +1 -0
  187. package/dist/cli/commands/fleet/restart.js +290 -0
  188. package/dist/cli/commands/fleet/restart.js.map +1 -0
  189. package/dist/cli/commands/fleet/scale.d.ts +9 -0
  190. package/dist/cli/commands/fleet/scale.d.ts.map +1 -0
  191. package/dist/cli/commands/fleet/scale.js +77 -0
  192. package/dist/cli/commands/fleet/scale.js.map +1 -0
  193. package/dist/cli/commands/fleet/shutdown.d.ts +19 -0
  194. package/dist/cli/commands/fleet/shutdown.d.ts.map +1 -0
  195. package/dist/cli/commands/fleet/shutdown.js +307 -0
  196. package/dist/cli/commands/fleet/shutdown.js.map +1 -0
  197. package/dist/cli/commands/fleet/status.d.ts +10 -0
  198. package/dist/cli/commands/fleet/status.d.ts.map +1 -0
  199. package/dist/cli/commands/fleet/status.js +97 -0
  200. package/dist/cli/commands/fleet/status.js.map +1 -0
  201. package/dist/cli/commands/fleet/topology.d.ts +23 -0
  202. package/dist/cli/commands/fleet/topology.d.ts.map +1 -0
  203. package/dist/cli/commands/fleet/topology.js +375 -0
  204. package/dist/cli/commands/fleet/topology.js.map +1 -0
  205. package/dist/cli/commands/fleet.d.ts +0 -1
  206. package/dist/cli/commands/fleet.d.ts.map +1 -1
  207. package/dist/cli/commands/fleet.js +35 -58
  208. package/dist/cli/commands/fleet.js.map +1 -1
  209. package/dist/cli/commands/generate.js +17 -7
  210. package/dist/cli/commands/generate.js.map +1 -1
  211. package/dist/cli/commands/init.d.ts.map +1 -1
  212. package/dist/cli/commands/init.js +194 -64
  213. package/dist/cli/commands/init.js.map +1 -1
  214. package/dist/cli/commands/memory/compact.d.ts +19 -0
  215. package/dist/cli/commands/memory/compact.d.ts.map +1 -0
  216. package/dist/cli/commands/memory/compact.js +69 -0
  217. package/dist/cli/commands/memory/compact.js.map +1 -0
  218. package/dist/cli/commands/memory/index.d.ts +9 -0
  219. package/dist/cli/commands/memory/index.d.ts.map +1 -0
  220. package/dist/cli/commands/memory/index.js +24 -0
  221. package/dist/cli/commands/memory/index.js.map +1 -0
  222. package/dist/cli/commands/memory/stats.d.ts +30 -0
  223. package/dist/cli/commands/memory/stats.d.ts.map +1 -0
  224. package/dist/cli/commands/memory/stats.js +73 -0
  225. package/dist/cli/commands/memory/stats.js.map +1 -0
  226. package/dist/cli/commands/memory/vacuum.d.ts +24 -0
  227. package/dist/cli/commands/memory/vacuum.d.ts.map +1 -0
  228. package/dist/cli/commands/memory/vacuum.js +104 -0
  229. package/dist/cli/commands/memory/vacuum.js.map +1 -0
  230. package/dist/cli/commands/monitor/alerts.d.ts +45 -0
  231. package/dist/cli/commands/monitor/alerts.d.ts.map +1 -0
  232. package/dist/cli/commands/monitor/alerts.js +167 -0
  233. package/dist/cli/commands/monitor/alerts.js.map +1 -0
  234. package/dist/cli/commands/monitor/analyze.d.ts +49 -0
  235. package/dist/cli/commands/monitor/analyze.d.ts.map +1 -0
  236. package/dist/cli/commands/monitor/analyze.js +209 -0
  237. package/dist/cli/commands/monitor/analyze.js.map +1 -0
  238. package/dist/cli/commands/monitor/compare.d.ts +38 -0
  239. package/dist/cli/commands/monitor/compare.d.ts.map +1 -0
  240. package/dist/cli/commands/monitor/compare.js +177 -0
  241. package/dist/cli/commands/monitor/compare.js.map +1 -0
  242. package/dist/cli/commands/monitor/dashboard.d.ts +34 -0
  243. package/dist/cli/commands/monitor/dashboard.d.ts.map +1 -0
  244. package/dist/cli/commands/monitor/dashboard.js +157 -0
  245. package/dist/cli/commands/monitor/dashboard.js.map +1 -0
  246. package/dist/cli/commands/monitor/export.d.ts +36 -0
  247. package/dist/cli/commands/monitor/export.d.ts.map +1 -0
  248. package/dist/cli/commands/monitor/export.js +157 -0
  249. package/dist/cli/commands/monitor/export.js.map +1 -0
  250. package/dist/cli/commands/monitor/index.d.ts +11 -0
  251. package/dist/cli/commands/monitor/index.d.ts.map +1 -0
  252. package/dist/cli/commands/monitor/index.js +14 -0
  253. package/dist/cli/commands/monitor/index.js.map +1 -0
  254. package/dist/cli/commands/quality/baseline.d.ts +27 -0
  255. package/dist/cli/commands/quality/baseline.d.ts.map +1 -0
  256. package/dist/cli/commands/quality/baseline.js +124 -0
  257. package/dist/cli/commands/quality/baseline.js.map +1 -0
  258. package/dist/cli/commands/quality/compare.d.ts +36 -0
  259. package/dist/cli/commands/quality/compare.d.ts.map +1 -0
  260. package/dist/cli/commands/quality/compare.js +136 -0
  261. package/dist/cli/commands/quality/compare.js.map +1 -0
  262. package/dist/cli/commands/quality/decision.d.ts +81 -0
  263. package/dist/cli/commands/quality/decision.d.ts.map +1 -0
  264. package/dist/cli/commands/quality/decision.js +317 -0
  265. package/dist/cli/commands/quality/decision.js.map +1 -0
  266. package/dist/cli/commands/quality/gate.d.ts +47 -0
  267. package/dist/cli/commands/quality/gate.d.ts.map +1 -0
  268. package/dist/cli/commands/quality/gate.js +203 -0
  269. package/dist/cli/commands/quality/gate.js.map +1 -0
  270. package/dist/cli/commands/quality/index.d.ts +17 -0
  271. package/dist/cli/commands/quality/index.d.ts.map +1 -0
  272. package/dist/cli/commands/quality/index.js +41 -0
  273. package/dist/cli/commands/quality/index.js.map +1 -0
  274. package/dist/cli/commands/quality/policy.d.ts +57 -0
  275. package/dist/cli/commands/quality/policy.d.ts.map +1 -0
  276. package/dist/cli/commands/quality/policy.js +357 -0
  277. package/dist/cli/commands/quality/policy.js.map +1 -0
  278. package/dist/cli/commands/quality/risk.d.ts +41 -0
  279. package/dist/cli/commands/quality/risk.d.ts.map +1 -0
  280. package/dist/cli/commands/quality/risk.js +253 -0
  281. package/dist/cli/commands/quality/risk.js.map +1 -0
  282. package/dist/cli/commands/quality/trends.d.ts +40 -0
  283. package/dist/cli/commands/quality/trends.d.ts.map +1 -0
  284. package/dist/cli/commands/quality/trends.js +122 -0
  285. package/dist/cli/commands/quality/trends.js.map +1 -0
  286. package/dist/cli/commands/quality/validate.d.ts +44 -0
  287. package/dist/cli/commands/quality/validate.d.ts.map +1 -0
  288. package/dist/cli/commands/quality/validate.js +232 -0
  289. package/dist/cli/commands/quality/validate.js.map +1 -0
  290. package/dist/cli/commands/run.js +17 -7
  291. package/dist/cli/commands/run.js.map +1 -1
  292. package/dist/cli/commands/test/analyze-failures.d.ts +39 -0
  293. package/dist/cli/commands/test/analyze-failures.d.ts.map +1 -0
  294. package/dist/cli/commands/test/analyze-failures.js +113 -0
  295. package/dist/cli/commands/test/analyze-failures.js.map +1 -0
  296. package/dist/cli/commands/test/clean.d.ts +3 -0
  297. package/dist/cli/commands/test/clean.d.ts.map +1 -0
  298. package/dist/cli/commands/test/clean.js +131 -0
  299. package/dist/cli/commands/test/clean.js.map +1 -0
  300. package/dist/cli/commands/test/debug.d.ts +3 -0
  301. package/dist/cli/commands/test/debug.d.ts.map +1 -0
  302. package/dist/cli/commands/test/debug.js +167 -0
  303. package/dist/cli/commands/test/debug.js.map +1 -0
  304. package/dist/cli/commands/test/diff.d.ts +3 -0
  305. package/dist/cli/commands/test/diff.d.ts.map +1 -0
  306. package/dist/cli/commands/test/diff.js +228 -0
  307. package/dist/cli/commands/test/diff.js.map +1 -0
  308. package/dist/cli/commands/test/flakiness.d.ts +32 -0
  309. package/dist/cli/commands/test/flakiness.d.ts.map +1 -0
  310. package/dist/cli/commands/test/flakiness.js +121 -0
  311. package/dist/cli/commands/test/flakiness.js.map +1 -0
  312. package/dist/cli/commands/test/index.d.ts +17 -0
  313. package/dist/cli/commands/test/index.d.ts.map +1 -0
  314. package/dist/cli/commands/test/index.js +45 -0
  315. package/dist/cli/commands/test/index.js.map +1 -0
  316. package/dist/cli/commands/test/mutate.d.ts +29 -0
  317. package/dist/cli/commands/test/mutate.d.ts.map +1 -0
  318. package/dist/cli/commands/test/mutate.js +162 -0
  319. package/dist/cli/commands/test/mutate.js.map +1 -0
  320. package/dist/cli/commands/test/parallel.d.ts +3 -0
  321. package/dist/cli/commands/test/parallel.d.ts.map +1 -0
  322. package/dist/cli/commands/test/parallel.js +115 -0
  323. package/dist/cli/commands/test/parallel.js.map +1 -0
  324. package/dist/cli/commands/test/profile.d.ts +3 -0
  325. package/dist/cli/commands/test/profile.d.ts.map +1 -0
  326. package/dist/cli/commands/test/profile.js +188 -0
  327. package/dist/cli/commands/test/profile.js.map +1 -0
  328. package/dist/cli/commands/test/queue.d.ts +3 -0
  329. package/dist/cli/commands/test/queue.d.ts.map +1 -0
  330. package/dist/cli/commands/test/queue.js +139 -0
  331. package/dist/cli/commands/test/queue.js.map +1 -0
  332. package/dist/cli/commands/test/retry.d.ts +3 -0
  333. package/dist/cli/commands/test/retry.d.ts.map +1 -0
  334. package/dist/cli/commands/test/retry.js +103 -0
  335. package/dist/cli/commands/test/retry.js.map +1 -0
  336. package/dist/cli/commands/test/snapshot.d.ts +3 -0
  337. package/dist/cli/commands/test/snapshot.d.ts.map +1 -0
  338. package/dist/cli/commands/test/snapshot.js +176 -0
  339. package/dist/cli/commands/test/snapshot.js.map +1 -0
  340. package/dist/cli/commands/test/trace.d.ts +3 -0
  341. package/dist/cli/commands/test/trace.d.ts.map +1 -0
  342. package/dist/cli/commands/test/trace.js +169 -0
  343. package/dist/cli/commands/test/trace.js.map +1 -0
  344. package/dist/cli/commands/test/watch.d.ts +3 -0
  345. package/dist/cli/commands/test/watch.d.ts.map +1 -0
  346. package/dist/cli/commands/test/watch.js +129 -0
  347. package/dist/cli/commands/test/watch.js.map +1 -0
  348. package/dist/cli/commands/workflow/cancel.d.ts +55 -0
  349. package/dist/cli/commands/workflow/cancel.d.ts.map +1 -0
  350. package/dist/cli/commands/workflow/cancel.js +330 -0
  351. package/dist/cli/commands/workflow/cancel.js.map +1 -0
  352. package/dist/cli/commands/workflow/index.d.ts +11 -0
  353. package/dist/cli/commands/workflow/index.d.ts.map +1 -0
  354. package/dist/cli/commands/workflow/index.js +20 -0
  355. package/dist/cli/commands/workflow/index.js.map +1 -0
  356. package/dist/cli/commands/workflow/list.d.ts +43 -0
  357. package/dist/cli/commands/workflow/list.d.ts.map +1 -0
  358. package/dist/cli/commands/workflow/list.js +256 -0
  359. package/dist/cli/commands/workflow/list.js.map +1 -0
  360. package/dist/cli/commands/workflow/pause.d.ts +44 -0
  361. package/dist/cli/commands/workflow/pause.d.ts.map +1 -0
  362. package/dist/cli/commands/workflow/pause.js +221 -0
  363. package/dist/cli/commands/workflow/pause.js.map +1 -0
  364. package/dist/cli/index-working.js +17 -7
  365. package/dist/cli/index-working.js.map +1 -1
  366. package/dist/cli/index.js +321 -0
  367. package/dist/cli/index.js.map +1 -1
  368. package/dist/core/Agent.d.ts +0 -1
  369. package/dist/core/Agent.d.ts.map +1 -1
  370. package/dist/core/Agent.js +18 -8
  371. package/dist/core/Agent.js.map +1 -1
  372. package/dist/core/ArtifactWorkflow.d.ts +149 -0
  373. package/dist/core/ArtifactWorkflow.d.ts.map +1 -0
  374. package/dist/core/ArtifactWorkflow.js +357 -0
  375. package/dist/core/ArtifactWorkflow.js.map +1 -0
  376. package/dist/core/EventBus.d.ts +0 -1
  377. package/dist/core/EventBus.d.ts.map +1 -1
  378. package/dist/core/EventBus.js +18 -12
  379. package/dist/core/EventBus.js.map +1 -1
  380. package/dist/core/FleetManager.d.ts +0 -1
  381. package/dist/core/FleetManager.d.ts.map +1 -1
  382. package/dist/core/FleetManager.js +17 -7
  383. package/dist/core/FleetManager.js.map +1 -1
  384. package/dist/core/MemoryManager.d.ts +0 -1
  385. package/dist/core/MemoryManager.d.ts.map +1 -1
  386. package/dist/core/Task.d.ts +0 -1
  387. package/dist/core/Task.d.ts.map +1 -1
  388. package/dist/core/coordination/BlackboardCoordination.d.ts +43 -0
  389. package/dist/core/coordination/BlackboardCoordination.d.ts.map +1 -0
  390. package/dist/core/coordination/BlackboardCoordination.js +95 -0
  391. package/dist/core/coordination/BlackboardCoordination.js.map +1 -0
  392. package/dist/core/coordination/ConsensusGating.d.ts +52 -0
  393. package/dist/core/coordination/ConsensusGating.d.ts.map +1 -0
  394. package/dist/core/coordination/ConsensusGating.js +137 -0
  395. package/dist/core/coordination/ConsensusGating.js.map +1 -0
  396. package/dist/core/coordination/GOAPCoordination.d.ts +78 -0
  397. package/dist/core/coordination/GOAPCoordination.d.ts.map +1 -0
  398. package/dist/core/coordination/GOAPCoordination.js +178 -0
  399. package/dist/core/coordination/GOAPCoordination.js.map +1 -0
  400. package/dist/core/coordination/OODACoordination.d.ts +98 -0
  401. package/dist/core/coordination/OODACoordination.d.ts.map +1 -0
  402. package/dist/core/coordination/OODACoordination.js +207 -0
  403. package/dist/core/coordination/OODACoordination.js.map +1 -0
  404. package/dist/core/coordination/index.d.ts +19 -0
  405. package/dist/core/coordination/index.d.ts.map +1 -0
  406. package/dist/core/coordination/index.js +22 -0
  407. package/dist/core/coordination/index.js.map +1 -0
  408. package/dist/core/events/QEEventBus.d.ts +61 -0
  409. package/dist/core/events/QEEventBus.d.ts.map +1 -0
  410. package/dist/core/events/QEEventBus.js +109 -0
  411. package/dist/core/events/QEEventBus.js.map +1 -0
  412. package/dist/core/events/index.d.ts +7 -0
  413. package/dist/core/events/index.d.ts.map +1 -0
  414. package/dist/core/events/index.js +25 -0
  415. package/dist/core/events/index.js.map +1 -0
  416. package/dist/core/events/types.d.ts +72 -0
  417. package/dist/core/events/types.d.ts.map +1 -0
  418. package/dist/core/events/types.js +6 -0
  419. package/dist/core/events/types.js.map +1 -0
  420. package/dist/core/hooks/RollbackManager.d.ts +90 -0
  421. package/dist/core/hooks/RollbackManager.d.ts.map +1 -0
  422. package/dist/core/hooks/RollbackManager.js +224 -0
  423. package/dist/core/hooks/RollbackManager.js.map +1 -0
  424. package/dist/core/hooks/VerificationHookManager.d.ts +133 -0
  425. package/dist/core/hooks/VerificationHookManager.d.ts.map +1 -0
  426. package/dist/core/hooks/VerificationHookManager.js +293 -0
  427. package/dist/core/hooks/VerificationHookManager.js.map +1 -0
  428. package/dist/core/hooks/checkers/ConfigurationChecker.d.ts +31 -0
  429. package/dist/core/hooks/checkers/ConfigurationChecker.d.ts.map +1 -0
  430. package/dist/core/hooks/checkers/ConfigurationChecker.js +98 -0
  431. package/dist/core/hooks/checkers/ConfigurationChecker.js.map +1 -0
  432. package/dist/core/hooks/checkers/EnvironmentChecker.d.ts +23 -0
  433. package/dist/core/hooks/checkers/EnvironmentChecker.d.ts.map +1 -0
  434. package/dist/core/hooks/checkers/EnvironmentChecker.js +103 -0
  435. package/dist/core/hooks/checkers/EnvironmentChecker.js.map +1 -0
  436. package/dist/core/hooks/checkers/PermissionChecker.d.ts +26 -0
  437. package/dist/core/hooks/checkers/PermissionChecker.d.ts.map +1 -0
  438. package/dist/core/hooks/checkers/PermissionChecker.js +146 -0
  439. package/dist/core/hooks/checkers/PermissionChecker.js.map +1 -0
  440. package/dist/core/hooks/checkers/ResourceChecker.d.ts +24 -0
  441. package/dist/core/hooks/checkers/ResourceChecker.d.ts.map +1 -0
  442. package/dist/core/hooks/checkers/ResourceChecker.js +107 -0
  443. package/dist/core/hooks/checkers/ResourceChecker.js.map +1 -0
  444. package/dist/core/hooks/checkers/index.d.ts +12 -0
  445. package/dist/core/hooks/checkers/index.d.ts.map +1 -0
  446. package/dist/core/hooks/checkers/index.js +15 -0
  447. package/dist/core/hooks/checkers/index.js.map +1 -0
  448. package/dist/core/hooks/index.d.ts +16 -0
  449. package/dist/core/hooks/index.d.ts.map +1 -0
  450. package/dist/core/hooks/index.js +34 -0
  451. package/dist/core/hooks/index.js.map +1 -0
  452. package/dist/core/hooks/validators/CoverageValidator.d.ts +38 -0
  453. package/dist/core/hooks/validators/CoverageValidator.d.ts.map +1 -0
  454. package/dist/core/hooks/validators/CoverageValidator.js +68 -0
  455. package/dist/core/hooks/validators/CoverageValidator.js.map +1 -0
  456. package/dist/core/hooks/validators/OutputValidator.d.ts +19 -0
  457. package/dist/core/hooks/validators/OutputValidator.d.ts.map +1 -0
  458. package/dist/core/hooks/validators/OutputValidator.js +57 -0
  459. package/dist/core/hooks/validators/OutputValidator.js.map +1 -0
  460. package/dist/core/hooks/validators/PerformanceValidator.d.ts +39 -0
  461. package/dist/core/hooks/validators/PerformanceValidator.d.ts.map +1 -0
  462. package/dist/core/hooks/validators/PerformanceValidator.js +97 -0
  463. package/dist/core/hooks/validators/PerformanceValidator.js.map +1 -0
  464. package/dist/core/hooks/validators/QualityValidator.d.ts +32 -0
  465. package/dist/core/hooks/validators/QualityValidator.d.ts.map +1 -0
  466. package/dist/core/hooks/validators/QualityValidator.js +71 -0
  467. package/dist/core/hooks/validators/QualityValidator.js.map +1 -0
  468. package/dist/core/hooks/validators/index.d.ts +12 -0
  469. package/dist/core/hooks/validators/index.d.ts.map +1 -0
  470. package/dist/core/hooks/validators/index.js +15 -0
  471. package/dist/core/hooks/validators/index.js.map +1 -0
  472. package/dist/core/index.d.ts +2 -0
  473. package/dist/core/index.d.ts.map +1 -1
  474. package/dist/core/index.js +3 -1
  475. package/dist/core/index.js.map +1 -1
  476. package/dist/core/memory/AccessControl.d.ts +139 -0
  477. package/dist/core/memory/AccessControl.d.ts.map +1 -0
  478. package/dist/core/memory/AccessControl.js +269 -0
  479. package/dist/core/memory/AccessControl.js.map +1 -0
  480. package/dist/core/memory/CompressionManager.d.ts +85 -0
  481. package/dist/core/memory/CompressionManager.d.ts.map +1 -0
  482. package/dist/core/memory/CompressionManager.js +237 -0
  483. package/dist/core/memory/CompressionManager.js.map +1 -0
  484. package/dist/core/memory/EncryptionManager.d.ts +86 -0
  485. package/dist/core/memory/EncryptionManager.d.ts.map +1 -0
  486. package/dist/core/memory/EncryptionManager.js +223 -0
  487. package/dist/core/memory/EncryptionManager.js.map +1 -0
  488. package/dist/core/memory/EnhancedSwarmMemoryManager.d.ts +91 -0
  489. package/dist/core/memory/EnhancedSwarmMemoryManager.d.ts.map +1 -0
  490. package/dist/core/memory/EnhancedSwarmMemoryManager.js +226 -0
  491. package/dist/core/memory/EnhancedSwarmMemoryManager.js.map +1 -0
  492. package/dist/core/memory/SwarmMemoryManager.d.ts +295 -0
  493. package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -0
  494. package/dist/core/memory/SwarmMemoryManager.js +1417 -0
  495. package/dist/core/memory/SwarmMemoryManager.js.map +1 -0
  496. package/dist/core/memory/VersionHistory.d.ts +88 -0
  497. package/dist/core/memory/VersionHistory.d.ts.map +1 -0
  498. package/dist/core/memory/VersionHistory.js +249 -0
  499. package/dist/core/memory/VersionHistory.js.map +1 -0
  500. package/dist/core/memory/index.d.ts +11 -0
  501. package/dist/core/memory/index.d.ts.map +1 -0
  502. package/dist/core/memory/index.js +18 -0
  503. package/dist/core/memory/index.js.map +1 -0
  504. package/dist/coverage/coverage-collector.d.ts +63 -8
  505. package/dist/coverage/coverage-collector.d.ts.map +1 -1
  506. package/dist/coverage/coverage-collector.js +364 -14
  507. package/dist/coverage/coverage-collector.js.map +1 -1
  508. package/dist/coverage/coverage-reporter.d.ts +48 -11
  509. package/dist/coverage/coverage-reporter.d.ts.map +1 -1
  510. package/dist/coverage/coverage-reporter.js +434 -14
  511. package/dist/coverage/coverage-reporter.js.map +1 -1
  512. package/dist/mcp/handlers/advanced/api-breaking-changes.d.ts +7 -0
  513. package/dist/mcp/handlers/advanced/api-breaking-changes.d.ts.map +1 -0
  514. package/dist/mcp/handlers/advanced/api-breaking-changes.js +216 -0
  515. package/dist/mcp/handlers/advanced/api-breaking-changes.js.map +1 -0
  516. package/dist/mcp/handlers/advanced/index.d.ts +10 -0
  517. package/dist/mcp/handlers/advanced/index.d.ts.map +1 -0
  518. package/dist/mcp/handlers/advanced/index.js +19 -0
  519. package/dist/mcp/handlers/advanced/index.js.map +1 -0
  520. package/dist/mcp/handlers/advanced/mutation-test-execute.d.ts +7 -0
  521. package/dist/mcp/handlers/advanced/mutation-test-execute.d.ts.map +1 -0
  522. package/dist/mcp/handlers/advanced/mutation-test-execute.js +229 -0
  523. package/dist/mcp/handlers/advanced/mutation-test-execute.js.map +1 -0
  524. package/dist/mcp/handlers/advanced/production-incident-replay.d.ts +7 -0
  525. package/dist/mcp/handlers/advanced/production-incident-replay.d.ts.map +1 -0
  526. package/dist/mcp/handlers/advanced/production-incident-replay.js +227 -0
  527. package/dist/mcp/handlers/advanced/production-incident-replay.js.map +1 -0
  528. package/dist/mcp/handlers/advanced/production-rum-analyze.d.ts +7 -0
  529. package/dist/mcp/handlers/advanced/production-rum-analyze.d.ts.map +1 -0
  530. package/dist/mcp/handlers/advanced/production-rum-analyze.js +288 -0
  531. package/dist/mcp/handlers/advanced/production-rum-analyze.js.map +1 -0
  532. package/dist/mcp/handlers/advanced/requirements-generate-bdd.d.ts +7 -0
  533. package/dist/mcp/handlers/advanced/requirements-generate-bdd.d.ts.map +1 -0
  534. package/dist/mcp/handlers/advanced/requirements-generate-bdd.js +267 -0
  535. package/dist/mcp/handlers/advanced/requirements-generate-bdd.js.map +1 -0
  536. package/dist/mcp/handlers/advanced/requirements-validate.d.ts +7 -0
  537. package/dist/mcp/handlers/advanced/requirements-validate.d.ts.map +1 -0
  538. package/dist/mcp/handlers/advanced/requirements-validate.js +175 -0
  539. package/dist/mcp/handlers/advanced/requirements-validate.js.map +1 -0
  540. package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.d.ts +10 -0
  541. package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.d.ts.map +1 -0
  542. package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.js +31 -0
  543. package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.js.map +1 -0
  544. package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.d.ts +14 -0
  545. package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.d.ts.map +1 -0
  546. package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.js +55 -0
  547. package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.js.map +1 -0
  548. package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.d.ts +35 -0
  549. package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.d.ts.map +1 -0
  550. package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.js +162 -0
  551. package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.js.map +1 -0
  552. package/dist/mcp/handlers/analysis/coverageGapsDetect.d.ts +56 -0
  553. package/dist/mcp/handlers/analysis/coverageGapsDetect.d.ts.map +1 -0
  554. package/dist/mcp/handlers/analysis/coverageGapsDetect.js +203 -0
  555. package/dist/mcp/handlers/analysis/coverageGapsDetect.js.map +1 -0
  556. package/dist/mcp/handlers/analysis/index.d.ts +15 -0
  557. package/dist/mcp/handlers/analysis/index.d.ts.map +1 -0
  558. package/dist/mcp/handlers/analysis/index.js +18 -0
  559. package/dist/mcp/handlers/analysis/index.js.map +1 -0
  560. package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.d.ts +15 -0
  561. package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.d.ts.map +1 -0
  562. package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.js +47 -0
  563. package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.js.map +1 -0
  564. package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.d.ts +15 -0
  565. package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.d.ts.map +1 -0
  566. package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.js +55 -0
  567. package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.js.map +1 -0
  568. package/dist/mcp/handlers/analysis/performanceBenchmarkRun.d.ts +58 -0
  569. package/dist/mcp/handlers/analysis/performanceBenchmarkRun.d.ts.map +1 -0
  570. package/dist/mcp/handlers/analysis/performanceBenchmarkRun.js +187 -0
  571. package/dist/mcp/handlers/analysis/performanceBenchmarkRun.js.map +1 -0
  572. package/dist/mcp/handlers/analysis/performanceMonitorRealtime.d.ts +58 -0
  573. package/dist/mcp/handlers/analysis/performanceMonitorRealtime.d.ts.map +1 -0
  574. package/dist/mcp/handlers/analysis/performanceMonitorRealtime.js +184 -0
  575. package/dist/mcp/handlers/analysis/performanceMonitorRealtime.js.map +1 -0
  576. package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.d.ts +15 -0
  577. package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.d.ts.map +1 -0
  578. package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.js +70 -0
  579. package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.js.map +1 -0
  580. package/dist/mcp/handlers/analysis/securityScanComprehensive.d.ts +66 -0
  581. package/dist/mcp/handlers/analysis/securityScanComprehensive.d.ts.map +1 -0
  582. package/dist/mcp/handlers/analysis/securityScanComprehensive.js +299 -0
  583. package/dist/mcp/handlers/analysis/securityScanComprehensive.js.map +1 -0
  584. package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts +18 -0
  585. package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts.map +1 -0
  586. package/dist/mcp/handlers/chaos/chaos-inject-failure.js +277 -0
  587. package/dist/mcp/handlers/chaos/chaos-inject-failure.js.map +1 -0
  588. package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts +18 -0
  589. package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts.map +1 -0
  590. package/dist/mcp/handlers/chaos/chaos-inject-latency.js +214 -0
  591. package/dist/mcp/handlers/chaos/chaos-inject-latency.js.map +1 -0
  592. package/dist/mcp/handlers/chaos/chaos-resilience-test.d.ts +18 -0
  593. package/dist/mcp/handlers/chaos/chaos-resilience-test.d.ts.map +1 -0
  594. package/dist/mcp/handlers/chaos/chaos-resilience-test.js +429 -0
  595. package/dist/mcp/handlers/chaos/chaos-resilience-test.js.map +1 -0
  596. package/dist/mcp/handlers/chaos/index.d.ts +8 -0
  597. package/dist/mcp/handlers/chaos/index.d.ts.map +1 -0
  598. package/dist/mcp/handlers/chaos/index.js +19 -0
  599. package/dist/mcp/handlers/chaos/index.js.map +1 -0
  600. package/dist/mcp/handlers/coordination/event-emit.d.ts +47 -0
  601. package/dist/mcp/handlers/coordination/event-emit.d.ts.map +1 -0
  602. package/dist/mcp/handlers/coordination/event-emit.js +96 -0
  603. package/dist/mcp/handlers/coordination/event-emit.js.map +1 -0
  604. package/dist/mcp/handlers/coordination/event-subscribe.d.ts +49 -0
  605. package/dist/mcp/handlers/coordination/event-subscribe.d.ts.map +1 -0
  606. package/dist/mcp/handlers/coordination/event-subscribe.js +210 -0
  607. package/dist/mcp/handlers/coordination/event-subscribe.js.map +1 -0
  608. package/dist/mcp/handlers/coordination/index.d.ts +22 -0
  609. package/dist/mcp/handlers/coordination/index.d.ts.map +1 -0
  610. package/dist/mcp/handlers/coordination/index.js +25 -0
  611. package/dist/mcp/handlers/coordination/index.js.map +1 -0
  612. package/dist/mcp/handlers/coordination/task-status.d.ts +75 -0
  613. package/dist/mcp/handlers/coordination/task-status.d.ts.map +1 -0
  614. package/dist/mcp/handlers/coordination/task-status.js +134 -0
  615. package/dist/mcp/handlers/coordination/task-status.js.map +1 -0
  616. package/dist/mcp/handlers/coordination/workflow-checkpoint.d.ts +45 -0
  617. package/dist/mcp/handlers/coordination/workflow-checkpoint.d.ts.map +1 -0
  618. package/dist/mcp/handlers/coordination/workflow-checkpoint.js +114 -0
  619. package/dist/mcp/handlers/coordination/workflow-checkpoint.js.map +1 -0
  620. package/dist/mcp/handlers/coordination/workflow-create.d.ts +71 -0
  621. package/dist/mcp/handlers/coordination/workflow-create.d.ts.map +1 -0
  622. package/dist/mcp/handlers/coordination/workflow-create.js +163 -0
  623. package/dist/mcp/handlers/coordination/workflow-create.js.map +1 -0
  624. package/dist/mcp/handlers/coordination/workflow-execute.d.ts +61 -0
  625. package/dist/mcp/handlers/coordination/workflow-execute.d.ts.map +1 -0
  626. package/dist/mcp/handlers/coordination/workflow-execute.js +160 -0
  627. package/dist/mcp/handlers/coordination/workflow-execute.js.map +1 -0
  628. package/dist/mcp/handlers/coordination/workflow-resume.d.ts +49 -0
  629. package/dist/mcp/handlers/coordination/workflow-resume.d.ts.map +1 -0
  630. package/dist/mcp/handlers/coordination/workflow-resume.js +124 -0
  631. package/dist/mcp/handlers/coordination/workflow-resume.js.map +1 -0
  632. package/dist/mcp/handlers/integration/contract-validate.d.ts +10 -0
  633. package/dist/mcp/handlers/integration/contract-validate.d.ts.map +1 -0
  634. package/dist/mcp/handlers/integration/contract-validate.js +348 -0
  635. package/dist/mcp/handlers/integration/contract-validate.js.map +1 -0
  636. package/dist/mcp/handlers/integration/dependency-check.d.ts +10 -0
  637. package/dist/mcp/handlers/integration/dependency-check.d.ts.map +1 -0
  638. package/dist/mcp/handlers/integration/dependency-check.js +252 -0
  639. package/dist/mcp/handlers/integration/dependency-check.js.map +1 -0
  640. package/dist/mcp/handlers/integration/index.d.ts +9 -0
  641. package/dist/mcp/handlers/integration/index.d.ts.map +1 -0
  642. package/dist/mcp/handlers/integration/index.js +14 -0
  643. package/dist/mcp/handlers/integration/index.js.map +1 -0
  644. package/dist/mcp/handlers/integration/integration-test-orchestrate.d.ts +10 -0
  645. package/dist/mcp/handlers/integration/integration-test-orchestrate.d.ts.map +1 -0
  646. package/dist/mcp/handlers/integration/integration-test-orchestrate.js +241 -0
  647. package/dist/mcp/handlers/integration/integration-test-orchestrate.js.map +1 -0
  648. package/dist/mcp/handlers/memory/artifact-manifest.d.ts +57 -0
  649. package/dist/mcp/handlers/memory/artifact-manifest.d.ts.map +1 -0
  650. package/dist/mcp/handlers/memory/artifact-manifest.js +176 -0
  651. package/dist/mcp/handlers/memory/artifact-manifest.js.map +1 -0
  652. package/dist/mcp/handlers/memory/blackboard-post.d.ts +50 -0
  653. package/dist/mcp/handlers/memory/blackboard-post.d.ts.map +1 -0
  654. package/dist/mcp/handlers/memory/blackboard-post.js +88 -0
  655. package/dist/mcp/handlers/memory/blackboard-post.js.map +1 -0
  656. package/dist/mcp/handlers/memory/blackboard-read.d.ts +33 -0
  657. package/dist/mcp/handlers/memory/blackboard-read.d.ts.map +1 -0
  658. package/dist/mcp/handlers/memory/blackboard-read.js +81 -0
  659. package/dist/mcp/handlers/memory/blackboard-read.js.map +1 -0
  660. package/dist/mcp/handlers/memory/consensus-propose.d.ts +57 -0
  661. package/dist/mcp/handlers/memory/consensus-propose.d.ts.map +1 -0
  662. package/dist/mcp/handlers/memory/consensus-propose.js +99 -0
  663. package/dist/mcp/handlers/memory/consensus-propose.js.map +1 -0
  664. package/dist/mcp/handlers/memory/consensus-vote.d.ts +37 -0
  665. package/dist/mcp/handlers/memory/consensus-vote.d.ts.map +1 -0
  666. package/dist/mcp/handlers/memory/consensus-vote.js +131 -0
  667. package/dist/mcp/handlers/memory/consensus-vote.js.map +1 -0
  668. package/dist/mcp/handlers/memory/memory-backup.d.ts +49 -0
  669. package/dist/mcp/handlers/memory/memory-backup.d.ts.map +1 -0
  670. package/dist/mcp/handlers/memory/memory-backup.js +154 -0
  671. package/dist/mcp/handlers/memory/memory-backup.js.map +1 -0
  672. package/dist/mcp/handlers/memory/memory-query.d.ts +35 -0
  673. package/dist/mcp/handlers/memory/memory-query.d.ts.map +1 -0
  674. package/dist/mcp/handlers/memory/memory-query.js +96 -0
  675. package/dist/mcp/handlers/memory/memory-query.js.map +1 -0
  676. package/dist/mcp/handlers/memory/memory-retrieve.d.ts +32 -0
  677. package/dist/mcp/handlers/memory/memory-retrieve.d.ts.map +1 -0
  678. package/dist/mcp/handlers/memory/memory-retrieve.js +91 -0
  679. package/dist/mcp/handlers/memory/memory-retrieve.js.map +1 -0
  680. package/dist/mcp/handlers/memory/memory-share.d.ts +39 -0
  681. package/dist/mcp/handlers/memory/memory-share.d.ts.map +1 -0
  682. package/dist/mcp/handlers/memory/memory-share.js +96 -0
  683. package/dist/mcp/handlers/memory/memory-share.js.map +1 -0
  684. package/dist/mcp/handlers/memory/memory-store.d.ts +47 -0
  685. package/dist/mcp/handlers/memory/memory-store.d.ts.map +1 -0
  686. package/dist/mcp/handlers/memory/memory-store.js +107 -0
  687. package/dist/mcp/handlers/memory/memory-store.js.map +1 -0
  688. package/dist/mcp/handlers/prediction/deployment-readiness-check.d.ts +157 -0
  689. package/dist/mcp/handlers/prediction/deployment-readiness-check.d.ts.map +1 -0
  690. package/dist/mcp/handlers/prediction/deployment-readiness-check.js +483 -0
  691. package/dist/mcp/handlers/prediction/deployment-readiness-check.js.map +1 -0
  692. package/dist/mcp/handlers/prediction/flaky-test-detect.d.ts +178 -0
  693. package/dist/mcp/handlers/prediction/flaky-test-detect.d.ts.map +1 -0
  694. package/dist/mcp/handlers/prediction/flaky-test-detect.js +438 -0
  695. package/dist/mcp/handlers/prediction/flaky-test-detect.js.map +1 -0
  696. package/dist/mcp/handlers/prediction/index.d.ts +19 -0
  697. package/dist/mcp/handlers/prediction/index.d.ts.map +1 -0
  698. package/dist/mcp/handlers/prediction/index.js +22 -0
  699. package/dist/mcp/handlers/prediction/index.js.map +1 -0
  700. package/dist/mcp/handlers/prediction/predict-defects-ai.d.ts +133 -0
  701. package/dist/mcp/handlers/prediction/predict-defects-ai.d.ts.map +1 -0
  702. package/dist/mcp/handlers/prediction/predict-defects-ai.js +278 -0
  703. package/dist/mcp/handlers/prediction/predict-defects-ai.js.map +1 -0
  704. package/dist/mcp/handlers/prediction/regression-risk-analyze.d.ts +189 -0
  705. package/dist/mcp/handlers/prediction/regression-risk-analyze.d.ts.map +1 -0
  706. package/dist/mcp/handlers/prediction/regression-risk-analyze.js +419 -0
  707. package/dist/mcp/handlers/prediction/regression-risk-analyze.js.map +1 -0
  708. package/dist/mcp/handlers/prediction/visual-test-regression.d.ts +138 -0
  709. package/dist/mcp/handlers/prediction/visual-test-regression.d.ts.map +1 -0
  710. package/dist/mcp/handlers/prediction/visual-test-regression.js +274 -0
  711. package/dist/mcp/handlers/prediction/visual-test-regression.js.map +1 -0
  712. package/dist/mcp/handlers/quality/quality-decision-make.d.ts +104 -0
  713. package/dist/mcp/handlers/quality/quality-decision-make.d.ts.map +1 -0
  714. package/dist/mcp/handlers/quality/quality-decision-make.js +418 -0
  715. package/dist/mcp/handlers/quality/quality-decision-make.js.map +1 -0
  716. package/dist/mcp/handlers/quality/quality-gate-execute.d.ts +160 -0
  717. package/dist/mcp/handlers/quality/quality-gate-execute.d.ts.map +1 -0
  718. package/dist/mcp/handlers/quality/quality-gate-execute.js +424 -0
  719. package/dist/mcp/handlers/quality/quality-gate-execute.js.map +1 -0
  720. package/dist/mcp/handlers/quality/quality-policy-check.d.ts +163 -0
  721. package/dist/mcp/handlers/quality/quality-policy-check.d.ts.map +1 -0
  722. package/dist/mcp/handlers/quality/quality-policy-check.js +465 -0
  723. package/dist/mcp/handlers/quality/quality-policy-check.js.map +1 -0
  724. package/dist/mcp/handlers/quality/quality-risk-assess.d.ts +123 -0
  725. package/dist/mcp/handlers/quality/quality-risk-assess.d.ts.map +1 -0
  726. package/dist/mcp/handlers/quality/quality-risk-assess.js +532 -0
  727. package/dist/mcp/handlers/quality/quality-risk-assess.js.map +1 -0
  728. package/dist/mcp/handlers/quality/quality-validate-metrics.d.ts +117 -0
  729. package/dist/mcp/handlers/quality/quality-validate-metrics.d.ts.map +1 -0
  730. package/dist/mcp/handlers/quality/quality-validate-metrics.js +298 -0
  731. package/dist/mcp/handlers/quality/quality-validate-metrics.js.map +1 -0
  732. package/dist/mcp/handlers/test/index.d.ts +9 -0
  733. package/dist/mcp/handlers/test/index.d.ts.map +1 -0
  734. package/dist/mcp/handlers/test/index.js +25 -0
  735. package/dist/mcp/handlers/test/index.js.map +1 -0
  736. package/dist/mcp/handlers/test/test-coverage-detailed.d.ts +65 -0
  737. package/dist/mcp/handlers/test/test-coverage-detailed.d.ts.map +1 -0
  738. package/dist/mcp/handlers/test/test-coverage-detailed.js +305 -0
  739. package/dist/mcp/handlers/test/test-coverage-detailed.js.map +1 -0
  740. package/dist/mcp/handlers/test/test-execute-parallel.d.ts +39 -0
  741. package/dist/mcp/handlers/test/test-execute-parallel.d.ts.map +1 -0
  742. package/dist/mcp/handlers/test/test-execute-parallel.js +189 -0
  743. package/dist/mcp/handlers/test/test-execute-parallel.js.map +1 -0
  744. package/dist/mcp/handlers/test/test-generate-enhanced.d.ts +40 -0
  745. package/dist/mcp/handlers/test/test-generate-enhanced.d.ts.map +1 -0
  746. package/dist/mcp/handlers/test/test-generate-enhanced.js +240 -0
  747. package/dist/mcp/handlers/test/test-generate-enhanced.js.map +1 -0
  748. package/dist/mcp/handlers/test/test-optimize-sublinear.d.ts +40 -0
  749. package/dist/mcp/handlers/test/test-optimize-sublinear.d.ts.map +1 -0
  750. package/dist/mcp/handlers/test/test-optimize-sublinear.js +223 -0
  751. package/dist/mcp/handlers/test/test-optimize-sublinear.js.map +1 -0
  752. package/dist/mcp/handlers/test/test-report-comprehensive.d.ts +50 -0
  753. package/dist/mcp/handlers/test/test-report-comprehensive.d.ts.map +1 -0
  754. package/dist/mcp/handlers/test/test-report-comprehensive.js +239 -0
  755. package/dist/mcp/handlers/test/test-report-comprehensive.js.map +1 -0
  756. package/dist/mcp/handlers/test-execute.d.ts +0 -2
  757. package/dist/mcp/handlers/test-execute.d.ts.map +1 -1
  758. package/dist/mcp/handlers/test-execute.js +92 -45
  759. package/dist/mcp/handlers/test-execute.js.map +1 -1
  760. package/dist/mcp/server.d.ts +4 -0
  761. package/dist/mcp/server.d.ts.map +1 -1
  762. package/dist/mcp/server.js +92 -3
  763. package/dist/mcp/server.js.map +1 -1
  764. package/dist/mcp/services/AgentRegistry.js +3 -3
  765. package/dist/mcp/services/AgentRegistry.js.map +1 -1
  766. package/dist/mcp/services/HookExecutor.d.ts +44 -5
  767. package/dist/mcp/services/HookExecutor.d.ts.map +1 -1
  768. package/dist/mcp/services/HookExecutor.js +43 -7
  769. package/dist/mcp/services/HookExecutor.js.map +1 -1
  770. package/dist/mcp/tools.d.ts +43 -0
  771. package/dist/mcp/tools.d.ts.map +1 -1
  772. package/dist/mcp/tools.js +1256 -1
  773. package/dist/mcp/tools.js.map +1 -1
  774. package/dist/mcp/types/advanced.d.ts +193 -0
  775. package/dist/mcp/types/advanced.d.ts.map +1 -0
  776. package/dist/mcp/types/advanced.js +7 -0
  777. package/dist/mcp/types/advanced.js.map +1 -0
  778. package/dist/mcp/types/analysis.d.ts +46 -0
  779. package/dist/mcp/types/analysis.d.ts.map +1 -0
  780. package/dist/mcp/types/analysis.js +6 -0
  781. package/dist/mcp/types/analysis.js.map +1 -0
  782. package/dist/mcp/types/chaos.d.ts +343 -0
  783. package/dist/mcp/types/chaos.d.ts.map +1 -0
  784. package/dist/mcp/types/chaos.js +7 -0
  785. package/dist/mcp/types/chaos.js.map +1 -0
  786. package/dist/mcp/types/integration.d.ts +418 -0
  787. package/dist/mcp/types/integration.d.ts.map +1 -0
  788. package/dist/mcp/types/integration.js +7 -0
  789. package/dist/mcp/types/integration.js.map +1 -0
  790. package/dist/types/api-contract.types.js +1 -2
  791. package/dist/types/api-contract.types.js.map +1 -1
  792. package/dist/types/errors.d.ts.map +1 -1
  793. package/dist/types/errors.js +5 -5
  794. package/dist/types/errors.js.map +1 -1
  795. package/dist/types/hook.types.d.ts +147 -0
  796. package/dist/types/hook.types.d.ts.map +1 -0
  797. package/dist/types/hook.types.js +7 -0
  798. package/dist/types/hook.types.js.map +1 -0
  799. package/dist/types/index.d.ts +1 -0
  800. package/dist/types/index.d.ts.map +1 -1
  801. package/dist/types/index.js +16 -0
  802. package/dist/types/index.js.map +1 -1
  803. package/dist/utils/Config.d.ts +6 -2
  804. package/dist/utils/Config.d.ts.map +1 -1
  805. package/dist/utils/Config.js +41 -0
  806. package/dist/utils/Config.js.map +1 -1
  807. package/dist/utils/FakerDataGenerator.d.ts +203 -0
  808. package/dist/utils/FakerDataGenerator.d.ts.map +1 -0
  809. package/dist/utils/FakerDataGenerator.js +379 -0
  810. package/dist/utils/FakerDataGenerator.js.map +1 -0
  811. package/dist/utils/SecurityScanner.d.ts +72 -0
  812. package/dist/utils/SecurityScanner.d.ts.map +1 -0
  813. package/dist/utils/SecurityScanner.js +388 -0
  814. package/dist/utils/SecurityScanner.js.map +1 -0
  815. package/dist/utils/TestFrameworkExecutor.d.ts +146 -0
  816. package/dist/utils/TestFrameworkExecutor.d.ts.map +1 -0
  817. package/dist/utils/TestFrameworkExecutor.js +576 -0
  818. package/dist/utils/TestFrameworkExecutor.js.map +1 -0
  819. package/dist/utils/index.d.ts +2 -0
  820. package/dist/utils/index.d.ts.map +1 -1
  821. package/dist/utils/index.js +3 -1
  822. package/dist/utils/index.js.map +1 -1
  823. package/dist/utils/validation.d.ts +28 -0
  824. package/dist/utils/validation.d.ts.map +1 -0
  825. package/dist/utils/validation.js +56 -0
  826. package/dist/utils/validation.js.map +1 -0
  827. package/package.json +31 -17
  828. package/dist/core/coverage-analyzer.d.ts +0 -50
  829. package/dist/core/coverage-analyzer.d.ts.map +0 -1
  830. package/dist/core/coverage-analyzer.js +0 -146
  831. package/dist/core/coverage-analyzer.js.map +0 -1
  832. package/dist/core/quality-gate.d.ts +0 -81
  833. package/dist/core/quality-gate.d.ts.map +0 -1
  834. package/dist/core/quality-gate.js +0 -254
  835. package/dist/core/quality-gate.js.map +0 -1
  836. package/dist/optimization/sublinear-solver.d.ts +0 -72
  837. package/dist/optimization/sublinear-solver.d.ts.map +0 -1
  838. package/dist/optimization/sublinear-solver.js +0 -263
  839. package/dist/optimization/sublinear-solver.js.map +0 -1
  840. package/dist/scripts/verifyComplexity.d.ts +0 -8
  841. package/dist/scripts/verifyComplexity.d.ts.map +0 -1
  842. package/dist/scripts/verifyComplexity.js +0 -56
  843. package/dist/scripts/verifyComplexity.js.map +0 -1
  844. package/dist/utils/sublinear/coverageOptimizer.d.ts +0 -84
  845. package/dist/utils/sublinear/coverageOptimizer.d.ts.map +0 -1
  846. package/dist/utils/sublinear/coverageOptimizer.js +0 -415
  847. package/dist/utils/sublinear/coverageOptimizer.js.map +0 -1
  848. package/dist/utils/sublinear/index.d.ts +0 -50
  849. package/dist/utils/sublinear/index.d.ts.map +0 -1
  850. package/dist/utils/sublinear/index.js +0 -390
  851. package/dist/utils/sublinear/index.js.map +0 -1
  852. package/dist/utils/sublinear/matrixSolver.d.ts +0 -132
  853. package/dist/utils/sublinear/matrixSolver.d.ts.map +0 -1
  854. package/dist/utils/sublinear/matrixSolver.js +0 -642
  855. package/dist/utils/sublinear/matrixSolver.js.map +0 -1
  856. package/dist/utils/sublinear/temporalPredictor.d.ts +0 -195
  857. package/dist/utils/sublinear/temporalPredictor.d.ts.map +0 -1
  858. package/dist/utils/sublinear/temporalPredictor.js +0 -474
  859. package/dist/utils/sublinear/temporalPredictor.js.map +0 -1
  860. package/dist/utils/sublinear/testSelector.d.ts +0 -81
  861. package/dist/utils/sublinear/testSelector.d.ts.map +0 -1
  862. package/dist/utils/sublinear/testSelector.js +0 -303
  863. package/dist/utils/sublinear/testSelector.js.map +0 -1
package/dist/mcp/tools.js CHANGED
@@ -452,6 +452,1211 @@ exports.agenticQETools = [
452
452
  },
453
453
  required: ['optimization']
454
454
  }
455
+ },
456
+ // Enhanced Test Tools
457
+ {
458
+ name: 'mcp__agentic_qe__test_generate_enhanced',
459
+ description: 'Enhanced AI-powered test generation with pattern recognition and anti-pattern detection',
460
+ inputSchema: {
461
+ type: 'object',
462
+ properties: {
463
+ sourceCode: {
464
+ type: 'string',
465
+ description: 'Source code to analyze and generate tests for'
466
+ },
467
+ language: {
468
+ type: 'string',
469
+ enum: ['javascript', 'typescript', 'python', 'java', 'go'],
470
+ description: 'Programming language'
471
+ },
472
+ testType: {
473
+ type: 'string',
474
+ enum: ['unit', 'integration', 'e2e', 'property-based', 'mutation'],
475
+ description: 'Type of tests to generate'
476
+ },
477
+ aiEnhancement: {
478
+ type: 'boolean',
479
+ default: true,
480
+ description: 'Enable AI-powered analysis and generation'
481
+ },
482
+ coverageGoal: {
483
+ type: 'number',
484
+ minimum: 0,
485
+ maximum: 100,
486
+ description: 'Target coverage percentage'
487
+ },
488
+ detectAntiPatterns: {
489
+ type: 'boolean',
490
+ default: false,
491
+ description: 'Detect and report code anti-patterns'
492
+ }
493
+ },
494
+ required: ['sourceCode', 'language', 'testType']
495
+ }
496
+ },
497
+ {
498
+ name: 'mcp__agentic_qe__test_execute_parallel',
499
+ description: 'Execute tests in parallel with worker pools, retry logic, and load balancing',
500
+ inputSchema: {
501
+ type: 'object',
502
+ properties: {
503
+ testFiles: {
504
+ type: 'array',
505
+ items: { type: 'string' },
506
+ description: 'List of test files to execute'
507
+ },
508
+ parallelism: {
509
+ type: 'number',
510
+ minimum: 1,
511
+ maximum: 16,
512
+ default: 4,
513
+ description: 'Number of parallel workers'
514
+ },
515
+ timeout: {
516
+ type: 'number',
517
+ default: 5000,
518
+ description: 'Test execution timeout in milliseconds'
519
+ },
520
+ retryFailures: {
521
+ type: 'boolean',
522
+ default: true,
523
+ description: 'Retry failed tests'
524
+ },
525
+ maxRetries: {
526
+ type: 'number',
527
+ default: 3,
528
+ minimum: 0,
529
+ maximum: 5,
530
+ description: 'Maximum retry attempts'
531
+ },
532
+ retryDelay: {
533
+ type: 'number',
534
+ default: 1000,
535
+ description: 'Delay between retries in milliseconds'
536
+ },
537
+ continueOnFailure: {
538
+ type: 'boolean',
539
+ default: true,
540
+ description: 'Continue execution if a test fails'
541
+ },
542
+ loadBalancing: {
543
+ type: 'string',
544
+ enum: ['round-robin', 'least-loaded', 'random'],
545
+ default: 'round-robin',
546
+ description: 'Load balancing strategy'
547
+ },
548
+ collectCoverage: {
549
+ type: 'boolean',
550
+ default: false,
551
+ description: 'Collect coverage data during execution'
552
+ }
553
+ },
554
+ required: ['testFiles']
555
+ }
556
+ },
557
+ {
558
+ name: 'mcp__agentic_qe__test_optimize_sublinear',
559
+ description: 'Optimize test suites using sublinear algorithms (JL, temporal advantage, redundancy detection)',
560
+ inputSchema: {
561
+ type: 'object',
562
+ properties: {
563
+ testSuite: {
564
+ type: 'object',
565
+ properties: {
566
+ tests: {
567
+ type: 'array',
568
+ description: 'Array of tests to optimize'
569
+ }
570
+ },
571
+ required: ['tests']
572
+ },
573
+ algorithm: {
574
+ type: 'string',
575
+ enum: ['johnson-lindenstrauss', 'temporal-advantage', 'redundancy-detection', 'sublinear'],
576
+ description: 'Optimization algorithm'
577
+ },
578
+ targetReduction: {
579
+ type: 'number',
580
+ minimum: 0.1,
581
+ maximum: 0.9,
582
+ description: 'Target reduction ratio (0.3 = reduce to 30%)'
583
+ },
584
+ maintainCoverage: {
585
+ type: 'number',
586
+ minimum: 0,
587
+ maximum: 1,
588
+ description: 'Minimum coverage to maintain (0-1)'
589
+ },
590
+ predictFailures: {
591
+ type: 'boolean',
592
+ default: false,
593
+ description: 'Enable failure prediction'
594
+ },
595
+ metrics: {
596
+ type: 'boolean',
597
+ default: true,
598
+ description: 'Calculate complexity metrics'
599
+ },
600
+ preserveCritical: {
601
+ type: 'boolean',
602
+ default: true,
603
+ description: 'Preserve critical priority tests'
604
+ }
605
+ },
606
+ required: ['testSuite', 'algorithm']
607
+ }
608
+ },
609
+ {
610
+ name: 'mcp__agentic_qe__test_report_comprehensive',
611
+ description: 'Generate comprehensive test reports in multiple formats (HTML, JSON, JUnit, Markdown, PDF)',
612
+ inputSchema: {
613
+ type: 'object',
614
+ properties: {
615
+ results: {
616
+ type: 'object',
617
+ properties: {
618
+ total: { type: 'number' },
619
+ passed: { type: 'number' },
620
+ failed: { type: 'number' },
621
+ skipped: { type: 'number' },
622
+ duration: { type: 'number' },
623
+ suites: { type: 'array' }
624
+ },
625
+ required: ['total', 'passed', 'failed']
626
+ },
627
+ format: {
628
+ type: 'string',
629
+ enum: ['html', 'json', 'junit', 'markdown', 'pdf'],
630
+ description: 'Report output format'
631
+ },
632
+ includeCharts: {
633
+ type: 'boolean',
634
+ default: false,
635
+ description: 'Include visual charts'
636
+ },
637
+ includeTrends: {
638
+ type: 'boolean',
639
+ default: false,
640
+ description: 'Include trend analysis'
641
+ },
642
+ includeSummary: {
643
+ type: 'boolean',
644
+ default: true,
645
+ description: 'Include summary section'
646
+ },
647
+ includeDetails: {
648
+ type: 'boolean',
649
+ default: false,
650
+ description: 'Include detailed test information'
651
+ },
652
+ structured: {
653
+ type: 'boolean',
654
+ default: true,
655
+ description: 'Use structured output (for JSON)'
656
+ },
657
+ historicalData: {
658
+ type: 'array',
659
+ description: 'Historical test data for trends'
660
+ }
661
+ },
662
+ required: ['results', 'format']
663
+ }
664
+ },
665
+ {
666
+ name: 'mcp__agentic_qe__test_coverage_detailed',
667
+ description: 'Detailed coverage analysis with gap detection, prioritization, and improvement suggestions',
668
+ inputSchema: {
669
+ type: 'object',
670
+ properties: {
671
+ coverageData: {
672
+ type: 'object',
673
+ properties: {
674
+ files: {
675
+ type: 'array',
676
+ items: {
677
+ type: 'object',
678
+ properties: {
679
+ path: { type: 'string' },
680
+ lines: { type: 'object' },
681
+ branches: { type: 'object' },
682
+ functions: { type: 'object' },
683
+ importance: {
684
+ type: 'string',
685
+ enum: ['low', 'medium', 'high', 'critical']
686
+ }
687
+ }
688
+ }
689
+ }
690
+ },
691
+ required: ['files']
692
+ },
693
+ analysisType: {
694
+ type: 'string',
695
+ enum: ['line', 'branch', 'function', 'comprehensive'],
696
+ description: 'Type of coverage analysis'
697
+ },
698
+ detailLevel: {
699
+ type: 'string',
700
+ enum: ['basic', 'detailed', 'comprehensive'],
701
+ default: 'detailed',
702
+ description: 'Level of detail in analysis'
703
+ },
704
+ identifyGaps: {
705
+ type: 'boolean',
706
+ default: true,
707
+ description: 'Identify coverage gaps'
708
+ },
709
+ prioritizeGaps: {
710
+ type: 'boolean',
711
+ default: true,
712
+ description: 'Prioritize gaps by importance'
713
+ },
714
+ generateSuggestions: {
715
+ type: 'boolean',
716
+ default: true,
717
+ description: 'Generate improvement suggestions'
718
+ },
719
+ comparePrevious: {
720
+ type: 'boolean',
721
+ default: false,
722
+ description: 'Compare with previous coverage'
723
+ },
724
+ historicalData: {
725
+ type: 'array',
726
+ description: 'Historical coverage data'
727
+ }
728
+ },
729
+ required: ['coverageData', 'analysisType']
730
+ }
731
+ },
732
+ // Memory Management Tools
733
+ {
734
+ name: 'mcp__agentic_qe__memory_store',
735
+ description: 'Store QE data with TTL support and namespacing for agent coordination',
736
+ inputSchema: {
737
+ type: 'object',
738
+ properties: {
739
+ key: {
740
+ type: 'string',
741
+ description: 'Memory key'
742
+ },
743
+ value: {
744
+ description: 'Value to store (any type)'
745
+ },
746
+ namespace: {
747
+ type: 'string',
748
+ default: 'default',
749
+ description: 'Memory namespace for isolation'
750
+ },
751
+ ttl: {
752
+ type: 'number',
753
+ description: 'Time to live in seconds (0 for persistent)'
754
+ },
755
+ metadata: {
756
+ type: 'object',
757
+ description: 'Additional metadata'
758
+ },
759
+ persist: {
760
+ type: 'boolean',
761
+ default: false,
762
+ description: 'Persist to database'
763
+ }
764
+ },
765
+ required: ['key', 'value']
766
+ }
767
+ },
768
+ {
769
+ name: 'mcp__agentic_qe__memory_retrieve',
770
+ description: 'Retrieve QE data from memory with optional metadata',
771
+ inputSchema: {
772
+ type: 'object',
773
+ properties: {
774
+ key: {
775
+ type: 'string',
776
+ description: 'Memory key'
777
+ },
778
+ namespace: {
779
+ type: 'string',
780
+ default: 'default',
781
+ description: 'Memory namespace'
782
+ },
783
+ includeMetadata: {
784
+ type: 'boolean',
785
+ default: false,
786
+ description: 'Include metadata in response'
787
+ },
788
+ agentId: {
789
+ type: 'string',
790
+ description: 'Agent ID for access tracking'
791
+ }
792
+ },
793
+ required: ['key']
794
+ }
795
+ },
796
+ {
797
+ name: 'mcp__agentic_qe__memory_query',
798
+ description: 'Query memory system with pattern matching and filtering',
799
+ inputSchema: {
800
+ type: 'object',
801
+ properties: {
802
+ namespace: {
803
+ type: 'string',
804
+ description: 'Filter by namespace'
805
+ },
806
+ pattern: {
807
+ type: 'string',
808
+ description: 'Key pattern (supports wildcards)'
809
+ },
810
+ startTime: {
811
+ type: 'number',
812
+ description: 'Filter by start timestamp'
813
+ },
814
+ endTime: {
815
+ type: 'number',
816
+ description: 'Filter by end timestamp'
817
+ },
818
+ limit: {
819
+ type: 'number',
820
+ default: 100,
821
+ minimum: 1,
822
+ maximum: 1000,
823
+ description: 'Maximum results'
824
+ },
825
+ offset: {
826
+ type: 'number',
827
+ default: 0,
828
+ minimum: 0,
829
+ description: 'Pagination offset'
830
+ },
831
+ includeExpired: {
832
+ type: 'boolean',
833
+ default: false,
834
+ description: 'Include expired entries'
835
+ }
836
+ }
837
+ }
838
+ },
839
+ {
840
+ name: 'mcp__agentic_qe__memory_share',
841
+ description: 'Share memory between agents with access control',
842
+ inputSchema: {
843
+ type: 'object',
844
+ properties: {
845
+ sourceKey: {
846
+ type: 'string',
847
+ description: 'Source memory key'
848
+ },
849
+ sourceNamespace: {
850
+ type: 'string',
851
+ description: 'Source namespace'
852
+ },
853
+ targetAgents: {
854
+ type: 'array',
855
+ items: { type: 'string' },
856
+ description: 'Target agent IDs'
857
+ },
858
+ targetNamespace: {
859
+ type: 'string',
860
+ default: 'shared',
861
+ description: 'Target namespace'
862
+ },
863
+ permissions: {
864
+ type: 'array',
865
+ items: { type: 'string' },
866
+ default: ['read'],
867
+ description: 'Access permissions'
868
+ },
869
+ ttl: {
870
+ type: 'number',
871
+ description: 'Time to live for shared memory'
872
+ }
873
+ },
874
+ required: ['sourceKey', 'sourceNamespace', 'targetAgents']
875
+ }
876
+ },
877
+ {
878
+ name: 'mcp__agentic_qe__memory_backup',
879
+ description: 'Backup and restore memory namespaces',
880
+ inputSchema: {
881
+ type: 'object',
882
+ properties: {
883
+ action: {
884
+ type: 'string',
885
+ enum: ['create', 'restore', 'list', 'delete'],
886
+ description: 'Backup operation'
887
+ },
888
+ namespace: {
889
+ type: 'string',
890
+ description: 'Namespace to backup/restore'
891
+ },
892
+ backupId: {
893
+ type: 'string',
894
+ description: 'Backup identifier'
895
+ },
896
+ targetNamespace: {
897
+ type: 'string',
898
+ description: 'Target namespace for restore'
899
+ }
900
+ },
901
+ required: ['action']
902
+ }
903
+ },
904
+ {
905
+ name: 'mcp__agentic_qe__blackboard_post',
906
+ description: 'Post coordination hints to blackboard pattern',
907
+ inputSchema: {
908
+ type: 'object',
909
+ properties: {
910
+ topic: {
911
+ type: 'string',
912
+ description: 'Coordination topic'
913
+ },
914
+ message: {
915
+ type: 'string',
916
+ description: 'Hint message'
917
+ },
918
+ priority: {
919
+ type: 'string',
920
+ enum: ['low', 'medium', 'high', 'critical'],
921
+ description: 'Hint priority'
922
+ },
923
+ agentId: {
924
+ type: 'string',
925
+ description: 'Source agent ID'
926
+ },
927
+ metadata: {
928
+ type: 'object',
929
+ description: 'Additional metadata'
930
+ },
931
+ ttl: {
932
+ type: 'number',
933
+ default: 0,
934
+ description: 'Time to live in seconds'
935
+ }
936
+ },
937
+ required: ['topic', 'message', 'priority', 'agentId']
938
+ }
939
+ },
940
+ {
941
+ name: 'mcp__agentic_qe__blackboard_read',
942
+ description: 'Read coordination hints from blackboard',
943
+ inputSchema: {
944
+ type: 'object',
945
+ properties: {
946
+ topic: {
947
+ type: 'string',
948
+ description: 'Coordination topic'
949
+ },
950
+ agentId: {
951
+ type: 'string',
952
+ description: 'Reading agent ID'
953
+ },
954
+ minPriority: {
955
+ type: 'string',
956
+ enum: ['low', 'medium', 'high', 'critical'],
957
+ description: 'Minimum priority filter'
958
+ },
959
+ since: {
960
+ type: 'number',
961
+ description: 'Filter hints after timestamp'
962
+ },
963
+ limit: {
964
+ type: 'number',
965
+ default: 50,
966
+ minimum: 1,
967
+ maximum: 100,
968
+ description: 'Maximum hints to return'
969
+ }
970
+ },
971
+ required: ['topic', 'agentId']
972
+ }
973
+ },
974
+ {
975
+ name: 'mcp__agentic_qe__consensus_propose',
976
+ description: 'Create consensus proposal for multi-agent decision making',
977
+ inputSchema: {
978
+ type: 'object',
979
+ properties: {
980
+ proposalId: {
981
+ type: 'string',
982
+ description: 'Unique proposal identifier'
983
+ },
984
+ topic: {
985
+ type: 'string',
986
+ description: 'Proposal topic'
987
+ },
988
+ proposal: {
989
+ description: 'Proposal content (any type)'
990
+ },
991
+ votingAgents: {
992
+ type: 'array',
993
+ items: { type: 'string' },
994
+ description: 'Agents authorized to vote'
995
+ },
996
+ quorum: {
997
+ type: 'number',
998
+ minimum: 0,
999
+ maximum: 1,
1000
+ description: 'Quorum threshold (0-1)'
1001
+ },
1002
+ timeout: {
1003
+ type: 'number',
1004
+ default: 300,
1005
+ description: 'Voting timeout in seconds'
1006
+ },
1007
+ metadata: {
1008
+ type: 'object',
1009
+ description: 'Additional metadata'
1010
+ }
1011
+ },
1012
+ required: ['proposalId', 'topic', 'proposal', 'votingAgents', 'quorum']
1013
+ }
1014
+ },
1015
+ {
1016
+ name: 'mcp__agentic_qe__consensus_vote',
1017
+ description: 'Vote on consensus proposal with quorum checking',
1018
+ inputSchema: {
1019
+ type: 'object',
1020
+ properties: {
1021
+ proposalId: {
1022
+ type: 'string',
1023
+ description: 'Proposal identifier'
1024
+ },
1025
+ agentId: {
1026
+ type: 'string',
1027
+ description: 'Voting agent ID'
1028
+ },
1029
+ vote: {
1030
+ type: 'string',
1031
+ enum: ['approve', 'reject', 'abstain'],
1032
+ description: 'Vote decision'
1033
+ },
1034
+ rationale: {
1035
+ type: 'string',
1036
+ description: 'Vote rationale'
1037
+ },
1038
+ checkConsensus: {
1039
+ type: 'boolean',
1040
+ default: true,
1041
+ description: 'Check if consensus reached'
1042
+ }
1043
+ },
1044
+ required: ['proposalId', 'agentId', 'vote']
1045
+ }
1046
+ },
1047
+ {
1048
+ name: 'mcp__agentic_qe__artifact_manifest',
1049
+ description: 'Manage artifact manifests for QE outputs',
1050
+ inputSchema: {
1051
+ type: 'object',
1052
+ properties: {
1053
+ action: {
1054
+ type: 'string',
1055
+ enum: ['create', 'get', 'list', 'update', 'delete'],
1056
+ description: 'Manifest operation'
1057
+ },
1058
+ manifestId: {
1059
+ type: 'string',
1060
+ description: 'Manifest identifier'
1061
+ },
1062
+ artifacts: {
1063
+ type: 'array',
1064
+ items: {
1065
+ type: 'object',
1066
+ properties: {
1067
+ type: { type: 'string' },
1068
+ path: { type: 'string' },
1069
+ metadata: { type: 'object' }
1070
+ },
1071
+ required: ['type', 'path']
1072
+ },
1073
+ description: 'Artifact list'
1074
+ },
1075
+ updates: {
1076
+ type: 'object',
1077
+ description: 'Manifest updates'
1078
+ },
1079
+ filterBy: {
1080
+ type: 'object',
1081
+ description: 'Filter criteria for list'
1082
+ }
1083
+ },
1084
+ required: ['action']
1085
+ }
1086
+ },
1087
+ // Coordination Tools (Phase 1)
1088
+ {
1089
+ name: 'mcp__agentic_qe__workflow_create',
1090
+ description: 'Create QE workflow with checkpoints and dependency management',
1091
+ inputSchema: {
1092
+ type: 'object',
1093
+ properties: {
1094
+ name: {
1095
+ type: 'string',
1096
+ description: 'Workflow name'
1097
+ },
1098
+ description: {
1099
+ type: 'string',
1100
+ description: 'Workflow description'
1101
+ },
1102
+ steps: {
1103
+ type: 'array',
1104
+ items: {
1105
+ type: 'object',
1106
+ properties: {
1107
+ id: { type: 'string' },
1108
+ name: { type: 'string' },
1109
+ type: { type: 'string' },
1110
+ dependencies: { type: 'array', items: { type: 'string' } },
1111
+ timeout: { type: 'number' },
1112
+ config: { type: 'object' }
1113
+ },
1114
+ required: ['id', 'name', 'type', 'dependencies']
1115
+ },
1116
+ description: 'Workflow steps with dependencies'
1117
+ },
1118
+ checkpoints: {
1119
+ type: 'object',
1120
+ properties: {
1121
+ enabled: { type: 'boolean' },
1122
+ frequency: {
1123
+ type: 'string',
1124
+ enum: ['manual', 'after-each-step', 'on-failure', 'timed']
1125
+ },
1126
+ interval: { type: 'number' }
1127
+ }
1128
+ }
1129
+ },
1130
+ required: ['name', 'steps']
1131
+ }
1132
+ },
1133
+ {
1134
+ name: 'mcp__agentic_qe__workflow_execute',
1135
+ description: 'Execute workflow with OODA loop integration',
1136
+ inputSchema: {
1137
+ type: 'object',
1138
+ properties: {
1139
+ workflowId: {
1140
+ type: 'string',
1141
+ description: 'Workflow ID to execute'
1142
+ },
1143
+ context: {
1144
+ type: 'object',
1145
+ properties: {
1146
+ environment: { type: 'string' },
1147
+ dryRun: { type: 'boolean' },
1148
+ variables: { type: 'object' }
1149
+ }
1150
+ },
1151
+ oodaEnabled: {
1152
+ type: 'boolean',
1153
+ default: true,
1154
+ description: 'Enable OODA loop coordination'
1155
+ },
1156
+ autoCheckpoint: {
1157
+ type: 'boolean',
1158
+ default: true,
1159
+ description: 'Automatically create checkpoints'
1160
+ }
1161
+ },
1162
+ required: ['workflowId']
1163
+ }
1164
+ },
1165
+ {
1166
+ name: 'mcp__agentic_qe__workflow_checkpoint',
1167
+ description: 'Save workflow state to checkpoint',
1168
+ inputSchema: {
1169
+ type: 'object',
1170
+ properties: {
1171
+ executionId: {
1172
+ type: 'string',
1173
+ description: 'Execution ID to checkpoint'
1174
+ },
1175
+ reason: {
1176
+ type: 'string',
1177
+ description: 'Reason for checkpoint'
1178
+ },
1179
+ metadata: {
1180
+ type: 'object',
1181
+ description: 'Additional metadata'
1182
+ }
1183
+ },
1184
+ required: ['executionId']
1185
+ }
1186
+ },
1187
+ {
1188
+ name: 'mcp__agentic_qe__workflow_resume',
1189
+ description: 'Resume workflow from checkpoint',
1190
+ inputSchema: {
1191
+ type: 'object',
1192
+ properties: {
1193
+ checkpointId: {
1194
+ type: 'string',
1195
+ description: 'Checkpoint ID to resume from'
1196
+ },
1197
+ context: {
1198
+ type: 'object',
1199
+ properties: {
1200
+ skipFailedSteps: { type: 'boolean' },
1201
+ overrideVariables: { type: 'object' }
1202
+ }
1203
+ }
1204
+ },
1205
+ required: ['checkpointId']
1206
+ }
1207
+ },
1208
+ {
1209
+ name: 'mcp__agentic_qe__task_status',
1210
+ description: 'Check task status and progress',
1211
+ inputSchema: {
1212
+ type: 'object',
1213
+ properties: {
1214
+ taskId: {
1215
+ type: 'string',
1216
+ description: 'Task or orchestration ID'
1217
+ },
1218
+ includeDetails: {
1219
+ type: 'boolean',
1220
+ default: false,
1221
+ description: 'Include detailed information'
1222
+ },
1223
+ includeTimeline: {
1224
+ type: 'boolean',
1225
+ default: false,
1226
+ description: 'Include timeline events'
1227
+ }
1228
+ },
1229
+ required: ['taskId']
1230
+ }
1231
+ },
1232
+ {
1233
+ name: 'mcp__agentic_qe__event_emit',
1234
+ description: 'Emit coordination event to event bus',
1235
+ inputSchema: {
1236
+ type: 'object',
1237
+ properties: {
1238
+ event: {
1239
+ type: 'string',
1240
+ description: 'Event name (e.g., test:started, agent:ready)'
1241
+ },
1242
+ data: {
1243
+ type: 'object',
1244
+ description: 'Event data payload'
1245
+ },
1246
+ metadata: {
1247
+ type: 'object',
1248
+ properties: {
1249
+ source: { type: 'string' },
1250
+ priority: {
1251
+ type: 'string',
1252
+ enum: ['low', 'medium', 'high', 'critical']
1253
+ }
1254
+ }
1255
+ }
1256
+ },
1257
+ required: ['event', 'data']
1258
+ }
1259
+ },
1260
+ {
1261
+ name: 'mcp__agentic_qe__event_subscribe',
1262
+ description: 'Subscribe to coordination event stream',
1263
+ inputSchema: {
1264
+ type: 'object',
1265
+ properties: {
1266
+ events: {
1267
+ type: 'array',
1268
+ items: { type: 'string' },
1269
+ description: 'Event patterns to subscribe to (supports wildcards like agent:*)'
1270
+ },
1271
+ filter: {
1272
+ type: 'object',
1273
+ description: 'Filter criteria for events'
1274
+ },
1275
+ action: {
1276
+ type: 'string',
1277
+ enum: ['subscribe', 'unsubscribe'],
1278
+ description: 'Action to perform'
1279
+ },
1280
+ subscriptionId: {
1281
+ type: 'string',
1282
+ description: 'Subscription ID (for unsubscribe)'
1283
+ }
1284
+ }
1285
+ }
1286
+ },
1287
+ // Quality Gate Tools
1288
+ {
1289
+ name: 'mcp__agentic_qe__quality_gate_execute',
1290
+ description: 'Execute quality gate with policy enforcement',
1291
+ inputSchema: {
1292
+ type: 'object',
1293
+ properties: {
1294
+ projectId: { type: 'string' },
1295
+ buildId: { type: 'string' },
1296
+ environment: {
1297
+ type: 'string',
1298
+ enum: ['development', 'staging', 'production']
1299
+ },
1300
+ policy: { type: 'object' },
1301
+ metrics: {
1302
+ type: 'object',
1303
+ properties: {
1304
+ coverage: { type: 'object' },
1305
+ testResults: { type: 'object' },
1306
+ security: { type: 'object' },
1307
+ performance: { type: 'object' },
1308
+ codeQuality: { type: 'object' }
1309
+ },
1310
+ required: ['coverage', 'testResults', 'security']
1311
+ },
1312
+ context: { type: 'object' }
1313
+ },
1314
+ required: ['projectId', 'buildId', 'environment', 'metrics']
1315
+ }
1316
+ },
1317
+ {
1318
+ name: 'mcp__agentic_qe__quality_validate_metrics',
1319
+ description: 'Validate quality metrics against thresholds',
1320
+ inputSchema: {
1321
+ type: 'object',
1322
+ properties: {
1323
+ metrics: { type: 'object', description: 'Quality metrics to validate' },
1324
+ thresholds: { type: 'object', description: 'Validation thresholds' },
1325
+ strict: { type: 'boolean', default: false }
1326
+ },
1327
+ required: ['metrics', 'thresholds']
1328
+ }
1329
+ },
1330
+ {
1331
+ name: 'mcp__agentic_qe__quality_risk_assess',
1332
+ description: 'Assess risk level for quality metrics',
1333
+ inputSchema: {
1334
+ type: 'object',
1335
+ properties: {
1336
+ metrics: { type: 'object' },
1337
+ context: { type: 'object' },
1338
+ historicalData: { type: 'array', items: { type: 'object' } }
1339
+ },
1340
+ required: ['metrics']
1341
+ }
1342
+ },
1343
+ {
1344
+ name: 'mcp__agentic_qe__quality_decision_make',
1345
+ description: 'Make go/no-go decision based on quality analysis',
1346
+ inputSchema: {
1347
+ type: 'object',
1348
+ properties: {
1349
+ analysisId: { type: 'string' },
1350
+ data: { type: 'object' },
1351
+ policy: { type: 'object' }
1352
+ },
1353
+ required: ['analysisId', 'data']
1354
+ }
1355
+ },
1356
+ {
1357
+ name: 'mcp__agentic_qe__quality_policy_check',
1358
+ description: 'Check compliance with quality policies',
1359
+ inputSchema: {
1360
+ type: 'object',
1361
+ properties: {
1362
+ policyId: { type: 'string' },
1363
+ projectId: { type: 'string' },
1364
+ metrics: { type: 'object' }
1365
+ },
1366
+ required: ['policyId', 'projectId', 'metrics']
1367
+ }
1368
+ },
1369
+ // Prediction & Analysis Tools
1370
+ {
1371
+ name: 'mcp__agentic_qe__flaky_test_detect',
1372
+ description: 'Detect flaky tests using pattern recognition',
1373
+ inputSchema: {
1374
+ type: 'object',
1375
+ properties: {
1376
+ testData: {
1377
+ type: 'object',
1378
+ properties: {
1379
+ testResults: { type: 'array', items: { type: 'object' } },
1380
+ minRuns: { type: 'number', default: 5 },
1381
+ timeWindow: { type: 'number', default: 30 }
1382
+ },
1383
+ required: ['testResults']
1384
+ },
1385
+ analysisConfig: { type: 'object' },
1386
+ reportConfig: { type: 'object' }
1387
+ },
1388
+ required: ['testData']
1389
+ }
1390
+ },
1391
+ {
1392
+ name: 'mcp__agentic_qe__predict_defects_ai',
1393
+ description: 'Predict defects using AI/ML models',
1394
+ inputSchema: {
1395
+ type: 'object',
1396
+ properties: {
1397
+ codeChanges: { type: 'object' },
1398
+ modelConfig: { type: 'object' },
1399
+ historicalData: { type: 'array' }
1400
+ },
1401
+ required: ['codeChanges']
1402
+ }
1403
+ },
1404
+ {
1405
+ name: 'mcp__agentic_qe__regression_risk_analyze',
1406
+ description: 'Analyze regression risk for code changes',
1407
+ inputSchema: {
1408
+ type: 'object',
1409
+ properties: {
1410
+ changes: { type: 'array', items: { type: 'object' } },
1411
+ baselineMetrics: { type: 'object' },
1412
+ threshold: { type: 'number', default: 0.1 }
1413
+ },
1414
+ required: ['changes']
1415
+ }
1416
+ },
1417
+ {
1418
+ name: 'mcp__agentic_qe__visual_test_regression',
1419
+ description: 'Detect visual regression in UI tests',
1420
+ inputSchema: {
1421
+ type: 'object',
1422
+ properties: {
1423
+ baselineImages: { type: 'array', items: { type: 'string' } },
1424
+ currentImages: { type: 'array', items: { type: 'string' } },
1425
+ threshold: { type: 'number', default: 0.05 }
1426
+ },
1427
+ required: ['baselineImages', 'currentImages']
1428
+ }
1429
+ },
1430
+ {
1431
+ name: 'mcp__agentic_qe__deployment_readiness_check',
1432
+ description: 'Check deployment readiness with comprehensive analysis',
1433
+ inputSchema: {
1434
+ type: 'object',
1435
+ properties: {
1436
+ projectId: { type: 'string' },
1437
+ environment: { type: 'string' },
1438
+ checks: { type: 'array', items: { type: 'string' } }
1439
+ },
1440
+ required: ['projectId', 'environment']
1441
+ }
1442
+ },
1443
+ // Analysis Tools
1444
+ {
1445
+ name: 'mcp__agentic_qe__coverage_analyze_sublinear',
1446
+ description: 'Analyze coverage with O(log n) sublinear algorithms',
1447
+ inputSchema: {
1448
+ type: 'object',
1449
+ properties: {
1450
+ sourceFiles: { type: 'array', items: { type: 'string' } },
1451
+ coverageThreshold: { type: 'number', default: 0.8 },
1452
+ useJohnsonLindenstrauss: { type: 'boolean', default: true },
1453
+ targetDimension: { type: 'number' },
1454
+ includeUncoveredLines: { type: 'boolean', default: true }
1455
+ },
1456
+ required: ['sourceFiles']
1457
+ }
1458
+ },
1459
+ {
1460
+ name: 'mcp__agentic_qe__coverage_gaps_detect',
1461
+ description: 'Detect coverage gaps and prioritize them',
1462
+ inputSchema: {
1463
+ type: 'object',
1464
+ properties: {
1465
+ coverageData: { type: 'object' },
1466
+ prioritization: {
1467
+ type: 'string',
1468
+ enum: ['complexity', 'criticality', 'change-frequency'],
1469
+ default: 'complexity'
1470
+ }
1471
+ },
1472
+ required: ['coverageData']
1473
+ }
1474
+ },
1475
+ {
1476
+ name: 'mcp__agentic_qe__performance_benchmark_run',
1477
+ description: 'Run performance benchmarks',
1478
+ inputSchema: {
1479
+ type: 'object',
1480
+ properties: {
1481
+ benchmarkSuite: { type: 'string' },
1482
+ iterations: { type: 'number', default: 100 },
1483
+ warmupIterations: { type: 'number', default: 10 }
1484
+ },
1485
+ required: ['benchmarkSuite']
1486
+ }
1487
+ },
1488
+ {
1489
+ name: 'mcp__agentic_qe__performance_monitor_realtime',
1490
+ description: 'Monitor performance metrics in real-time',
1491
+ inputSchema: {
1492
+ type: 'object',
1493
+ properties: {
1494
+ target: { type: 'string' },
1495
+ duration: { type: 'number', default: 60 },
1496
+ interval: { type: 'number', default: 5 }
1497
+ },
1498
+ required: ['target']
1499
+ }
1500
+ },
1501
+ {
1502
+ name: 'mcp__agentic_qe__security_scan_comprehensive',
1503
+ description: 'Comprehensive security scanning',
1504
+ inputSchema: {
1505
+ type: 'object',
1506
+ properties: {
1507
+ scanType: {
1508
+ type: 'string',
1509
+ enum: ['sast', 'dast', 'dependency', 'comprehensive'],
1510
+ default: 'comprehensive'
1511
+ },
1512
+ target: { type: 'string' },
1513
+ depth: { type: 'string', enum: ['basic', 'standard', 'deep'], default: 'standard' }
1514
+ },
1515
+ required: ['target']
1516
+ }
1517
+ },
1518
+ // Advanced MCP Tools - Requirements & Production Intelligence
1519
+ {
1520
+ name: 'mcp__agentic_qe__requirements_validate',
1521
+ description: 'Validate requirements testability with NLP analysis',
1522
+ inputSchema: {
1523
+ type: 'object',
1524
+ properties: {
1525
+ requirements: {
1526
+ type: 'array',
1527
+ items: { type: 'string' },
1528
+ description: 'Requirements to validate'
1529
+ },
1530
+ strictMode: {
1531
+ type: 'boolean',
1532
+ default: false,
1533
+ description: 'Enable strict validation mode'
1534
+ },
1535
+ generateTestSuggestions: {
1536
+ type: 'boolean',
1537
+ default: false,
1538
+ description: 'Generate test suggestions'
1539
+ }
1540
+ },
1541
+ required: ['requirements']
1542
+ }
1543
+ },
1544
+ {
1545
+ name: 'mcp__agentic_qe__requirements_generate_bdd',
1546
+ description: 'Generate BDD scenarios from requirements',
1547
+ inputSchema: {
1548
+ type: 'object',
1549
+ properties: {
1550
+ requirement: { type: 'string', description: 'Requirement text' },
1551
+ format: {
1552
+ type: 'string',
1553
+ enum: ['gherkin', 'cucumber', 'plain'],
1554
+ default: 'gherkin'
1555
+ },
1556
+ includeEdgeCases: { type: 'boolean', default: false },
1557
+ generateTestCode: { type: 'boolean', default: false },
1558
+ framework: {
1559
+ type: 'string',
1560
+ enum: ['jest', 'mocha', 'jasmine', 'cucumber-js'],
1561
+ default: 'jest'
1562
+ },
1563
+ extractTestData: { type: 'boolean', default: false }
1564
+ },
1565
+ required: ['requirement']
1566
+ }
1567
+ },
1568
+ {
1569
+ name: 'mcp__agentic_qe__production_incident_replay',
1570
+ description: 'Replay production incidents as tests',
1571
+ inputSchema: {
1572
+ type: 'object',
1573
+ properties: {
1574
+ incident: {
1575
+ type: 'object',
1576
+ properties: {
1577
+ id: { type: 'string' },
1578
+ timestamp: { type: 'string' },
1579
+ type: { type: 'string', enum: ['error', 'performance', 'security', 'availability'] },
1580
+ message: { type: 'string' },
1581
+ stackTrace: { type: 'string' },
1582
+ context: { type: 'object' },
1583
+ metrics: { type: 'object' },
1584
+ sourceCode: { type: 'string' }
1585
+ },
1586
+ required: ['id', 'timestamp', 'type', 'message']
1587
+ },
1588
+ analyzeRootCause: { type: 'boolean', default: false },
1589
+ generateRegressionTests: { type: 'boolean', default: false },
1590
+ linkSimilarIncidents: { type: 'boolean', default: false }
1591
+ },
1592
+ required: ['incident']
1593
+ }
1594
+ },
1595
+ {
1596
+ name: 'mcp__agentic_qe__production_rum_analyze',
1597
+ description: 'Analyze Real User Monitoring data',
1598
+ inputSchema: {
1599
+ type: 'object',
1600
+ properties: {
1601
+ rumData: {
1602
+ type: 'object',
1603
+ properties: {
1604
+ sessionId: { type: 'string' },
1605
+ userActions: { type: 'array' },
1606
+ metrics: { type: 'object' }
1607
+ },
1608
+ required: ['sessionId', 'userActions']
1609
+ },
1610
+ detectBottlenecks: { type: 'boolean', default: false },
1611
+ generateTests: { type: 'boolean', default: false },
1612
+ analyzeBehavior: { type: 'boolean', default: false }
1613
+ },
1614
+ required: ['rumData']
1615
+ }
1616
+ },
1617
+ {
1618
+ name: 'mcp__agentic_qe__api_breaking_changes',
1619
+ description: 'Detect API breaking changes with AST analysis',
1620
+ inputSchema: {
1621
+ type: 'object',
1622
+ properties: {
1623
+ oldAPI: { type: 'string', description: 'Old API source code' },
1624
+ newAPI: { type: 'string', description: 'New API source code' },
1625
+ language: {
1626
+ type: 'string',
1627
+ enum: ['typescript', 'javascript', 'python', 'java'],
1628
+ default: 'typescript'
1629
+ },
1630
+ calculateSemver: { type: 'boolean', default: false },
1631
+ generateMigrationGuide: { type: 'boolean', default: false }
1632
+ },
1633
+ required: ['oldAPI', 'newAPI']
1634
+ }
1635
+ },
1636
+ {
1637
+ name: 'mcp__agentic_qe__mutation_test_execute',
1638
+ description: 'Execute mutation testing with real mutations',
1639
+ inputSchema: {
1640
+ type: 'object',
1641
+ properties: {
1642
+ sourceCode: { type: 'string', description: 'Source code to mutate' },
1643
+ testCode: { type: 'string', description: 'Test code' },
1644
+ language: {
1645
+ type: 'string',
1646
+ enum: ['javascript', 'typescript', 'python'],
1647
+ default: 'javascript'
1648
+ },
1649
+ operators: {
1650
+ type: 'array',
1651
+ items: { type: 'string' },
1652
+ default: ['arithmetic', 'logical', 'relational']
1653
+ },
1654
+ timeout: { type: 'number', default: 5000 },
1655
+ calculateCoverage: { type: 'boolean', default: false },
1656
+ generateSuggestions: { type: 'boolean', default: false }
1657
+ },
1658
+ required: ['sourceCode', 'testCode']
1659
+ }
455
1660
  }
456
1661
  ];
457
1662
  /**
@@ -466,6 +1671,56 @@ exports.TOOL_NAMES = {
466
1671
  PREDICT_DEFECTS: 'mcp__agentic_qe__predict_defects',
467
1672
  FLEET_STATUS: 'mcp__agentic_qe__fleet_status',
468
1673
  TASK_ORCHESTRATE: 'mcp__agentic_qe__task_orchestrate',
469
- OPTIMIZE_TESTS: 'mcp__agentic_qe__optimize_tests'
1674
+ OPTIMIZE_TESTS: 'mcp__agentic_qe__optimize_tests',
1675
+ // Enhanced test tools
1676
+ TEST_GENERATE_ENHANCED: 'mcp__agentic_qe__test_generate_enhanced',
1677
+ TEST_EXECUTE_PARALLEL: 'mcp__agentic_qe__test_execute_parallel',
1678
+ TEST_OPTIMIZE_SUBLINEAR: 'mcp__agentic_qe__test_optimize_sublinear',
1679
+ TEST_REPORT_COMPREHENSIVE: 'mcp__agentic_qe__test_report_comprehensive',
1680
+ TEST_COVERAGE_DETAILED: 'mcp__agentic_qe__test_coverage_detailed',
1681
+ // Memory tools
1682
+ MEMORY_STORE: 'mcp__agentic_qe__memory_store',
1683
+ MEMORY_RETRIEVE: 'mcp__agentic_qe__memory_retrieve',
1684
+ MEMORY_QUERY: 'mcp__agentic_qe__memory_query',
1685
+ MEMORY_SHARE: 'mcp__agentic_qe__memory_share',
1686
+ MEMORY_BACKUP: 'mcp__agentic_qe__memory_backup',
1687
+ BLACKBOARD_POST: 'mcp__agentic_qe__blackboard_post',
1688
+ BLACKBOARD_READ: 'mcp__agentic_qe__blackboard_read',
1689
+ CONSENSUS_PROPOSE: 'mcp__agentic_qe__consensus_propose',
1690
+ CONSENSUS_VOTE: 'mcp__agentic_qe__consensus_vote',
1691
+ ARTIFACT_MANIFEST: 'mcp__agentic_qe__artifact_manifest',
1692
+ // Coordination tools (Phase 1)
1693
+ WORKFLOW_CREATE: 'mcp__agentic_qe__workflow_create',
1694
+ WORKFLOW_EXECUTE: 'mcp__agentic_qe__workflow_execute',
1695
+ WORKFLOW_CHECKPOINT: 'mcp__agentic_qe__workflow_checkpoint',
1696
+ WORKFLOW_RESUME: 'mcp__agentic_qe__workflow_resume',
1697
+ TASK_STATUS: 'mcp__agentic_qe__task_status',
1698
+ EVENT_EMIT: 'mcp__agentic_qe__event_emit',
1699
+ EVENT_SUBSCRIBE: 'mcp__agentic_qe__event_subscribe',
1700
+ // Quality gate tools
1701
+ QUALITY_GATE_EXECUTE: 'mcp__agentic_qe__quality_gate_execute',
1702
+ QUALITY_VALIDATE_METRICS: 'mcp__agentic_qe__quality_validate_metrics',
1703
+ QUALITY_RISK_ASSESS: 'mcp__agentic_qe__quality_risk_assess',
1704
+ QUALITY_DECISION_MAKE: 'mcp__agentic_qe__quality_decision_make',
1705
+ QUALITY_POLICY_CHECK: 'mcp__agentic_qe__quality_policy_check',
1706
+ // Prediction and analysis tools
1707
+ FLAKY_TEST_DETECT: 'mcp__agentic_qe__flaky_test_detect',
1708
+ PREDICT_DEFECTS_AI: 'mcp__agentic_qe__predict_defects_ai',
1709
+ REGRESSION_RISK_ANALYZE: 'mcp__agentic_qe__regression_risk_analyze',
1710
+ VISUAL_TEST_REGRESSION: 'mcp__agentic_qe__visual_test_regression',
1711
+ DEPLOYMENT_READINESS_CHECK: 'mcp__agentic_qe__deployment_readiness_check',
1712
+ // Analysis tools
1713
+ COVERAGE_ANALYZE_SUBLINEAR: 'mcp__agentic_qe__coverage_analyze_sublinear',
1714
+ COVERAGE_GAPS_DETECT: 'mcp__agentic_qe__coverage_gaps_detect',
1715
+ PERFORMANCE_BENCHMARK_RUN: 'mcp__agentic_qe__performance_benchmark_run',
1716
+ PERFORMANCE_MONITOR_REALTIME: 'mcp__agentic_qe__performance_monitor_realtime',
1717
+ SECURITY_SCAN_COMPREHENSIVE: 'mcp__agentic_qe__security_scan_comprehensive',
1718
+ // Advanced tools
1719
+ REQUIREMENTS_VALIDATE: 'mcp__agentic_qe__requirements_validate',
1720
+ REQUIREMENTS_GENERATE_BDD: 'mcp__agentic_qe__requirements_generate_bdd',
1721
+ PRODUCTION_INCIDENT_REPLAY: 'mcp__agentic_qe__production_incident_replay',
1722
+ PRODUCTION_RUM_ANALYZE: 'mcp__agentic_qe__production_rum_analyze',
1723
+ API_BREAKING_CHANGES: 'mcp__agentic_qe__api_breaking_changes',
1724
+ MUTATION_TEST_EXECUTE: 'mcp__agentic_qe__mutation_test_execute'
470
1725
  };
471
1726
  //# sourceMappingURL=tools.js.map