agentic-qe 1.0.0 → 1.0.1
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.
- package/.claude/aqe-fleet.json +3 -3
- package/CHANGELOG.md +239 -0
- package/README.md +14 -1
- package/dist/agents/ApiContractValidatorAgent.d.ts.map +1 -1
- package/dist/agents/ApiContractValidatorAgent.js +1 -1
- package/dist/agents/ApiContractValidatorAgent.js.map +1 -1
- package/dist/agents/BaseAgent.d.ts.map +1 -1
- package/dist/agents/BaseAgent.js +16 -0
- package/dist/agents/BaseAgent.js.map +1 -1
- package/dist/agents/CoverageAnalyzerAgent.d.ts.map +1 -1
- package/dist/agents/CoverageAnalyzerAgent.js +12 -8
- package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
- package/dist/agents/SecurityScannerAgent.d.ts +1 -0
- package/dist/agents/SecurityScannerAgent.d.ts.map +1 -1
- package/dist/agents/SecurityScannerAgent.js +46 -41
- package/dist/agents/SecurityScannerAgent.js.map +1 -1
- package/dist/agents/TestExecutorAgent.d.ts +1 -1
- package/dist/agents/TestExecutorAgent.d.ts.map +1 -1
- package/dist/agents/TestExecutorAgent.js +64 -13
- package/dist/agents/TestExecutorAgent.js.map +1 -1
- package/dist/cli/commands/agent/assign.d.ts +76 -0
- package/dist/cli/commands/agent/assign.d.ts.map +1 -0
- package/dist/cli/commands/agent/assign.js +280 -0
- package/dist/cli/commands/agent/assign.js.map +1 -0
- package/dist/cli/commands/agent/attach.d.ts +87 -0
- package/dist/cli/commands/agent/attach.d.ts.map +1 -0
- package/dist/cli/commands/agent/attach.js +268 -0
- package/dist/cli/commands/agent/attach.js.map +1 -0
- package/dist/cli/commands/agent/benchmark.d.ts +45 -0
- package/dist/cli/commands/agent/benchmark.d.ts.map +1 -0
- package/dist/cli/commands/agent/benchmark.js +103 -0
- package/dist/cli/commands/agent/benchmark.js.map +1 -0
- package/dist/cli/commands/agent/clone.d.ts +20 -0
- package/dist/cli/commands/agent/clone.d.ts.map +1 -0
- package/dist/cli/commands/agent/clone.js +59 -0
- package/dist/cli/commands/agent/clone.js.map +1 -0
- package/dist/cli/commands/agent/detach.d.ts +76 -0
- package/dist/cli/commands/agent/detach.d.ts.map +1 -0
- package/dist/cli/commands/agent/detach.js +250 -0
- package/dist/cli/commands/agent/detach.js.map +1 -0
- package/dist/cli/commands/agent/index.d.ts +31 -0
- package/dist/cli/commands/agent/index.d.ts.map +1 -0
- package/dist/cli/commands/agent/index.js +54 -0
- package/dist/cli/commands/agent/index.js.map +1 -0
- package/dist/cli/commands/agent/inspect.d.ts +110 -0
- package/dist/cli/commands/agent/inspect.d.ts.map +1 -0
- package/dist/cli/commands/agent/inspect.js +272 -0
- package/dist/cli/commands/agent/inspect.js.map +1 -0
- package/dist/cli/commands/agent/migrate.d.ts +24 -0
- package/dist/cli/commands/agent/migrate.d.ts.map +1 -0
- package/dist/cli/commands/agent/migrate.js +81 -0
- package/dist/cli/commands/agent/migrate.js.map +1 -0
- package/dist/cli/commands/agent/restart.d.ts +71 -0
- package/dist/cli/commands/agent/restart.d.ts.map +1 -0
- package/dist/cli/commands/agent/restart.js +227 -0
- package/dist/cli/commands/agent/restart.js.map +1 -0
- package/dist/cli/commands/config/export.d.ts +15 -0
- package/dist/cli/commands/config/export.d.ts.map +1 -0
- package/dist/cli/commands/config/export.js +94 -0
- package/dist/cli/commands/config/export.js.map +1 -0
- package/dist/cli/commands/config/get.d.ts +23 -0
- package/dist/cli/commands/config/get.d.ts.map +1 -0
- package/dist/cli/commands/config/get.js +119 -0
- package/dist/cli/commands/config/get.js.map +1 -0
- package/dist/cli/commands/config/import.d.ts +17 -0
- package/dist/cli/commands/config/import.d.ts.map +1 -0
- package/dist/cli/commands/config/import.js +138 -0
- package/dist/cli/commands/config/import.js.map +1 -0
- package/dist/cli/commands/config/index.d.ts +18 -0
- package/dist/cli/commands/config/index.d.ts.map +1 -0
- package/dist/cli/commands/config/index.js +35 -0
- package/dist/cli/commands/config/index.js.map +1 -0
- package/dist/cli/commands/config/init.d.ts +21 -0
- package/dist/cli/commands/config/init.d.ts.map +1 -0
- package/dist/cli/commands/config/init.js +171 -0
- package/dist/cli/commands/config/init.js.map +1 -0
- package/dist/cli/commands/config/list.d.ts +5 -0
- package/dist/cli/commands/config/list.d.ts.map +1 -0
- package/dist/cli/commands/config/list.js +40 -0
- package/dist/cli/commands/config/list.js.map +1 -0
- package/dist/cli/commands/config/reset.d.ts +5 -0
- package/dist/cli/commands/config/reset.d.ts.map +1 -0
- package/dist/cli/commands/config/reset.js +45 -0
- package/dist/cli/commands/config/reset.js.map +1 -0
- package/dist/cli/commands/config/schema.d.ts +115 -0
- package/dist/cli/commands/config/schema.d.ts.map +1 -0
- package/dist/cli/commands/config/schema.js +98 -0
- package/dist/cli/commands/config/schema.js.map +1 -0
- package/dist/cli/commands/config/set.d.ts +19 -0
- package/dist/cli/commands/config/set.d.ts.map +1 -0
- package/dist/cli/commands/config/set.js +133 -0
- package/dist/cli/commands/config/set.js.map +1 -0
- package/dist/cli/commands/config/validate.d.ts +23 -0
- package/dist/cli/commands/config/validate.d.ts.map +1 -0
- package/dist/cli/commands/config/validate.js +155 -0
- package/dist/cli/commands/config/validate.js.map +1 -0
- package/dist/cli/commands/debug/agent.d.ts +40 -0
- package/dist/cli/commands/debug/agent.d.ts.map +1 -0
- package/dist/cli/commands/debug/agent.js +175 -0
- package/dist/cli/commands/debug/agent.js.map +1 -0
- package/dist/cli/commands/debug/diagnostics.d.ts +27 -0
- package/dist/cli/commands/debug/diagnostics.d.ts.map +1 -0
- package/dist/cli/commands/debug/diagnostics.js +377 -0
- package/dist/cli/commands/debug/diagnostics.js.map +1 -0
- package/dist/cli/commands/debug/health-check.d.ts +38 -0
- package/dist/cli/commands/debug/health-check.d.ts.map +1 -0
- package/dist/cli/commands/debug/health-check.js +317 -0
- package/dist/cli/commands/debug/health-check.js.map +1 -0
- package/dist/cli/commands/debug/index.d.ts +17 -0
- package/dist/cli/commands/debug/index.d.ts.map +1 -0
- package/dist/cli/commands/debug/index.js +20 -0
- package/dist/cli/commands/debug/index.js.map +1 -0
- package/dist/cli/commands/debug/profile.d.ts +84 -0
- package/dist/cli/commands/debug/profile.d.ts.map +1 -0
- package/dist/cli/commands/debug/profile.js +366 -0
- package/dist/cli/commands/debug/profile.js.map +1 -0
- package/dist/cli/commands/debug/trace.d.ts +40 -0
- package/dist/cli/commands/debug/trace.d.ts.map +1 -0
- package/dist/cli/commands/debug/trace.js +243 -0
- package/dist/cli/commands/debug/trace.js.map +1 -0
- package/dist/cli/commands/debug/troubleshoot.d.ts +38 -0
- package/dist/cli/commands/debug/troubleshoot.d.ts.map +1 -0
- package/dist/cli/commands/debug/troubleshoot.js +315 -0
- package/dist/cli/commands/debug/troubleshoot.js.map +1 -0
- package/dist/cli/commands/fleet/backup.d.ts +49 -0
- package/dist/cli/commands/fleet/backup.d.ts.map +1 -0
- package/dist/cli/commands/fleet/backup.js +89 -0
- package/dist/cli/commands/fleet/backup.js.map +1 -0
- package/dist/cli/commands/fleet/health.d.ts +24 -0
- package/dist/cli/commands/fleet/health.d.ts.map +1 -0
- package/dist/cli/commands/fleet/health.js +407 -0
- package/dist/cli/commands/fleet/health.js.map +1 -0
- package/dist/cli/commands/fleet/init.d.ts +11 -0
- package/dist/cli/commands/fleet/init.d.ts.map +1 -0
- package/dist/cli/commands/fleet/init.js +81 -0
- package/dist/cli/commands/fleet/init.js.map +1 -0
- package/dist/cli/commands/fleet/logs.d.ts +21 -0
- package/dist/cli/commands/fleet/logs.d.ts.map +1 -0
- package/dist/cli/commands/fleet/logs.js +256 -0
- package/dist/cli/commands/fleet/logs.js.map +1 -0
- package/dist/cli/commands/fleet/metrics.d.ts +27 -0
- package/dist/cli/commands/fleet/metrics.d.ts.map +1 -0
- package/dist/cli/commands/fleet/metrics.js +358 -0
- package/dist/cli/commands/fleet/metrics.js.map +1 -0
- package/dist/cli/commands/fleet/monitor.d.ts +18 -0
- package/dist/cli/commands/fleet/monitor.d.ts.map +1 -0
- package/dist/cli/commands/fleet/monitor.js +224 -0
- package/dist/cli/commands/fleet/monitor.js.map +1 -0
- package/dist/cli/commands/fleet/optimize.d.ts +42 -0
- package/dist/cli/commands/fleet/optimize.d.ts.map +1 -0
- package/dist/cli/commands/fleet/optimize.js +136 -0
- package/dist/cli/commands/fleet/optimize.js.map +1 -0
- package/dist/cli/commands/fleet/recover.d.ts +22 -0
- package/dist/cli/commands/fleet/recover.d.ts.map +1 -0
- package/dist/cli/commands/fleet/recover.js +100 -0
- package/dist/cli/commands/fleet/recover.js.map +1 -0
- package/dist/cli/commands/fleet/restart.d.ts +18 -0
- package/dist/cli/commands/fleet/restart.d.ts.map +1 -0
- package/dist/cli/commands/fleet/restart.js +280 -0
- package/dist/cli/commands/fleet/restart.js.map +1 -0
- package/dist/cli/commands/fleet/scale.d.ts +9 -0
- package/dist/cli/commands/fleet/scale.d.ts.map +1 -0
- package/dist/cli/commands/fleet/scale.js +67 -0
- package/dist/cli/commands/fleet/scale.js.map +1 -0
- package/dist/cli/commands/fleet/shutdown.d.ts +19 -0
- package/dist/cli/commands/fleet/shutdown.d.ts.map +1 -0
- package/dist/cli/commands/fleet/shutdown.js +297 -0
- package/dist/cli/commands/fleet/shutdown.js.map +1 -0
- package/dist/cli/commands/fleet/status.d.ts +10 -0
- package/dist/cli/commands/fleet/status.d.ts.map +1 -0
- package/dist/cli/commands/fleet/status.js +87 -0
- package/dist/cli/commands/fleet/status.js.map +1 -0
- package/dist/cli/commands/fleet/topology.d.ts +23 -0
- package/dist/cli/commands/fleet/topology.d.ts.map +1 -0
- package/dist/cli/commands/fleet/topology.js +365 -0
- package/dist/cli/commands/fleet/topology.js.map +1 -0
- package/dist/cli/commands/memory/compact.d.ts +19 -0
- package/dist/cli/commands/memory/compact.d.ts.map +1 -0
- package/dist/cli/commands/memory/compact.js +70 -0
- package/dist/cli/commands/memory/compact.js.map +1 -0
- package/dist/cli/commands/memory/index.d.ts +9 -0
- package/dist/cli/commands/memory/index.d.ts.map +1 -0
- package/dist/cli/commands/memory/index.js +25 -0
- package/dist/cli/commands/memory/index.js.map +1 -0
- package/dist/cli/commands/memory/stats.d.ts +30 -0
- package/dist/cli/commands/memory/stats.d.ts.map +1 -0
- package/dist/cli/commands/memory/stats.js +74 -0
- package/dist/cli/commands/memory/stats.js.map +1 -0
- package/dist/cli/commands/memory/vacuum.d.ts +24 -0
- package/dist/cli/commands/memory/vacuum.d.ts.map +1 -0
- package/dist/cli/commands/memory/vacuum.js +105 -0
- package/dist/cli/commands/memory/vacuum.js.map +1 -0
- package/dist/cli/commands/monitor/alerts.d.ts +45 -0
- package/dist/cli/commands/monitor/alerts.d.ts.map +1 -0
- package/dist/cli/commands/monitor/alerts.js +157 -0
- package/dist/cli/commands/monitor/alerts.js.map +1 -0
- package/dist/cli/commands/monitor/analyze.d.ts +49 -0
- package/dist/cli/commands/monitor/analyze.d.ts.map +1 -0
- package/dist/cli/commands/monitor/analyze.js +199 -0
- package/dist/cli/commands/monitor/analyze.js.map +1 -0
- package/dist/cli/commands/monitor/compare.d.ts +38 -0
- package/dist/cli/commands/monitor/compare.d.ts.map +1 -0
- package/dist/cli/commands/monitor/compare.js +167 -0
- package/dist/cli/commands/monitor/compare.js.map +1 -0
- package/dist/cli/commands/monitor/dashboard.d.ts +34 -0
- package/dist/cli/commands/monitor/dashboard.d.ts.map +1 -0
- package/dist/cli/commands/monitor/dashboard.js +147 -0
- package/dist/cli/commands/monitor/dashboard.js.map +1 -0
- package/dist/cli/commands/monitor/export.d.ts +36 -0
- package/dist/cli/commands/monitor/export.d.ts.map +1 -0
- package/dist/cli/commands/monitor/export.js +147 -0
- package/dist/cli/commands/monitor/export.js.map +1 -0
- package/dist/cli/commands/monitor/index.d.ts +11 -0
- package/dist/cli/commands/monitor/index.d.ts.map +1 -0
- package/dist/cli/commands/monitor/index.js +14 -0
- package/dist/cli/commands/monitor/index.js.map +1 -0
- package/dist/cli/commands/quality/baseline.d.ts +27 -0
- package/dist/cli/commands/quality/baseline.d.ts.map +1 -0
- package/dist/cli/commands/quality/baseline.js +125 -0
- package/dist/cli/commands/quality/baseline.js.map +1 -0
- package/dist/cli/commands/quality/compare.d.ts +36 -0
- package/dist/cli/commands/quality/compare.d.ts.map +1 -0
- package/dist/cli/commands/quality/compare.js +137 -0
- package/dist/cli/commands/quality/compare.js.map +1 -0
- package/dist/cli/commands/quality/decision.d.ts +81 -0
- package/dist/cli/commands/quality/decision.d.ts.map +1 -0
- package/dist/cli/commands/quality/decision.js +317 -0
- package/dist/cli/commands/quality/decision.js.map +1 -0
- package/dist/cli/commands/quality/gate.d.ts +47 -0
- package/dist/cli/commands/quality/gate.d.ts.map +1 -0
- package/dist/cli/commands/quality/gate.js +203 -0
- package/dist/cli/commands/quality/gate.js.map +1 -0
- package/dist/cli/commands/quality/index.d.ts +17 -0
- package/dist/cli/commands/quality/index.d.ts.map +1 -0
- package/dist/cli/commands/quality/index.js +41 -0
- package/dist/cli/commands/quality/index.js.map +1 -0
- package/dist/cli/commands/quality/policy.d.ts +57 -0
- package/dist/cli/commands/quality/policy.d.ts.map +1 -0
- package/dist/cli/commands/quality/policy.js +347 -0
- package/dist/cli/commands/quality/policy.js.map +1 -0
- package/dist/cli/commands/quality/risk.d.ts +41 -0
- package/dist/cli/commands/quality/risk.d.ts.map +1 -0
- package/dist/cli/commands/quality/risk.js +253 -0
- package/dist/cli/commands/quality/risk.js.map +1 -0
- package/dist/cli/commands/quality/trends.d.ts +40 -0
- package/dist/cli/commands/quality/trends.d.ts.map +1 -0
- package/dist/cli/commands/quality/trends.js +123 -0
- package/dist/cli/commands/quality/trends.js.map +1 -0
- package/dist/cli/commands/quality/validate.d.ts +44 -0
- package/dist/cli/commands/quality/validate.d.ts.map +1 -0
- package/dist/cli/commands/quality/validate.js +222 -0
- package/dist/cli/commands/quality/validate.js.map +1 -0
- package/dist/cli/commands/test/analyze-failures.d.ts +39 -0
- package/dist/cli/commands/test/analyze-failures.d.ts.map +1 -0
- package/dist/cli/commands/test/analyze-failures.js +114 -0
- package/dist/cli/commands/test/analyze-failures.js.map +1 -0
- package/dist/cli/commands/test/clean.d.ts +3 -0
- package/dist/cli/commands/test/clean.d.ts.map +1 -0
- package/dist/cli/commands/test/clean.js +122 -0
- package/dist/cli/commands/test/clean.js.map +1 -0
- package/dist/cli/commands/test/debug.d.ts +3 -0
- package/dist/cli/commands/test/debug.d.ts.map +1 -0
- package/dist/cli/commands/test/debug.js +158 -0
- package/dist/cli/commands/test/debug.js.map +1 -0
- package/dist/cli/commands/test/diff.d.ts +3 -0
- package/dist/cli/commands/test/diff.d.ts.map +1 -0
- package/dist/cli/commands/test/diff.js +219 -0
- package/dist/cli/commands/test/diff.js.map +1 -0
- package/dist/cli/commands/test/flakiness.d.ts +32 -0
- package/dist/cli/commands/test/flakiness.d.ts.map +1 -0
- package/dist/cli/commands/test/flakiness.js +122 -0
- package/dist/cli/commands/test/flakiness.js.map +1 -0
- package/dist/cli/commands/test/index.d.ts +17 -0
- package/dist/cli/commands/test/index.d.ts.map +1 -0
- package/dist/cli/commands/test/index.js +45 -0
- package/dist/cli/commands/test/index.js.map +1 -0
- package/dist/cli/commands/test/mutate.d.ts +29 -0
- package/dist/cli/commands/test/mutate.d.ts.map +1 -0
- package/dist/cli/commands/test/mutate.js +163 -0
- package/dist/cli/commands/test/mutate.js.map +1 -0
- package/dist/cli/commands/test/parallel.d.ts +3 -0
- package/dist/cli/commands/test/parallel.d.ts.map +1 -0
- package/dist/cli/commands/test/parallel.js +116 -0
- package/dist/cli/commands/test/parallel.js.map +1 -0
- package/dist/cli/commands/test/profile.d.ts +3 -0
- package/dist/cli/commands/test/profile.d.ts.map +1 -0
- package/dist/cli/commands/test/profile.js +179 -0
- package/dist/cli/commands/test/profile.js.map +1 -0
- package/dist/cli/commands/test/queue.d.ts +3 -0
- package/dist/cli/commands/test/queue.d.ts.map +1 -0
- package/dist/cli/commands/test/queue.js +140 -0
- package/dist/cli/commands/test/queue.js.map +1 -0
- package/dist/cli/commands/test/retry.d.ts +3 -0
- package/dist/cli/commands/test/retry.d.ts.map +1 -0
- package/dist/cli/commands/test/retry.js +104 -0
- package/dist/cli/commands/test/retry.js.map +1 -0
- package/dist/cli/commands/test/snapshot.d.ts +3 -0
- package/dist/cli/commands/test/snapshot.d.ts.map +1 -0
- package/dist/cli/commands/test/snapshot.js +177 -0
- package/dist/cli/commands/test/snapshot.js.map +1 -0
- package/dist/cli/commands/test/trace.d.ts +3 -0
- package/dist/cli/commands/test/trace.d.ts.map +1 -0
- package/dist/cli/commands/test/trace.js +160 -0
- package/dist/cli/commands/test/trace.js.map +1 -0
- package/dist/cli/commands/test/watch.d.ts +3 -0
- package/dist/cli/commands/test/watch.d.ts.map +1 -0
- package/dist/cli/commands/test/watch.js +130 -0
- package/dist/cli/commands/test/watch.js.map +1 -0
- package/dist/cli/commands/workflow/cancel.d.ts +55 -0
- package/dist/cli/commands/workflow/cancel.d.ts.map +1 -0
- package/dist/cli/commands/workflow/cancel.js +331 -0
- package/dist/cli/commands/workflow/cancel.js.map +1 -0
- package/dist/cli/commands/workflow/index.d.ts +11 -0
- package/dist/cli/commands/workflow/index.d.ts.map +1 -0
- package/dist/cli/commands/workflow/index.js +20 -0
- package/dist/cli/commands/workflow/index.js.map +1 -0
- package/dist/cli/commands/workflow/list.d.ts +43 -0
- package/dist/cli/commands/workflow/list.d.ts.map +1 -0
- package/dist/cli/commands/workflow/list.js +257 -0
- package/dist/cli/commands/workflow/list.js.map +1 -0
- package/dist/cli/commands/workflow/pause.d.ts +44 -0
- package/dist/cli/commands/workflow/pause.d.ts.map +1 -0
- package/dist/cli/commands/workflow/pause.js +222 -0
- package/dist/cli/commands/workflow/pause.js.map +1 -0
- package/dist/cli/index.js +311 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/core/Agent.d.ts.map +1 -1
- package/dist/core/Agent.js +18 -8
- package/dist/core/Agent.js.map +1 -1
- package/dist/core/ArtifactWorkflow.d.ts +149 -0
- package/dist/core/ArtifactWorkflow.d.ts.map +1 -0
- package/dist/core/ArtifactWorkflow.js +347 -0
- package/dist/core/ArtifactWorkflow.js.map +1 -0
- package/dist/core/EventBus.d.ts.map +1 -1
- package/dist/core/EventBus.js +18 -12
- package/dist/core/EventBus.js.map +1 -1
- package/dist/core/coordination/BlackboardCoordination.d.ts +44 -0
- package/dist/core/coordination/BlackboardCoordination.d.ts.map +1 -0
- package/dist/core/coordination/BlackboardCoordination.js +95 -0
- package/dist/core/coordination/BlackboardCoordination.js.map +1 -0
- package/dist/core/coordination/ConsensusGating.d.ts +53 -0
- package/dist/core/coordination/ConsensusGating.d.ts.map +1 -0
- package/dist/core/coordination/ConsensusGating.js +137 -0
- package/dist/core/coordination/ConsensusGating.js.map +1 -0
- package/dist/core/coordination/GOAPCoordination.d.ts +79 -0
- package/dist/core/coordination/GOAPCoordination.d.ts.map +1 -0
- package/dist/core/coordination/GOAPCoordination.js +178 -0
- package/dist/core/coordination/GOAPCoordination.js.map +1 -0
- package/dist/core/coordination/OODACoordination.d.ts +99 -0
- package/dist/core/coordination/OODACoordination.d.ts.map +1 -0
- package/dist/core/coordination/OODACoordination.js +207 -0
- package/dist/core/coordination/OODACoordination.js.map +1 -0
- package/dist/core/coordination/index.d.ts +19 -0
- package/dist/core/coordination/index.d.ts.map +1 -0
- package/dist/core/coordination/index.js +22 -0
- package/dist/core/coordination/index.js.map +1 -0
- package/dist/core/events/QEEventBus.d.ts +62 -0
- package/dist/core/events/QEEventBus.d.ts.map +1 -0
- package/dist/core/events/QEEventBus.js +109 -0
- package/dist/core/events/QEEventBus.js.map +1 -0
- package/dist/core/events/index.d.ts +7 -0
- package/dist/core/events/index.d.ts.map +1 -0
- package/dist/core/events/index.js +25 -0
- package/dist/core/events/index.js.map +1 -0
- package/dist/core/events/types.d.ts +72 -0
- package/dist/core/events/types.d.ts.map +1 -0
- package/dist/core/events/types.js +6 -0
- package/dist/core/events/types.js.map +1 -0
- package/dist/core/hooks/RollbackManager.d.ts +90 -0
- package/dist/core/hooks/RollbackManager.d.ts.map +1 -0
- package/dist/core/hooks/RollbackManager.js +214 -0
- package/dist/core/hooks/RollbackManager.js.map +1 -0
- package/dist/core/hooks/VerificationHookManager.d.ts +134 -0
- package/dist/core/hooks/VerificationHookManager.d.ts.map +1 -0
- package/dist/core/hooks/VerificationHookManager.js +293 -0
- package/dist/core/hooks/VerificationHookManager.js.map +1 -0
- package/dist/core/hooks/checkers/ConfigurationChecker.d.ts +31 -0
- package/dist/core/hooks/checkers/ConfigurationChecker.d.ts.map +1 -0
- package/dist/core/hooks/checkers/ConfigurationChecker.js +98 -0
- package/dist/core/hooks/checkers/ConfigurationChecker.js.map +1 -0
- package/dist/core/hooks/checkers/EnvironmentChecker.d.ts +23 -0
- package/dist/core/hooks/checkers/EnvironmentChecker.d.ts.map +1 -0
- package/dist/core/hooks/checkers/EnvironmentChecker.js +93 -0
- package/dist/core/hooks/checkers/EnvironmentChecker.js.map +1 -0
- package/dist/core/hooks/checkers/PermissionChecker.d.ts +26 -0
- package/dist/core/hooks/checkers/PermissionChecker.d.ts.map +1 -0
- package/dist/core/hooks/checkers/PermissionChecker.js +136 -0
- package/dist/core/hooks/checkers/PermissionChecker.js.map +1 -0
- package/dist/core/hooks/checkers/ResourceChecker.d.ts +24 -0
- package/dist/core/hooks/checkers/ResourceChecker.d.ts.map +1 -0
- package/dist/core/hooks/checkers/ResourceChecker.js +97 -0
- package/dist/core/hooks/checkers/ResourceChecker.js.map +1 -0
- package/dist/core/hooks/checkers/index.d.ts +12 -0
- package/dist/core/hooks/checkers/index.d.ts.map +1 -0
- package/dist/core/hooks/checkers/index.js +15 -0
- package/dist/core/hooks/checkers/index.js.map +1 -0
- package/dist/core/hooks/index.d.ts +16 -0
- package/dist/core/hooks/index.d.ts.map +1 -0
- package/dist/core/hooks/index.js +34 -0
- package/dist/core/hooks/index.js.map +1 -0
- package/dist/core/hooks/validators/CoverageValidator.d.ts +38 -0
- package/dist/core/hooks/validators/CoverageValidator.d.ts.map +1 -0
- package/dist/core/hooks/validators/CoverageValidator.js +68 -0
- package/dist/core/hooks/validators/CoverageValidator.js.map +1 -0
- package/dist/core/hooks/validators/OutputValidator.d.ts +19 -0
- package/dist/core/hooks/validators/OutputValidator.d.ts.map +1 -0
- package/dist/core/hooks/validators/OutputValidator.js +57 -0
- package/dist/core/hooks/validators/OutputValidator.js.map +1 -0
- package/dist/core/hooks/validators/PerformanceValidator.d.ts +39 -0
- package/dist/core/hooks/validators/PerformanceValidator.d.ts.map +1 -0
- package/dist/core/hooks/validators/PerformanceValidator.js +97 -0
- package/dist/core/hooks/validators/PerformanceValidator.js.map +1 -0
- package/dist/core/hooks/validators/QualityValidator.d.ts +32 -0
- package/dist/core/hooks/validators/QualityValidator.d.ts.map +1 -0
- package/dist/core/hooks/validators/QualityValidator.js +71 -0
- package/dist/core/hooks/validators/QualityValidator.js.map +1 -0
- package/dist/core/hooks/validators/index.d.ts +12 -0
- package/dist/core/hooks/validators/index.d.ts.map +1 -0
- package/dist/core/hooks/validators/index.js +15 -0
- package/dist/core/hooks/validators/index.js.map +1 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +3 -1
- package/dist/core/index.js.map +1 -1
- package/dist/core/memory/AccessControl.d.ts +139 -0
- package/dist/core/memory/AccessControl.d.ts.map +1 -0
- package/dist/core/memory/AccessControl.js +269 -0
- package/dist/core/memory/AccessControl.js.map +1 -0
- package/dist/core/memory/CompressionManager.d.ts +85 -0
- package/dist/core/memory/CompressionManager.d.ts.map +1 -0
- package/dist/core/memory/CompressionManager.js +227 -0
- package/dist/core/memory/CompressionManager.js.map +1 -0
- package/dist/core/memory/EncryptionManager.d.ts +86 -0
- package/dist/core/memory/EncryptionManager.d.ts.map +1 -0
- package/dist/core/memory/EncryptionManager.js +213 -0
- package/dist/core/memory/EncryptionManager.js.map +1 -0
- package/dist/core/memory/EnhancedSwarmMemoryManager.d.ts +91 -0
- package/dist/core/memory/EnhancedSwarmMemoryManager.d.ts.map +1 -0
- package/dist/core/memory/EnhancedSwarmMemoryManager.js +216 -0
- package/dist/core/memory/EnhancedSwarmMemoryManager.js.map +1 -0
- package/dist/core/memory/SwarmMemoryManager.d.ts +295 -0
- package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -0
- package/dist/core/memory/SwarmMemoryManager.js +1407 -0
- package/dist/core/memory/SwarmMemoryManager.js.map +1 -0
- package/dist/core/memory/VersionHistory.d.ts +88 -0
- package/dist/core/memory/VersionHistory.d.ts.map +1 -0
- package/dist/core/memory/VersionHistory.js +239 -0
- package/dist/core/memory/VersionHistory.js.map +1 -0
- package/dist/core/memory/index.d.ts +11 -0
- package/dist/core/memory/index.d.ts.map +1 -0
- package/dist/core/memory/index.js +18 -0
- package/dist/core/memory/index.js.map +1 -0
- package/dist/coverage/coverage-collector.d.ts +63 -8
- package/dist/coverage/coverage-collector.d.ts.map +1 -1
- package/dist/coverage/coverage-collector.js +354 -14
- package/dist/coverage/coverage-collector.js.map +1 -1
- package/dist/coverage/coverage-reporter.d.ts +48 -11
- package/dist/coverage/coverage-reporter.d.ts.map +1 -1
- package/dist/coverage/coverage-reporter.js +424 -14
- package/dist/coverage/coverage-reporter.js.map +1 -1
- package/dist/mcp/handlers/advanced/api-breaking-changes.d.ts +7 -0
- package/dist/mcp/handlers/advanced/api-breaking-changes.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/api-breaking-changes.js +217 -0
- package/dist/mcp/handlers/advanced/api-breaking-changes.js.map +1 -0
- package/dist/mcp/handlers/advanced/index.d.ts +10 -0
- package/dist/mcp/handlers/advanced/index.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/index.js +19 -0
- package/dist/mcp/handlers/advanced/index.js.map +1 -0
- package/dist/mcp/handlers/advanced/mutation-test-execute.d.ts +7 -0
- package/dist/mcp/handlers/advanced/mutation-test-execute.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/mutation-test-execute.js +230 -0
- package/dist/mcp/handlers/advanced/mutation-test-execute.js.map +1 -0
- package/dist/mcp/handlers/advanced/production-incident-replay.d.ts +7 -0
- package/dist/mcp/handlers/advanced/production-incident-replay.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/production-incident-replay.js +228 -0
- package/dist/mcp/handlers/advanced/production-incident-replay.js.map +1 -0
- package/dist/mcp/handlers/advanced/production-rum-analyze.d.ts +7 -0
- package/dist/mcp/handlers/advanced/production-rum-analyze.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/production-rum-analyze.js +289 -0
- package/dist/mcp/handlers/advanced/production-rum-analyze.js.map +1 -0
- package/dist/mcp/handlers/advanced/requirements-generate-bdd.d.ts +7 -0
- package/dist/mcp/handlers/advanced/requirements-generate-bdd.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/requirements-generate-bdd.js +268 -0
- package/dist/mcp/handlers/advanced/requirements-generate-bdd.js.map +1 -0
- package/dist/mcp/handlers/advanced/requirements-validate.d.ts +7 -0
- package/dist/mcp/handlers/advanced/requirements-validate.d.ts.map +1 -0
- package/dist/mcp/handlers/advanced/requirements-validate.js +176 -0
- package/dist/mcp/handlers/advanced/requirements-validate.js.map +1 -0
- package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.d.ts +10 -0
- package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.js +31 -0
- package/dist/mcp/handlers/analysis/coverage-analyze-sublinear-handler.js.map +1 -0
- package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.d.ts +14 -0
- package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.js +55 -0
- package/dist/mcp/handlers/analysis/coverage-gaps-detect-handler.js.map +1 -0
- package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.d.ts +35 -0
- package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.js +163 -0
- package/dist/mcp/handlers/analysis/coverageAnalyzeSublinear.js.map +1 -0
- package/dist/mcp/handlers/analysis/coverageGapsDetect.d.ts +56 -0
- package/dist/mcp/handlers/analysis/coverageGapsDetect.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/coverageGapsDetect.js +204 -0
- package/dist/mcp/handlers/analysis/coverageGapsDetect.js.map +1 -0
- package/dist/mcp/handlers/analysis/index.d.ts +15 -0
- package/dist/mcp/handlers/analysis/index.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/index.js +18 -0
- package/dist/mcp/handlers/analysis/index.js.map +1 -0
- package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.d.ts +15 -0
- package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.js +47 -0
- package/dist/mcp/handlers/analysis/performance-benchmark-run-handler.js.map +1 -0
- package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.d.ts +15 -0
- package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.js +55 -0
- package/dist/mcp/handlers/analysis/performance-monitor-realtime-handler.js.map +1 -0
- package/dist/mcp/handlers/analysis/performanceBenchmarkRun.d.ts +58 -0
- package/dist/mcp/handlers/analysis/performanceBenchmarkRun.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/performanceBenchmarkRun.js +188 -0
- package/dist/mcp/handlers/analysis/performanceBenchmarkRun.js.map +1 -0
- package/dist/mcp/handlers/analysis/performanceMonitorRealtime.d.ts +58 -0
- package/dist/mcp/handlers/analysis/performanceMonitorRealtime.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/performanceMonitorRealtime.js +185 -0
- package/dist/mcp/handlers/analysis/performanceMonitorRealtime.js.map +1 -0
- package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.d.ts +15 -0
- package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.js +70 -0
- package/dist/mcp/handlers/analysis/security-scan-comprehensive-handler.js.map +1 -0
- package/dist/mcp/handlers/analysis/securityScanComprehensive.d.ts +66 -0
- package/dist/mcp/handlers/analysis/securityScanComprehensive.d.ts.map +1 -0
- package/dist/mcp/handlers/analysis/securityScanComprehensive.js +300 -0
- package/dist/mcp/handlers/analysis/securityScanComprehensive.js.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts +18 -0
- package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-inject-failure.js +278 -0
- package/dist/mcp/handlers/chaos/chaos-inject-failure.js.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts +18 -0
- package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-inject-latency.js +215 -0
- package/dist/mcp/handlers/chaos/chaos-inject-latency.js.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-resilience-test.d.ts +18 -0
- package/dist/mcp/handlers/chaos/chaos-resilience-test.d.ts.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-resilience-test.js +430 -0
- package/dist/mcp/handlers/chaos/chaos-resilience-test.js.map +1 -0
- package/dist/mcp/handlers/chaos/index.d.ts +8 -0
- package/dist/mcp/handlers/chaos/index.d.ts.map +1 -0
- package/dist/mcp/handlers/chaos/index.js +19 -0
- package/dist/mcp/handlers/chaos/index.js.map +1 -0
- package/dist/mcp/handlers/coordination/event-emit.d.ts +47 -0
- package/dist/mcp/handlers/coordination/event-emit.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/event-emit.js +96 -0
- package/dist/mcp/handlers/coordination/event-emit.js.map +1 -0
- package/dist/mcp/handlers/coordination/event-subscribe.d.ts +49 -0
- package/dist/mcp/handlers/coordination/event-subscribe.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/event-subscribe.js +210 -0
- package/dist/mcp/handlers/coordination/event-subscribe.js.map +1 -0
- package/dist/mcp/handlers/coordination/index.d.ts +22 -0
- package/dist/mcp/handlers/coordination/index.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/index.js +25 -0
- package/dist/mcp/handlers/coordination/index.js.map +1 -0
- package/dist/mcp/handlers/coordination/task-status.d.ts +75 -0
- package/dist/mcp/handlers/coordination/task-status.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/task-status.js +134 -0
- package/dist/mcp/handlers/coordination/task-status.js.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-checkpoint.d.ts +45 -0
- package/dist/mcp/handlers/coordination/workflow-checkpoint.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-checkpoint.js +114 -0
- package/dist/mcp/handlers/coordination/workflow-checkpoint.js.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-create.d.ts +71 -0
- package/dist/mcp/handlers/coordination/workflow-create.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-create.js +163 -0
- package/dist/mcp/handlers/coordination/workflow-create.js.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-execute.d.ts +61 -0
- package/dist/mcp/handlers/coordination/workflow-execute.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-execute.js +160 -0
- package/dist/mcp/handlers/coordination/workflow-execute.js.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-resume.d.ts +49 -0
- package/dist/mcp/handlers/coordination/workflow-resume.d.ts.map +1 -0
- package/dist/mcp/handlers/coordination/workflow-resume.js +124 -0
- package/dist/mcp/handlers/coordination/workflow-resume.js.map +1 -0
- package/dist/mcp/handlers/integration/contract-validate.d.ts +10 -0
- package/dist/mcp/handlers/integration/contract-validate.d.ts.map +1 -0
- package/dist/mcp/handlers/integration/contract-validate.js +349 -0
- package/dist/mcp/handlers/integration/contract-validate.js.map +1 -0
- package/dist/mcp/handlers/integration/dependency-check.d.ts +10 -0
- package/dist/mcp/handlers/integration/dependency-check.d.ts.map +1 -0
- package/dist/mcp/handlers/integration/dependency-check.js +253 -0
- package/dist/mcp/handlers/integration/dependency-check.js.map +1 -0
- package/dist/mcp/handlers/integration/index.d.ts +9 -0
- package/dist/mcp/handlers/integration/index.d.ts.map +1 -0
- package/dist/mcp/handlers/integration/index.js +14 -0
- package/dist/mcp/handlers/integration/index.js.map +1 -0
- package/dist/mcp/handlers/integration/integration-test-orchestrate.d.ts +10 -0
- package/dist/mcp/handlers/integration/integration-test-orchestrate.d.ts.map +1 -0
- package/dist/mcp/handlers/integration/integration-test-orchestrate.js +242 -0
- package/dist/mcp/handlers/integration/integration-test-orchestrate.js.map +1 -0
- package/dist/mcp/handlers/memory/artifact-manifest.d.ts +57 -0
- package/dist/mcp/handlers/memory/artifact-manifest.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/artifact-manifest.js +176 -0
- package/dist/mcp/handlers/memory/artifact-manifest.js.map +1 -0
- package/dist/mcp/handlers/memory/blackboard-post.d.ts +50 -0
- package/dist/mcp/handlers/memory/blackboard-post.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/blackboard-post.js +88 -0
- package/dist/mcp/handlers/memory/blackboard-post.js.map +1 -0
- package/dist/mcp/handlers/memory/blackboard-read.d.ts +33 -0
- package/dist/mcp/handlers/memory/blackboard-read.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/blackboard-read.js +81 -0
- package/dist/mcp/handlers/memory/blackboard-read.js.map +1 -0
- package/dist/mcp/handlers/memory/consensus-propose.d.ts +57 -0
- package/dist/mcp/handlers/memory/consensus-propose.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/consensus-propose.js +99 -0
- package/dist/mcp/handlers/memory/consensus-propose.js.map +1 -0
- package/dist/mcp/handlers/memory/consensus-vote.d.ts +37 -0
- package/dist/mcp/handlers/memory/consensus-vote.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/consensus-vote.js +131 -0
- package/dist/mcp/handlers/memory/consensus-vote.js.map +1 -0
- package/dist/mcp/handlers/memory/memory-backup.d.ts +49 -0
- package/dist/mcp/handlers/memory/memory-backup.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/memory-backup.js +154 -0
- package/dist/mcp/handlers/memory/memory-backup.js.map +1 -0
- package/dist/mcp/handlers/memory/memory-query.d.ts +35 -0
- package/dist/mcp/handlers/memory/memory-query.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/memory-query.js +96 -0
- package/dist/mcp/handlers/memory/memory-query.js.map +1 -0
- package/dist/mcp/handlers/memory/memory-retrieve.d.ts +32 -0
- package/dist/mcp/handlers/memory/memory-retrieve.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/memory-retrieve.js +91 -0
- package/dist/mcp/handlers/memory/memory-retrieve.js.map +1 -0
- package/dist/mcp/handlers/memory/memory-share.d.ts +39 -0
- package/dist/mcp/handlers/memory/memory-share.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/memory-share.js +96 -0
- package/dist/mcp/handlers/memory/memory-share.js.map +1 -0
- package/dist/mcp/handlers/memory/memory-store.d.ts +47 -0
- package/dist/mcp/handlers/memory/memory-store.d.ts.map +1 -0
- package/dist/mcp/handlers/memory/memory-store.js +107 -0
- package/dist/mcp/handlers/memory/memory-store.js.map +1 -0
- package/dist/mcp/handlers/prediction/deployment-readiness-check.d.ts +157 -0
- package/dist/mcp/handlers/prediction/deployment-readiness-check.d.ts.map +1 -0
- package/dist/mcp/handlers/prediction/deployment-readiness-check.js +483 -0
- package/dist/mcp/handlers/prediction/deployment-readiness-check.js.map +1 -0
- package/dist/mcp/handlers/prediction/flaky-test-detect.d.ts +178 -0
- package/dist/mcp/handlers/prediction/flaky-test-detect.d.ts.map +1 -0
- package/dist/mcp/handlers/prediction/flaky-test-detect.js +438 -0
- package/dist/mcp/handlers/prediction/flaky-test-detect.js.map +1 -0
- package/dist/mcp/handlers/prediction/index.d.ts +19 -0
- package/dist/mcp/handlers/prediction/index.d.ts.map +1 -0
- package/dist/mcp/handlers/prediction/index.js +22 -0
- package/dist/mcp/handlers/prediction/index.js.map +1 -0
- package/dist/mcp/handlers/prediction/predict-defects-ai.d.ts +133 -0
- package/dist/mcp/handlers/prediction/predict-defects-ai.d.ts.map +1 -0
- package/dist/mcp/handlers/prediction/predict-defects-ai.js +278 -0
- package/dist/mcp/handlers/prediction/predict-defects-ai.js.map +1 -0
- package/dist/mcp/handlers/prediction/regression-risk-analyze.d.ts +189 -0
- package/dist/mcp/handlers/prediction/regression-risk-analyze.d.ts.map +1 -0
- package/dist/mcp/handlers/prediction/regression-risk-analyze.js +419 -0
- package/dist/mcp/handlers/prediction/regression-risk-analyze.js.map +1 -0
- package/dist/mcp/handlers/prediction/visual-test-regression.d.ts +138 -0
- package/dist/mcp/handlers/prediction/visual-test-regression.d.ts.map +1 -0
- package/dist/mcp/handlers/prediction/visual-test-regression.js +274 -0
- package/dist/mcp/handlers/prediction/visual-test-regression.js.map +1 -0
- package/dist/mcp/handlers/quality/quality-decision-make.d.ts +104 -0
- package/dist/mcp/handlers/quality/quality-decision-make.d.ts.map +1 -0
- package/dist/mcp/handlers/quality/quality-decision-make.js +418 -0
- package/dist/mcp/handlers/quality/quality-decision-make.js.map +1 -0
- package/dist/mcp/handlers/quality/quality-gate-execute.d.ts +160 -0
- package/dist/mcp/handlers/quality/quality-gate-execute.d.ts.map +1 -0
- package/dist/mcp/handlers/quality/quality-gate-execute.js +424 -0
- package/dist/mcp/handlers/quality/quality-gate-execute.js.map +1 -0
- package/dist/mcp/handlers/quality/quality-policy-check.d.ts +163 -0
- package/dist/mcp/handlers/quality/quality-policy-check.d.ts.map +1 -0
- package/dist/mcp/handlers/quality/quality-policy-check.js +465 -0
- package/dist/mcp/handlers/quality/quality-policy-check.js.map +1 -0
- package/dist/mcp/handlers/quality/quality-risk-assess.d.ts +123 -0
- package/dist/mcp/handlers/quality/quality-risk-assess.d.ts.map +1 -0
- package/dist/mcp/handlers/quality/quality-risk-assess.js +532 -0
- package/dist/mcp/handlers/quality/quality-risk-assess.js.map +1 -0
- package/dist/mcp/handlers/quality/quality-validate-metrics.d.ts +117 -0
- package/dist/mcp/handlers/quality/quality-validate-metrics.d.ts.map +1 -0
- package/dist/mcp/handlers/quality/quality-validate-metrics.js +298 -0
- package/dist/mcp/handlers/quality/quality-validate-metrics.js.map +1 -0
- package/dist/mcp/handlers/test/index.d.ts +9 -0
- package/dist/mcp/handlers/test/index.d.ts.map +1 -0
- package/dist/mcp/handlers/test/index.js +25 -0
- package/dist/mcp/handlers/test/index.js.map +1 -0
- package/dist/mcp/handlers/test/test-coverage-detailed.d.ts +65 -0
- package/dist/mcp/handlers/test/test-coverage-detailed.d.ts.map +1 -0
- package/dist/mcp/handlers/test/test-coverage-detailed.js +305 -0
- package/dist/mcp/handlers/test/test-coverage-detailed.js.map +1 -0
- package/dist/mcp/handlers/test/test-execute-parallel.d.ts +39 -0
- package/dist/mcp/handlers/test/test-execute-parallel.d.ts.map +1 -0
- package/dist/mcp/handlers/test/test-execute-parallel.js +189 -0
- package/dist/mcp/handlers/test/test-execute-parallel.js.map +1 -0
- package/dist/mcp/handlers/test/test-generate-enhanced.d.ts +40 -0
- package/dist/mcp/handlers/test/test-generate-enhanced.d.ts.map +1 -0
- package/dist/mcp/handlers/test/test-generate-enhanced.js +240 -0
- package/dist/mcp/handlers/test/test-generate-enhanced.js.map +1 -0
- package/dist/mcp/handlers/test/test-optimize-sublinear.d.ts +40 -0
- package/dist/mcp/handlers/test/test-optimize-sublinear.d.ts.map +1 -0
- package/dist/mcp/handlers/test/test-optimize-sublinear.js +223 -0
- package/dist/mcp/handlers/test/test-optimize-sublinear.js.map +1 -0
- package/dist/mcp/handlers/test/test-report-comprehensive.d.ts +50 -0
- package/dist/mcp/handlers/test/test-report-comprehensive.d.ts.map +1 -0
- package/dist/mcp/handlers/test/test-report-comprehensive.js +239 -0
- package/dist/mcp/handlers/test/test-report-comprehensive.js.map +1 -0
- package/dist/mcp/handlers/test-execute.d.ts +0 -2
- package/dist/mcp/handlers/test-execute.d.ts.map +1 -1
- package/dist/mcp/handlers/test-execute.js +82 -45
- package/dist/mcp/handlers/test-execute.js.map +1 -1
- package/dist/mcp/server.d.ts +4 -0
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +89 -0
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/services/HookExecutor.d.ts +4 -1
- package/dist/mcp/services/HookExecutor.d.ts.map +1 -1
- package/dist/mcp/services/HookExecutor.js.map +1 -1
- package/dist/mcp/tools.d.ts +43 -0
- package/dist/mcp/tools.d.ts.map +1 -1
- package/dist/mcp/tools.js +1256 -1
- package/dist/mcp/tools.js.map +1 -1
- package/dist/mcp/types/advanced.d.ts +193 -0
- package/dist/mcp/types/advanced.d.ts.map +1 -0
- package/dist/mcp/types/advanced.js +7 -0
- package/dist/mcp/types/advanced.js.map +1 -0
- package/dist/mcp/types/analysis.d.ts +46 -0
- package/dist/mcp/types/analysis.d.ts.map +1 -0
- package/dist/mcp/types/analysis.js +6 -0
- package/dist/mcp/types/analysis.js.map +1 -0
- package/dist/mcp/types/chaos.d.ts +343 -0
- package/dist/mcp/types/chaos.d.ts.map +1 -0
- package/dist/mcp/types/chaos.js +7 -0
- package/dist/mcp/types/chaos.js.map +1 -0
- package/dist/mcp/types/integration.d.ts +418 -0
- package/dist/mcp/types/integration.d.ts.map +1 -0
- package/dist/mcp/types/integration.js +7 -0
- package/dist/mcp/types/integration.js.map +1 -0
- package/dist/utils/Config.d.ts +4 -0
- package/dist/utils/Config.d.ts.map +1 -1
- package/dist/utils/Config.js +31 -0
- package/dist/utils/Config.js.map +1 -1
- package/dist/utils/FakerDataGenerator.d.ts +203 -0
- package/dist/utils/FakerDataGenerator.d.ts.map +1 -0
- package/dist/utils/FakerDataGenerator.js +379 -0
- package/dist/utils/FakerDataGenerator.js.map +1 -0
- package/dist/utils/SecurityScanner.d.ts +72 -0
- package/dist/utils/SecurityScanner.d.ts.map +1 -0
- package/dist/utils/SecurityScanner.js +378 -0
- package/dist/utils/SecurityScanner.js.map +1 -0
- package/dist/utils/TestFrameworkExecutor.d.ts +146 -0
- package/dist/utils/TestFrameworkExecutor.d.ts.map +1 -0
- package/dist/utils/TestFrameworkExecutor.js +566 -0
- package/dist/utils/TestFrameworkExecutor.js.map +1 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +3 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/validation.d.ts +28 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +57 -0
- package/dist/utils/validation.js.map +1 -0
- package/package.json +15 -5
- package/dist/core/coverage-analyzer.d.ts +0 -50
- package/dist/core/coverage-analyzer.d.ts.map +0 -1
- package/dist/core/coverage-analyzer.js +0 -146
- package/dist/core/coverage-analyzer.js.map +0 -1
- package/dist/core/quality-gate.d.ts +0 -81
- package/dist/core/quality-gate.d.ts.map +0 -1
- package/dist/core/quality-gate.js +0 -254
- package/dist/core/quality-gate.js.map +0 -1
- package/dist/optimization/sublinear-solver.d.ts +0 -72
- package/dist/optimization/sublinear-solver.d.ts.map +0 -1
- package/dist/optimization/sublinear-solver.js +0 -263
- package/dist/optimization/sublinear-solver.js.map +0 -1
- package/dist/scripts/verifyComplexity.d.ts +0 -8
- package/dist/scripts/verifyComplexity.d.ts.map +0 -1
- package/dist/scripts/verifyComplexity.js +0 -56
- package/dist/scripts/verifyComplexity.js.map +0 -1
- package/dist/utils/sublinear/coverageOptimizer.d.ts +0 -84
- package/dist/utils/sublinear/coverageOptimizer.d.ts.map +0 -1
- package/dist/utils/sublinear/coverageOptimizer.js +0 -415
- package/dist/utils/sublinear/coverageOptimizer.js.map +0 -1
- package/dist/utils/sublinear/index.d.ts +0 -50
- package/dist/utils/sublinear/index.d.ts.map +0 -1
- package/dist/utils/sublinear/index.js +0 -390
- package/dist/utils/sublinear/index.js.map +0 -1
- package/dist/utils/sublinear/matrixSolver.d.ts +0 -132
- package/dist/utils/sublinear/matrixSolver.d.ts.map +0 -1
- package/dist/utils/sublinear/matrixSolver.js +0 -642
- package/dist/utils/sublinear/matrixSolver.js.map +0 -1
- package/dist/utils/sublinear/temporalPredictor.d.ts +0 -195
- package/dist/utils/sublinear/temporalPredictor.d.ts.map +0 -1
- package/dist/utils/sublinear/temporalPredictor.js +0 -474
- package/dist/utils/sublinear/temporalPredictor.js.map +0 -1
- package/dist/utils/sublinear/testSelector.d.ts +0 -81
- package/dist/utils/sublinear/testSelector.d.ts.map +0 -1
- package/dist/utils/sublinear/testSelector.js +0 -303
- 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
|