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
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Chaos Engineering MCP Tool Type Definitions
|
|
3
|
+
* Defines interfaces for fault injection, resilience testing, and blast radius control
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Blast radius configuration for controlled chaos injection
|
|
7
|
+
*/
|
|
8
|
+
export interface BlastRadius {
|
|
9
|
+
/** Percentage of target services to affect (0-100) */
|
|
10
|
+
percentage: number;
|
|
11
|
+
/** List of target services/endpoints */
|
|
12
|
+
targetServices: string[];
|
|
13
|
+
/** Progressive increase of blast radius */
|
|
14
|
+
progressive?: boolean;
|
|
15
|
+
/** Maximum percentage for progressive blast radius */
|
|
16
|
+
maxPercentage?: number;
|
|
17
|
+
/** Increment step for progressive blast radius */
|
|
18
|
+
incrementStep?: number;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Distribution types for latency injection
|
|
22
|
+
*/
|
|
23
|
+
export type LatencyDistribution = 'fixed' | 'uniform' | 'normal' | 'exponential';
|
|
24
|
+
/**
|
|
25
|
+
* Distribution parameters for latency injection
|
|
26
|
+
*/
|
|
27
|
+
export interface DistributionParams {
|
|
28
|
+
min?: number;
|
|
29
|
+
max?: number;
|
|
30
|
+
mean?: number;
|
|
31
|
+
stdDev?: number;
|
|
32
|
+
lambda?: number;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Configuration for latency injection
|
|
36
|
+
*/
|
|
37
|
+
export interface ChaosLatencyConfig {
|
|
38
|
+
/** Target service URL or identifier */
|
|
39
|
+
target: string;
|
|
40
|
+
/** Latency to inject in milliseconds */
|
|
41
|
+
latencyMs: number;
|
|
42
|
+
/** Distribution type for latency */
|
|
43
|
+
distribution: LatencyDistribution;
|
|
44
|
+
/** Distribution parameters */
|
|
45
|
+
distributionParams?: DistributionParams;
|
|
46
|
+
/** Blast radius control */
|
|
47
|
+
blastRadius: BlastRadius;
|
|
48
|
+
/** Duration of injection in milliseconds (optional) */
|
|
49
|
+
duration?: number;
|
|
50
|
+
/** Whether to rollback injection */
|
|
51
|
+
rollback?: boolean;
|
|
52
|
+
/** Injection ID for rollback */
|
|
53
|
+
injectionId?: string;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Failure types for chaos injection
|
|
57
|
+
*/
|
|
58
|
+
export type FailureType = 'http_error' | 'timeout' | 'connection_refused' | 'dns_failure' | 'partial_response' | 'combined';
|
|
59
|
+
/**
|
|
60
|
+
* Configuration for failure injection
|
|
61
|
+
*/
|
|
62
|
+
export interface ChaosFailureConfig {
|
|
63
|
+
/** Target service URL or identifier */
|
|
64
|
+
target: string;
|
|
65
|
+
/** Type of failure to inject */
|
|
66
|
+
failureType: FailureType;
|
|
67
|
+
/** HTTP error code (for http_error type) */
|
|
68
|
+
httpErrorCode?: number;
|
|
69
|
+
/** Timeout duration in milliseconds (for timeout type) */
|
|
70
|
+
timeoutMs?: number;
|
|
71
|
+
/** Failure rate (0-1, where 1 = 100%) */
|
|
72
|
+
failureRate?: number;
|
|
73
|
+
/** Multiple failure types (for combined type) */
|
|
74
|
+
failureTypes?: FailureType[];
|
|
75
|
+
/** Blast radius control */
|
|
76
|
+
blastRadius: BlastRadius;
|
|
77
|
+
/** Duration of injection in milliseconds (optional) */
|
|
78
|
+
duration?: number;
|
|
79
|
+
/** Whether to rollback injection */
|
|
80
|
+
rollback?: boolean;
|
|
81
|
+
/** Injection ID for rollback */
|
|
82
|
+
injectionId?: string;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Resilience mechanisms to test
|
|
86
|
+
*/
|
|
87
|
+
export interface ResilienceConfig {
|
|
88
|
+
/** Test circuit breaker pattern */
|
|
89
|
+
circuitBreaker?: boolean;
|
|
90
|
+
/** Retry policy configuration */
|
|
91
|
+
retryPolicy?: {
|
|
92
|
+
maxRetries: number;
|
|
93
|
+
backoffMs: number;
|
|
94
|
+
exponential?: boolean;
|
|
95
|
+
};
|
|
96
|
+
/** Timeout configuration */
|
|
97
|
+
timeout?: {
|
|
98
|
+
requestTimeoutMs: number;
|
|
99
|
+
overallTimeoutMs: number;
|
|
100
|
+
};
|
|
101
|
+
/** Fallback behavior */
|
|
102
|
+
fallback?: boolean;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Monitoring configuration for resilience tests
|
|
106
|
+
*/
|
|
107
|
+
export interface MonitoringConfig {
|
|
108
|
+
/** Enable monitoring integration */
|
|
109
|
+
enabled: boolean;
|
|
110
|
+
/** Metrics endpoint URL */
|
|
111
|
+
metricsEndpoint?: string;
|
|
112
|
+
/** Custom metrics to track */
|
|
113
|
+
customMetrics?: string[];
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Chaos scenario for resilience testing
|
|
117
|
+
*/
|
|
118
|
+
export interface ChaosScenario {
|
|
119
|
+
/** Scenario type */
|
|
120
|
+
type: 'latency' | 'failure';
|
|
121
|
+
/** Scenario configuration */
|
|
122
|
+
config: Partial<ChaosLatencyConfig> | Partial<ChaosFailureConfig>;
|
|
123
|
+
/** Weight for combined scenarios (0-1) */
|
|
124
|
+
weight?: number;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Configuration for resilience testing
|
|
128
|
+
*/
|
|
129
|
+
export interface ChaosResilienceConfig {
|
|
130
|
+
/** Target service URL or identifier */
|
|
131
|
+
target: string;
|
|
132
|
+
/** Chaos scenarios to test */
|
|
133
|
+
scenarios?: ChaosScenario[];
|
|
134
|
+
/** Predefined template name */
|
|
135
|
+
template?: string;
|
|
136
|
+
/** Blast radius control */
|
|
137
|
+
blastRadius: BlastRadius;
|
|
138
|
+
/** Test duration in milliseconds */
|
|
139
|
+
duration?: number;
|
|
140
|
+
/** Resilience mechanisms to test */
|
|
141
|
+
resilience?: ResilienceConfig;
|
|
142
|
+
/** Monitoring configuration */
|
|
143
|
+
monitoring?: MonitoringConfig;
|
|
144
|
+
/** Auto-rollback after test */
|
|
145
|
+
autoRollback?: boolean;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Result of a chaos injection
|
|
149
|
+
*/
|
|
150
|
+
export interface ChaosInjectionResult {
|
|
151
|
+
/** Whether injection was successful */
|
|
152
|
+
success: boolean;
|
|
153
|
+
/** Unique injection ID */
|
|
154
|
+
injectionId: string;
|
|
155
|
+
/** Target that was affected */
|
|
156
|
+
target: string;
|
|
157
|
+
/** Affected endpoints/services */
|
|
158
|
+
affectedEndpoints: string[];
|
|
159
|
+
/** Actual latency injected (for latency injection) */
|
|
160
|
+
actualLatencyMs?: number;
|
|
161
|
+
/** Distribution used (for latency injection) */
|
|
162
|
+
distribution?: LatencyDistribution;
|
|
163
|
+
/** Failure type (for failure injection) */
|
|
164
|
+
failureType?: FailureType;
|
|
165
|
+
/** Timeout value (for timeout failure) */
|
|
166
|
+
timeoutMs?: number;
|
|
167
|
+
/** Failure rate applied */
|
|
168
|
+
failureRate?: number;
|
|
169
|
+
/** Blast radius impact statistics */
|
|
170
|
+
blastRadiusImpact?: {
|
|
171
|
+
targetedCount: number;
|
|
172
|
+
affectedCount: number;
|
|
173
|
+
percentage: number;
|
|
174
|
+
};
|
|
175
|
+
/** Duration of injection */
|
|
176
|
+
duration?: number;
|
|
177
|
+
/** Expiration timestamp */
|
|
178
|
+
expiresAt?: Date;
|
|
179
|
+
/** Whether injection was rolled back */
|
|
180
|
+
rolledBack?: boolean;
|
|
181
|
+
/** Error message if injection failed */
|
|
182
|
+
error?: string;
|
|
183
|
+
/** Additional metadata */
|
|
184
|
+
metadata?: {
|
|
185
|
+
injectedAt: Date;
|
|
186
|
+
injectionMethod: string;
|
|
187
|
+
targetType: string;
|
|
188
|
+
[key: string]: unknown;
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* Resilience test metrics
|
|
193
|
+
*/
|
|
194
|
+
export interface ResilienceMetrics {
|
|
195
|
+
/** Total requests made */
|
|
196
|
+
totalRequests: number;
|
|
197
|
+
/** Successful requests */
|
|
198
|
+
successfulRequests: number;
|
|
199
|
+
/** Failed requests */
|
|
200
|
+
failedRequests: number;
|
|
201
|
+
/** Average response time in milliseconds */
|
|
202
|
+
avgResponseTimeMs: number;
|
|
203
|
+
/** P95 response time in milliseconds */
|
|
204
|
+
p95ResponseTimeMs: number;
|
|
205
|
+
/** P99 response time in milliseconds */
|
|
206
|
+
p99ResponseTimeMs: number;
|
|
207
|
+
/** Recovery time after failure in milliseconds */
|
|
208
|
+
recoveryTimeMs?: number;
|
|
209
|
+
/** Availability score (0-1) */
|
|
210
|
+
availabilityScore: number;
|
|
211
|
+
/** Error rate (0-1) */
|
|
212
|
+
errorRate: number;
|
|
213
|
+
/** Request rate (requests per second) */
|
|
214
|
+
requestRate?: number;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Resilience behavior observations
|
|
218
|
+
*/
|
|
219
|
+
export interface ResilienceBehavior {
|
|
220
|
+
/** Circuit breaker triggered */
|
|
221
|
+
circuitBreakerTriggered?: boolean;
|
|
222
|
+
/** Number of retries attempted */
|
|
223
|
+
retriesAttempted?: number;
|
|
224
|
+
/** Fallback used */
|
|
225
|
+
fallbackUsed?: boolean;
|
|
226
|
+
/** Timeout occurred */
|
|
227
|
+
timeoutOccurred?: boolean;
|
|
228
|
+
/** Graceful degradation observed */
|
|
229
|
+
gracefulDegradation?: boolean;
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* Blast radius progression data
|
|
233
|
+
*/
|
|
234
|
+
export interface BlastRadiusProgression {
|
|
235
|
+
/** Initial percentage */
|
|
236
|
+
initialPercentage: number;
|
|
237
|
+
/** Final percentage */
|
|
238
|
+
finalPercentage: number;
|
|
239
|
+
/** Progression steps */
|
|
240
|
+
steps: Array<{
|
|
241
|
+
percentage: number;
|
|
242
|
+
timestamp: Date;
|
|
243
|
+
metrics: Partial<ResilienceMetrics>;
|
|
244
|
+
}>;
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Recommendation for improving resilience
|
|
248
|
+
*/
|
|
249
|
+
export interface ResilienceRecommendation {
|
|
250
|
+
/** Recommendation priority */
|
|
251
|
+
priority: 'critical' | 'high' | 'medium' | 'low';
|
|
252
|
+
/** Recommendation category */
|
|
253
|
+
category: string;
|
|
254
|
+
/** Recommendation title */
|
|
255
|
+
title: string;
|
|
256
|
+
/** Detailed description */
|
|
257
|
+
description: string;
|
|
258
|
+
/** Implementation effort */
|
|
259
|
+
effort: 'low' | 'medium' | 'high';
|
|
260
|
+
/** Expected impact */
|
|
261
|
+
impact: 'low' | 'medium' | 'high';
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* Scenario test result
|
|
265
|
+
*/
|
|
266
|
+
export interface ScenarioResult {
|
|
267
|
+
/** Scenario type */
|
|
268
|
+
type: string;
|
|
269
|
+
/** Whether scenario passed */
|
|
270
|
+
passed: boolean;
|
|
271
|
+
/** Scenario duration */
|
|
272
|
+
durationMs: number;
|
|
273
|
+
/** Scenario metrics */
|
|
274
|
+
metrics: ResilienceMetrics;
|
|
275
|
+
/** Observed behavior */
|
|
276
|
+
behavior: ResilienceBehavior;
|
|
277
|
+
/** Errors encountered */
|
|
278
|
+
errors?: string[];
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Comprehensive resilience test report
|
|
282
|
+
*/
|
|
283
|
+
export interface ChaosResilienceReport {
|
|
284
|
+
/** Overall test success */
|
|
285
|
+
success: boolean;
|
|
286
|
+
/** Target service */
|
|
287
|
+
target: string;
|
|
288
|
+
/** Template used (if any) */
|
|
289
|
+
template?: string;
|
|
290
|
+
/** Individual scenario results */
|
|
291
|
+
scenarios: ScenarioResult[];
|
|
292
|
+
/** Overall resilience score (0-100) */
|
|
293
|
+
overallScore: number;
|
|
294
|
+
/** Aggregated metrics */
|
|
295
|
+
metrics?: ResilienceMetrics;
|
|
296
|
+
/** Observed resilience behavior */
|
|
297
|
+
resilience?: ResilienceBehavior;
|
|
298
|
+
/** Blast radius progression data */
|
|
299
|
+
blastRadiusProgression?: BlastRadiusProgression;
|
|
300
|
+
/** Recommendations for improvement */
|
|
301
|
+
recommendations?: ResilienceRecommendation[];
|
|
302
|
+
/** Whether test was rolled back */
|
|
303
|
+
rolledBack?: boolean;
|
|
304
|
+
/** Test duration in milliseconds */
|
|
305
|
+
totalDurationMs?: number;
|
|
306
|
+
/** Test start time */
|
|
307
|
+
startTime?: Date;
|
|
308
|
+
/** Test end time */
|
|
309
|
+
endTime?: Date;
|
|
310
|
+
/** Error message if test failed */
|
|
311
|
+
error?: string;
|
|
312
|
+
/** Additional metadata */
|
|
313
|
+
metadata?: {
|
|
314
|
+
testId: string;
|
|
315
|
+
environment: string;
|
|
316
|
+
[key: string]: unknown;
|
|
317
|
+
};
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* Active chaos injection tracking
|
|
321
|
+
*/
|
|
322
|
+
export interface ActiveInjection {
|
|
323
|
+
injectionId: string;
|
|
324
|
+
type: 'latency' | 'failure';
|
|
325
|
+
target: string;
|
|
326
|
+
config: ChaosLatencyConfig | ChaosFailureConfig;
|
|
327
|
+
startTime: Date;
|
|
328
|
+
expiresAt?: Date;
|
|
329
|
+
active: boolean;
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* Chaos experiment template
|
|
333
|
+
*/
|
|
334
|
+
export interface ChaosTemplate {
|
|
335
|
+
name: string;
|
|
336
|
+
description: string;
|
|
337
|
+
scenarios: ChaosScenario[];
|
|
338
|
+
defaultBlastRadius: BlastRadius;
|
|
339
|
+
defaultDuration: number;
|
|
340
|
+
category: string;
|
|
341
|
+
tags: string[];
|
|
342
|
+
}
|
|
343
|
+
//# sourceMappingURL=chaos.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chaos.d.ts","sourceRoot":"","sources":["../../../src/mcp/types/chaos.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chaos.js","sourceRoot":"","sources":["../../../src/mcp/types/chaos.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|