agentic-qe 3.2.2 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/v3/qe-accessibility-auditor.md +90 -0
- package/.claude/helpers/github-safe.js +10 -10
- package/README.md +43 -5
- package/package.json +4 -2
- package/scripts/cloud-db-config.json +37 -0
- package/scripts/cloud-db-connect.sh +37 -0
- package/scripts/cloud-db-tunnel.sh +23 -0
- package/v3/CHANGELOG.md +165 -0
- package/v3/README.md +59 -1
- package/v3/assets/agents/v3/qe-accessibility-auditor.md +90 -0
- package/v3/dist/adapters/claude-flow/index.d.ts +54 -0
- package/v3/dist/adapters/claude-flow/index.d.ts.map +1 -0
- package/v3/dist/adapters/claude-flow/index.js +79 -0
- package/v3/dist/adapters/claude-flow/index.js.map +1 -0
- package/v3/dist/adapters/claude-flow/model-router-bridge.d.ts +70 -0
- package/v3/dist/adapters/claude-flow/model-router-bridge.d.ts.map +1 -0
- package/v3/dist/adapters/claude-flow/model-router-bridge.js +203 -0
- package/v3/dist/adapters/claude-flow/model-router-bridge.js.map +1 -0
- package/v3/dist/adapters/claude-flow/pretrain-bridge.d.ts +73 -0
- package/v3/dist/adapters/claude-flow/pretrain-bridge.d.ts.map +1 -0
- package/v3/dist/adapters/claude-flow/pretrain-bridge.js +276 -0
- package/v3/dist/adapters/claude-flow/pretrain-bridge.js.map +1 -0
- package/v3/dist/adapters/claude-flow/trajectory-bridge.d.ts +70 -0
- package/v3/dist/adapters/claude-flow/trajectory-bridge.d.ts.map +1 -0
- package/v3/dist/adapters/claude-flow/trajectory-bridge.js +205 -0
- package/v3/dist/adapters/claude-flow/trajectory-bridge.js.map +1 -0
- package/v3/dist/adapters/claude-flow/types.d.ts +99 -0
- package/v3/dist/adapters/claude-flow/types.d.ts.map +1 -0
- package/v3/dist/adapters/claude-flow/types.js +6 -0
- package/v3/dist/adapters/claude-flow/types.js.map +1 -0
- package/v3/dist/causal-discovery/causal-graph.d.ts +80 -1
- package/v3/dist/causal-discovery/causal-graph.d.ts.map +1 -1
- package/v3/dist/causal-discovery/causal-graph.js +111 -1
- package/v3/dist/causal-discovery/causal-graph.js.map +1 -1
- package/v3/dist/cli/bundle.js +12486 -5503
- package/v3/dist/cli/commands/claude-flow-setup.d.ts +82 -0
- package/v3/dist/cli/commands/claude-flow-setup.d.ts.map +1 -0
- package/v3/dist/cli/commands/claude-flow-setup.js +334 -0
- package/v3/dist/cli/commands/claude-flow-setup.js.map +1 -0
- package/v3/dist/cli/commands/hooks.d.ts +2 -0
- package/v3/dist/cli/commands/hooks.d.ts.map +1 -1
- package/v3/dist/cli/commands/hooks.js +13 -2
- package/v3/dist/cli/commands/hooks.js.map +1 -1
- package/v3/dist/cli/commands/init.d.ts +19 -0
- package/v3/dist/cli/commands/init.d.ts.map +1 -0
- package/v3/dist/cli/commands/init.js +345 -0
- package/v3/dist/cli/commands/init.js.map +1 -0
- package/v3/dist/cli/index.js +110 -2
- package/v3/dist/cli/index.js.map +1 -1
- package/v3/dist/coordination/cross-domain-router.d.ts.map +1 -1
- package/v3/dist/coordination/cross-domain-router.js +2 -0
- package/v3/dist/coordination/cross-domain-router.js.map +1 -1
- package/v3/dist/coordination/mincut/interfaces.d.ts +8 -2
- package/v3/dist/coordination/mincut/interfaces.d.ts.map +1 -1
- package/v3/dist/coordination/mincut/interfaces.js.map +1 -1
- package/v3/dist/coordination/mincut/mincut-health-monitor.d.ts +5 -0
- package/v3/dist/coordination/mincut/mincut-health-monitor.d.ts.map +1 -1
- package/v3/dist/coordination/mincut/mincut-health-monitor.js +22 -4
- package/v3/dist/coordination/mincut/mincut-health-monitor.js.map +1 -1
- package/v3/dist/coordination/mincut/queen-integration.d.ts +4 -0
- package/v3/dist/coordination/mincut/queen-integration.d.ts.map +1 -1
- package/v3/dist/coordination/mincut/queen-integration.js +14 -1
- package/v3/dist/coordination/mincut/queen-integration.js.map +1 -1
- package/v3/dist/coordination/queen-coordinator.d.ts +5 -0
- package/v3/dist/coordination/queen-coordinator.d.ts.map +1 -1
- package/v3/dist/coordination/queen-coordinator.js +45 -7
- package/v3/dist/coordination/queen-coordinator.js.map +1 -1
- package/v3/dist/domains/learning-optimization/coordinator.d.ts +5 -0
- package/v3/dist/domains/learning-optimization/coordinator.d.ts.map +1 -1
- package/v3/dist/domains/learning-optimization/coordinator.js +79 -0
- package/v3/dist/domains/learning-optimization/coordinator.js.map +1 -1
- package/v3/dist/domains/security-compliance/services/semgrep-integration.d.ts.map +1 -1
- package/v3/dist/domains/security-compliance/services/semgrep-integration.js +16 -12
- package/v3/dist/domains/security-compliance/services/semgrep-integration.js.map +1 -1
- package/v3/dist/domains/test-execution/services/e2e-runner.d.ts +1 -0
- package/v3/dist/domains/test-execution/services/e2e-runner.d.ts.map +1 -1
- package/v3/dist/domains/test-execution/services/e2e-runner.js +9 -12
- package/v3/dist/domains/test-execution/services/e2e-runner.js.map +1 -1
- package/v3/dist/domains/test-generation/coherence-gate.d.ts +245 -0
- package/v3/dist/domains/test-generation/coherence-gate.d.ts.map +1 -0
- package/v3/dist/domains/test-generation/coherence-gate.js +454 -0
- package/v3/dist/domains/test-generation/coherence-gate.js.map +1 -0
- package/v3/dist/domains/test-generation/coordinator.d.ts +32 -1
- package/v3/dist/domains/test-generation/coordinator.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/coordinator.js +70 -1
- package/v3/dist/domains/test-generation/coordinator.js.map +1 -1
- package/v3/dist/domains/test-generation/index.d.ts +1 -0
- package/v3/dist/domains/test-generation/index.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/index.js +4 -0
- package/v3/dist/domains/test-generation/index.js.map +1 -1
- package/v3/dist/domains/test-generation/services/index.d.ts +1 -0
- package/v3/dist/domains/test-generation/services/index.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/services/index.js +2 -0
- package/v3/dist/domains/test-generation/services/index.js.map +1 -1
- package/v3/dist/domains/visual-accessibility/index.d.ts +2 -1
- package/v3/dist/domains/visual-accessibility/index.d.ts.map +1 -1
- package/v3/dist/domains/visual-accessibility/index.js +1 -0
- package/v3/dist/domains/visual-accessibility/index.js.map +1 -1
- package/v3/dist/domains/visual-accessibility/interfaces.d.ts +131 -0
- package/v3/dist/domains/visual-accessibility/interfaces.d.ts.map +1 -1
- package/v3/dist/domains/visual-accessibility/plugin.d.ts +26 -0
- package/v3/dist/domains/visual-accessibility/plugin.d.ts.map +1 -1
- package/v3/dist/domains/visual-accessibility/plugin.js +151 -0
- package/v3/dist/domains/visual-accessibility/plugin.js.map +1 -1
- package/v3/dist/domains/visual-accessibility/services/accessibility-tester.d.ts +42 -1
- package/v3/dist/domains/visual-accessibility/services/accessibility-tester.d.ts.map +1 -1
- package/v3/dist/domains/visual-accessibility/services/accessibility-tester.js +69 -0
- package/v3/dist/domains/visual-accessibility/services/accessibility-tester.js.map +1 -1
- package/v3/dist/domains/visual-accessibility/services/eu-compliance.d.ts +138 -0
- package/v3/dist/domains/visual-accessibility/services/eu-compliance.d.ts.map +1 -0
- package/v3/dist/domains/visual-accessibility/services/eu-compliance.js +830 -0
- package/v3/dist/domains/visual-accessibility/services/eu-compliance.js.map +1 -0
- package/v3/dist/domains/visual-accessibility/services/index.d.ts +1 -0
- package/v3/dist/domains/visual-accessibility/services/index.d.ts.map +1 -1
- package/v3/dist/domains/visual-accessibility/services/index.js +1 -0
- package/v3/dist/domains/visual-accessibility/services/index.js.map +1 -1
- package/v3/dist/init/enhancements/claude-flow-adapter.d.ts +84 -0
- package/v3/dist/init/enhancements/claude-flow-adapter.d.ts.map +1 -0
- package/v3/dist/init/enhancements/claude-flow-adapter.js +250 -0
- package/v3/dist/init/enhancements/claude-flow-adapter.js.map +1 -0
- package/v3/dist/init/enhancements/detector.d.ts +10 -0
- package/v3/dist/init/enhancements/detector.d.ts.map +1 -0
- package/v3/dist/init/enhancements/detector.js +87 -0
- package/v3/dist/init/enhancements/detector.js.map +1 -0
- package/v3/dist/init/enhancements/index.d.ts +13 -0
- package/v3/dist/init/enhancements/index.d.ts.map +1 -0
- package/v3/dist/init/enhancements/index.js +25 -0
- package/v3/dist/init/enhancements/index.js.map +1 -0
- package/v3/dist/init/enhancements/types.d.ts +93 -0
- package/v3/dist/init/enhancements/types.d.ts.map +1 -0
- package/v3/dist/init/enhancements/types.js +6 -0
- package/v3/dist/init/enhancements/types.js.map +1 -0
- package/v3/dist/init/index.d.ts +8 -0
- package/v3/dist/init/index.d.ts.map +1 -1
- package/v3/dist/init/index.js +4 -0
- package/v3/dist/init/index.js.map +1 -1
- package/v3/dist/init/migration/config-migrator.d.ts +31 -0
- package/v3/dist/init/migration/config-migrator.d.ts.map +1 -0
- package/v3/dist/init/migration/config-migrator.js +133 -0
- package/v3/dist/init/migration/config-migrator.js.map +1 -0
- package/v3/dist/init/migration/data-migrator.d.ts +72 -0
- package/v3/dist/init/migration/data-migrator.d.ts.map +1 -0
- package/v3/dist/init/migration/data-migrator.js +233 -0
- package/v3/dist/init/migration/data-migrator.js.map +1 -0
- package/v3/dist/init/migration/detector.d.ts +44 -0
- package/v3/dist/init/migration/detector.d.ts.map +1 -0
- package/v3/dist/init/migration/detector.js +106 -0
- package/v3/dist/init/migration/detector.js.map +1 -0
- package/v3/dist/init/migration/index.d.ts +8 -0
- package/v3/dist/init/migration/index.d.ts.map +1 -0
- package/v3/dist/init/migration/index.js +8 -0
- package/v3/dist/init/migration/index.js.map +1 -0
- package/v3/dist/init/orchestrator.d.ts +68 -0
- package/v3/dist/init/orchestrator.d.ts.map +1 -0
- package/v3/dist/init/orchestrator.js +239 -0
- package/v3/dist/init/orchestrator.js.map +1 -0
- package/v3/dist/init/phases/01-detection.d.ts +30 -0
- package/v3/dist/init/phases/01-detection.d.ts.map +1 -0
- package/v3/dist/init/phases/01-detection.js +143 -0
- package/v3/dist/init/phases/01-detection.js.map +1 -0
- package/v3/dist/init/phases/02-analysis.d.ts +18 -0
- package/v3/dist/init/phases/02-analysis.d.ts.map +1 -0
- package/v3/dist/init/phases/02-analysis.js +28 -0
- package/v3/dist/init/phases/02-analysis.js.map +1 -0
- package/v3/dist/init/phases/03-configuration.d.ts +26 -0
- package/v3/dist/init/phases/03-configuration.d.ts.map +1 -0
- package/v3/dist/init/phases/03-configuration.js +98 -0
- package/v3/dist/init/phases/03-configuration.js.map +1 -0
- package/v3/dist/init/phases/04-database.d.ts +22 -0
- package/v3/dist/init/phases/04-database.d.ts.map +1 -0
- package/v3/dist/init/phases/04-database.js +88 -0
- package/v3/dist/init/phases/04-database.js.map +1 -0
- package/v3/dist/init/phases/05-learning.d.ts +28 -0
- package/v3/dist/init/phases/05-learning.d.ts.map +1 -0
- package/v3/dist/init/phases/05-learning.js +98 -0
- package/v3/dist/init/phases/05-learning.js.map +1 -0
- package/v3/dist/init/phases/06-code-intelligence.d.ts +33 -0
- package/v3/dist/init/phases/06-code-intelligence.d.ts.map +1 -0
- package/v3/dist/init/phases/06-code-intelligence.js +115 -0
- package/v3/dist/init/phases/06-code-intelligence.js.map +1 -0
- package/v3/dist/init/phases/07-hooks.d.ts +27 -0
- package/v3/dist/init/phases/07-hooks.d.ts.map +1 -0
- package/v3/dist/init/phases/07-hooks.js +209 -0
- package/v3/dist/init/phases/07-hooks.js.map +1 -0
- package/v3/dist/init/phases/08-mcp.d.ts +22 -0
- package/v3/dist/init/phases/08-mcp.d.ts.map +1 -0
- package/v3/dist/init/phases/08-mcp.js +62 -0
- package/v3/dist/init/phases/08-mcp.js.map +1 -0
- package/v3/dist/init/phases/09-assets.d.ts +23 -0
- package/v3/dist/init/phases/09-assets.d.ts.map +1 -0
- package/v3/dist/init/phases/09-assets.js +82 -0
- package/v3/dist/init/phases/09-assets.js.map +1 -0
- package/v3/dist/init/phases/10-workers.d.ts +23 -0
- package/v3/dist/init/phases/10-workers.d.ts.map +1 -0
- package/v3/dist/init/phases/10-workers.js +111 -0
- package/v3/dist/init/phases/10-workers.js.map +1 -0
- package/v3/dist/init/phases/11-claude-md.d.ts +26 -0
- package/v3/dist/init/phases/11-claude-md.d.ts.map +1 -0
- package/v3/dist/init/phases/11-claude-md.js +121 -0
- package/v3/dist/init/phases/11-claude-md.js.map +1 -0
- package/v3/dist/init/phases/12-verification.d.ts +38 -0
- package/v3/dist/init/phases/12-verification.d.ts.map +1 -0
- package/v3/dist/init/phases/12-verification.js +187 -0
- package/v3/dist/init/phases/12-verification.js.map +1 -0
- package/v3/dist/init/phases/index.d.ts +46 -0
- package/v3/dist/init/phases/index.d.ts.map +1 -0
- package/v3/dist/init/phases/index.js +64 -0
- package/v3/dist/init/phases/index.js.map +1 -0
- package/v3/dist/init/phases/phase-interface.d.ts +193 -0
- package/v3/dist/init/phases/phase-interface.d.ts.map +1 -0
- package/v3/dist/init/phases/phase-interface.js +119 -0
- package/v3/dist/init/phases/phase-interface.js.map +1 -0
- package/v3/dist/integrations/agentic-flow/reasoning-bank/experience-replay.d.ts +9 -3
- package/v3/dist/integrations/agentic-flow/reasoning-bank/experience-replay.d.ts.map +1 -1
- package/v3/dist/integrations/agentic-flow/reasoning-bank/experience-replay.js +103 -26
- package/v3/dist/integrations/agentic-flow/reasoning-bank/experience-replay.js.map +1 -1
- package/v3/dist/integrations/coherence/coherence-service.d.ts +323 -0
- package/v3/dist/integrations/coherence/coherence-service.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/coherence-service.js +799 -0
- package/v3/dist/integrations/coherence/coherence-service.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/category-adapter.d.ts +170 -0
- package/v3/dist/integrations/coherence/engines/category-adapter.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/category-adapter.js +403 -0
- package/v3/dist/integrations/coherence/engines/category-adapter.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/causal-adapter.d.ts +159 -0
- package/v3/dist/integrations/coherence/engines/causal-adapter.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/causal-adapter.js +348 -0
- package/v3/dist/integrations/coherence/engines/causal-adapter.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/cohomology-adapter.d.ts +174 -0
- package/v3/dist/integrations/coherence/engines/cohomology-adapter.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/cohomology-adapter.js +401 -0
- package/v3/dist/integrations/coherence/engines/cohomology-adapter.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/homotopy-adapter.d.ts +201 -0
- package/v3/dist/integrations/coherence/engines/homotopy-adapter.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/homotopy-adapter.js +324 -0
- package/v3/dist/integrations/coherence/engines/homotopy-adapter.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/index.d.ts +20 -0
- package/v3/dist/integrations/coherence/engines/index.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/index.js +26 -0
- package/v3/dist/integrations/coherence/engines/index.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/spectral-adapter.d.ts +193 -0
- package/v3/dist/integrations/coherence/engines/spectral-adapter.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/spectral-adapter.js +476 -0
- package/v3/dist/integrations/coherence/engines/spectral-adapter.js.map +1 -0
- package/v3/dist/integrations/coherence/engines/witness-adapter.d.ts +175 -0
- package/v3/dist/integrations/coherence/engines/witness-adapter.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/engines/witness-adapter.js +377 -0
- package/v3/dist/integrations/coherence/engines/witness-adapter.js.map +1 -0
- package/v3/dist/integrations/coherence/index.d.ts +84 -0
- package/v3/dist/integrations/coherence/index.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/index.js +114 -0
- package/v3/dist/integrations/coherence/index.js.map +1 -0
- package/v3/dist/integrations/coherence/threshold-tuner.d.ts +396 -0
- package/v3/dist/integrations/coherence/threshold-tuner.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/threshold-tuner.js +538 -0
- package/v3/dist/integrations/coherence/threshold-tuner.js.map +1 -0
- package/v3/dist/integrations/coherence/types.d.ts +879 -0
- package/v3/dist/integrations/coherence/types.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/types.js +134 -0
- package/v3/dist/integrations/coherence/types.js.map +1 -0
- package/v3/dist/integrations/coherence/wasm-loader.d.ts +351 -0
- package/v3/dist/integrations/coherence/wasm-loader.d.ts.map +1 -0
- package/v3/dist/integrations/coherence/wasm-loader.js +842 -0
- package/v3/dist/integrations/coherence/wasm-loader.js.map +1 -0
- package/v3/dist/integrations/embeddings/base/EmbeddingGenerator.d.ts.map +1 -1
- package/v3/dist/integrations/embeddings/base/EmbeddingGenerator.js +1 -0
- package/v3/dist/integrations/embeddings/base/EmbeddingGenerator.js.map +1 -1
- package/v3/dist/integrations/embeddings/base/types.d.ts +1 -1
- package/v3/dist/integrations/embeddings/base/types.d.ts.map +1 -1
- package/v3/dist/integrations/embeddings/cache/EmbeddingCache.d.ts.map +1 -1
- package/v3/dist/integrations/embeddings/cache/EmbeddingCache.js +1 -0
- package/v3/dist/integrations/embeddings/cache/EmbeddingCache.js.map +1 -1
- package/v3/dist/integrations/embeddings/index/HNSWIndex.d.ts.map +1 -1
- package/v3/dist/integrations/embeddings/index/HNSWIndex.js +4 -1
- package/v3/dist/integrations/embeddings/index/HNSWIndex.js.map +1 -1
- package/v3/dist/kernel/interfaces.d.ts +8 -1
- package/v3/dist/kernel/interfaces.d.ts.map +1 -1
- package/v3/dist/learning/aqe-learning-engine.d.ts +272 -0
- package/v3/dist/learning/aqe-learning-engine.d.ts.map +1 -0
- package/v3/dist/learning/aqe-learning-engine.js +708 -0
- package/v3/dist/learning/aqe-learning-engine.js.map +1 -0
- package/v3/dist/learning/causal-verifier.d.ts +244 -0
- package/v3/dist/learning/causal-verifier.d.ts.map +1 -0
- package/v3/dist/learning/causal-verifier.js +300 -0
- package/v3/dist/learning/causal-verifier.js.map +1 -0
- package/v3/dist/learning/experience-capture.d.ts +266 -0
- package/v3/dist/learning/experience-capture.d.ts.map +1 -0
- package/v3/dist/learning/experience-capture.js +647 -0
- package/v3/dist/learning/experience-capture.js.map +1 -0
- package/v3/dist/learning/index.d.ts +8 -0
- package/v3/dist/learning/index.d.ts.map +1 -1
- package/v3/dist/learning/index.js +16 -0
- package/v3/dist/learning/index.js.map +1 -1
- package/v3/dist/learning/memory-auditor.d.ts +235 -0
- package/v3/dist/learning/memory-auditor.d.ts.map +1 -0
- package/v3/dist/learning/memory-auditor.js +478 -0
- package/v3/dist/learning/memory-auditor.js.map +1 -0
- package/v3/dist/learning/pattern-store.d.ts.map +1 -1
- package/v3/dist/learning/pattern-store.js +27 -6
- package/v3/dist/learning/pattern-store.js.map +1 -1
- package/v3/dist/learning/qe-patterns.d.ts +15 -1
- package/v3/dist/learning/qe-patterns.d.ts.map +1 -1
- package/v3/dist/learning/qe-patterns.js +26 -5
- package/v3/dist/learning/qe-patterns.js.map +1 -1
- package/v3/dist/learning/qe-reasoning-bank.d.ts +38 -2
- package/v3/dist/learning/qe-reasoning-bank.d.ts.map +1 -1
- package/v3/dist/learning/qe-reasoning-bank.js +86 -4
- package/v3/dist/learning/qe-reasoning-bank.js.map +1 -1
- package/v3/dist/learning/real-qe-reasoning-bank.d.ts +32 -2
- package/v3/dist/learning/real-qe-reasoning-bank.d.ts.map +1 -1
- package/v3/dist/learning/real-qe-reasoning-bank.js +61 -6
- package/v3/dist/learning/real-qe-reasoning-bank.js.map +1 -1
- package/v3/dist/learning/token-tracker.d.ts.map +1 -1
- package/v3/dist/learning/token-tracker.js +5 -2
- package/v3/dist/learning/token-tracker.js.map +1 -1
- package/v3/dist/mcp/bundle.js +6698 -303
- package/v3/dist/mcp/tools/coherence/audit.d.ts +107 -0
- package/v3/dist/mcp/tools/coherence/audit.d.ts.map +1 -0
- package/v3/dist/mcp/tools/coherence/audit.js +236 -0
- package/v3/dist/mcp/tools/coherence/audit.js.map +1 -0
- package/v3/dist/mcp/tools/coherence/check.d.ts +106 -0
- package/v3/dist/mcp/tools/coherence/check.d.ts.map +1 -0
- package/v3/dist/mcp/tools/coherence/check.js +205 -0
- package/v3/dist/mcp/tools/coherence/check.js.map +1 -0
- package/v3/dist/mcp/tools/coherence/collapse.d.ts +123 -0
- package/v3/dist/mcp/tools/coherence/collapse.d.ts.map +1 -0
- package/v3/dist/mcp/tools/coherence/collapse.js +279 -0
- package/v3/dist/mcp/tools/coherence/collapse.js.map +1 -0
- package/v3/dist/mcp/tools/coherence/consensus.d.ts +100 -0
- package/v3/dist/mcp/tools/coherence/consensus.d.ts.map +1 -0
- package/v3/dist/mcp/tools/coherence/consensus.js +201 -0
- package/v3/dist/mcp/tools/coherence/consensus.js.map +1 -0
- package/v3/dist/mcp/tools/coherence/index.d.ts +31 -0
- package/v3/dist/mcp/tools/coherence/index.d.ts.map +1 -0
- package/v3/dist/mcp/tools/coherence/index.js +42 -0
- package/v3/dist/mcp/tools/coherence/index.js.map +1 -0
- package/v3/dist/mcp/tools/contract-testing/validate.d.ts +1 -1
- package/v3/dist/mcp/tools/contract-testing/validate.d.ts.map +1 -1
- package/v3/dist/mcp/tools/contract-testing/validate.js +66 -0
- package/v3/dist/mcp/tools/contract-testing/validate.js.map +1 -1
- package/v3/dist/mcp/tools/index.d.ts +6 -1
- package/v3/dist/mcp/tools/index.d.ts.map +1 -1
- package/v3/dist/mcp/tools/index.js +9 -1
- package/v3/dist/mcp/tools/index.js.map +1 -1
- package/v3/dist/mcp/tools/mincut/index.d.ts +1 -1
- package/v3/dist/mcp/tools/mincut/index.d.ts.map +1 -1
- package/v3/dist/mcp/tools/mincut/index.js.map +1 -1
- package/v3/dist/mcp/tools/registry.d.ts +4 -0
- package/v3/dist/mcp/tools/registry.d.ts.map +1 -1
- package/v3/dist/mcp/tools/registry.js +5 -0
- package/v3/dist/mcp/tools/registry.js.map +1 -1
- package/v3/dist/mcp/types.d.ts +1 -1
- package/v3/dist/mcp/types.d.ts.map +1 -1
- package/v3/dist/shared/utils/safe-expression-evaluator.d.ts +61 -0
- package/v3/dist/shared/utils/safe-expression-evaluator.d.ts.map +1 -0
- package/v3/dist/shared/utils/safe-expression-evaluator.js +365 -0
- package/v3/dist/shared/utils/safe-expression-evaluator.js.map +1 -0
- package/v3/dist/strange-loop/belief-reconciler.d.ts +357 -0
- package/v3/dist/strange-loop/belief-reconciler.d.ts.map +1 -0
- package/v3/dist/strange-loop/belief-reconciler.js +696 -0
- package/v3/dist/strange-loop/belief-reconciler.js.map +1 -0
- package/v3/dist/strange-loop/index.d.ts +1 -0
- package/v3/dist/strange-loop/index.d.ts.map +1 -1
- package/v3/dist/strange-loop/index.js +2 -0
- package/v3/dist/strange-loop/index.js.map +1 -1
- package/v3/dist/strange-loop/strange-loop.d.ts +177 -5
- package/v3/dist/strange-loop/strange-loop.d.ts.map +1 -1
- package/v3/dist/strange-loop/strange-loop.js +452 -9
- package/v3/dist/strange-loop/strange-loop.js.map +1 -1
- package/v3/dist/strange-loop/types.d.ts +205 -1
- package/v3/dist/strange-loop/types.d.ts.map +1 -1
- package/v3/dist/strange-loop/types.js +5 -0
- package/v3/dist/strange-loop/types.js.map +1 -1
- package/v3/dist/test-scheduling/executors/vitest-executor.d.ts.map +1 -1
- package/v3/dist/test-scheduling/executors/vitest-executor.js +7 -2
- package/v3/dist/test-scheduling/executors/vitest-executor.js.map +1 -1
- package/v3/dist/workflows/browser/workflow-loader.d.ts +1 -0
- package/v3/dist/workflows/browser/workflow-loader.d.ts.map +1 -1
- package/v3/dist/workflows/browser/workflow-loader.js +11 -16
- package/v3/dist/workflows/browser/workflow-loader.js.map +1 -1
- package/v3/package.json +5 -1
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Belief Reconciler
|
|
3
|
+
* ADR-052: Strange Loop Belief Reconciliation Protocol
|
|
4
|
+
*
|
|
5
|
+
* Handles contradictory beliefs detected by the CoherenceService.
|
|
6
|
+
* When the sheaf Laplacian energy indicates high incoherence,
|
|
7
|
+
* this module identifies conflicting beliefs, determines the optimal
|
|
8
|
+
* resolution strategy, applies reconciliation, and creates audit records.
|
|
9
|
+
*
|
|
10
|
+
* The reconciliation process follows this pattern:
|
|
11
|
+
* ```
|
|
12
|
+
* Detect Contradiction
|
|
13
|
+
* |
|
|
14
|
+
* v
|
|
15
|
+
* Select Strategy -----> latest | authority | consensus | merge | escalate
|
|
16
|
+
* |
|
|
17
|
+
* v
|
|
18
|
+
* Apply Resolution
|
|
19
|
+
* |
|
|
20
|
+
* v
|
|
21
|
+
* Create Witness Record
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @module strange-loop/belief-reconciler
|
|
25
|
+
*/
|
|
26
|
+
import type { Contradiction, Belief, WitnessRecord } from '../integrations/coherence/types.js';
|
|
27
|
+
/**
|
|
28
|
+
* Strategy for reconciling conflicting beliefs
|
|
29
|
+
*
|
|
30
|
+
* | Strategy | Description | Use Case |
|
|
31
|
+
* |----------|-------------|----------|
|
|
32
|
+
* | latest | Prefer most recent observation | Temporal data, state updates |
|
|
33
|
+
* | authority | Prefer higher-confidence agent | Expert systems, hierarchical |
|
|
34
|
+
* | consensus | Query all agents for votes | Democratic decisions |
|
|
35
|
+
* | merge | Attempt to merge compatible beliefs | Complementary partial views |
|
|
36
|
+
* | escalate | Defer to Queen coordinator | Critical/ambiguous conflicts |
|
|
37
|
+
*/
|
|
38
|
+
export type ReconciliationStrategy = 'latest' | 'authority' | 'consensus' | 'merge' | 'escalate';
|
|
39
|
+
/**
|
|
40
|
+
* Result of a reconciliation attempt
|
|
41
|
+
*/
|
|
42
|
+
export interface ReconciliationResult {
|
|
43
|
+
/** Whether reconciliation succeeded */
|
|
44
|
+
success: boolean;
|
|
45
|
+
/** Strategy that was applied */
|
|
46
|
+
strategy: ReconciliationStrategy;
|
|
47
|
+
/** Contradictions that were successfully resolved */
|
|
48
|
+
resolvedContradictions: Contradiction[];
|
|
49
|
+
/** Contradictions that could not be resolved */
|
|
50
|
+
unresolvedContradictions: Contradiction[];
|
|
51
|
+
/** New beliefs created as a result of reconciliation */
|
|
52
|
+
newBeliefs: Belief[];
|
|
53
|
+
/** Witness record ID for audit trail (if witness adapter available) */
|
|
54
|
+
witnessId?: string;
|
|
55
|
+
/** Duration of reconciliation in milliseconds */
|
|
56
|
+
durationMs: number;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Record of a reconciliation for history tracking
|
|
60
|
+
*/
|
|
61
|
+
export interface ReconciliationRecord {
|
|
62
|
+
/** Unique identifier for this record */
|
|
63
|
+
id: string;
|
|
64
|
+
/** Contradictions that were processed */
|
|
65
|
+
contradictions: Contradiction[];
|
|
66
|
+
/** Result of the reconciliation */
|
|
67
|
+
result: ReconciliationResult;
|
|
68
|
+
/** Timestamp when reconciliation occurred */
|
|
69
|
+
timestamp: number;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* A vote from an agent on which belief to accept
|
|
73
|
+
*/
|
|
74
|
+
export interface BeliefVote {
|
|
75
|
+
/** Agent ID casting the vote */
|
|
76
|
+
agentId: string;
|
|
77
|
+
/** Belief ID being voted for */
|
|
78
|
+
beliefId: string;
|
|
79
|
+
/** Confidence in this vote (0-1) */
|
|
80
|
+
confidence: number;
|
|
81
|
+
/** Optional reasoning */
|
|
82
|
+
reasoning?: string;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Configuration for the belief reconciler
|
|
86
|
+
*/
|
|
87
|
+
export interface BeliefReconcilerConfig {
|
|
88
|
+
/** Default reconciliation strategy */
|
|
89
|
+
defaultStrategy: ReconciliationStrategy;
|
|
90
|
+
/** Minimum confidence threshold for authority strategy (0-1) */
|
|
91
|
+
authorityThreshold: number;
|
|
92
|
+
/** Minimum consensus percentage required (0-1) */
|
|
93
|
+
consensusThreshold: number;
|
|
94
|
+
/** Maximum time to wait for consensus votes in milliseconds */
|
|
95
|
+
consensusTimeoutMs: number;
|
|
96
|
+
/** Whether to create witness records for audit trail */
|
|
97
|
+
enableWitness: boolean;
|
|
98
|
+
/** Maximum reconciliation history to retain */
|
|
99
|
+
maxHistorySize: number;
|
|
100
|
+
/** Similarity threshold for merge strategy (0-1) */
|
|
101
|
+
mergeSimilarityThreshold: number;
|
|
102
|
+
/** Whether to auto-escalate on repeated failures */
|
|
103
|
+
autoEscalateOnFailure: boolean;
|
|
104
|
+
/** Number of failures before auto-escalation */
|
|
105
|
+
failuresBeforeEscalate: number;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Default configuration for belief reconciler
|
|
109
|
+
*/
|
|
110
|
+
export declare const DEFAULT_BELIEF_RECONCILER_CONFIG: BeliefReconcilerConfig;
|
|
111
|
+
/**
|
|
112
|
+
* Interface for belief reconciler operations
|
|
113
|
+
*/
|
|
114
|
+
export interface IBeliefReconciler {
|
|
115
|
+
/**
|
|
116
|
+
* Reconcile a set of contradictions
|
|
117
|
+
* @param contradictions - Detected contradictions to resolve
|
|
118
|
+
* @returns Result of the reconciliation attempt
|
|
119
|
+
*/
|
|
120
|
+
reconcile(contradictions: Contradiction[]): Promise<ReconciliationResult>;
|
|
121
|
+
/**
|
|
122
|
+
* Get the current reconciliation strategy
|
|
123
|
+
*/
|
|
124
|
+
getStrategy(): ReconciliationStrategy;
|
|
125
|
+
/**
|
|
126
|
+
* Set the reconciliation strategy
|
|
127
|
+
* @param strategy - New strategy to use
|
|
128
|
+
*/
|
|
129
|
+
setStrategy(strategy: ReconciliationStrategy): void;
|
|
130
|
+
/**
|
|
131
|
+
* Get reconciliation history
|
|
132
|
+
*/
|
|
133
|
+
getHistory(): ReconciliationRecord[];
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Interface for collecting consensus votes from agents
|
|
137
|
+
*/
|
|
138
|
+
export interface IVoteCollector {
|
|
139
|
+
/**
|
|
140
|
+
* Collect votes from agents on which belief to accept
|
|
141
|
+
* @param beliefs - Conflicting beliefs to vote on
|
|
142
|
+
* @param timeoutMs - Maximum time to wait for votes
|
|
143
|
+
*/
|
|
144
|
+
collectVotes(beliefs: Belief[], timeoutMs: number): Promise<BeliefVote[]>;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* Interface for creating witness records
|
|
148
|
+
*/
|
|
149
|
+
export interface IWitnessAdapter {
|
|
150
|
+
/**
|
|
151
|
+
* Create a witness record for a reconciliation
|
|
152
|
+
* @param data - Data to witness
|
|
153
|
+
*/
|
|
154
|
+
createWitness(data: unknown): Promise<WitnessRecord>;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Event types emitted by the belief reconciler
|
|
158
|
+
*/
|
|
159
|
+
export type BeliefReconcilerEventType = 'belief_reconciliation_started' | 'belief_reconciled' | 'belief_reconciliation_failed' | 'strategy_changed' | 'escalation_requested';
|
|
160
|
+
/**
|
|
161
|
+
* Event payload for belief reconciler events
|
|
162
|
+
*/
|
|
163
|
+
export interface BeliefReconcilerEvent {
|
|
164
|
+
/** Event type */
|
|
165
|
+
type: BeliefReconcilerEventType;
|
|
166
|
+
/** Timestamp of event */
|
|
167
|
+
timestamp: number;
|
|
168
|
+
/** Event data */
|
|
169
|
+
data: unknown;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Event listener callback type
|
|
173
|
+
*/
|
|
174
|
+
export type BeliefReconcilerEventListener = (event: BeliefReconcilerEvent) => void;
|
|
175
|
+
/**
|
|
176
|
+
* Reconciles contradictory beliefs in the swarm
|
|
177
|
+
*
|
|
178
|
+
* @example
|
|
179
|
+
* ```typescript
|
|
180
|
+
* const reconciler = createBeliefReconciler({
|
|
181
|
+
* defaultStrategy: 'authority',
|
|
182
|
+
* authorityThreshold: 0.8
|
|
183
|
+
* });
|
|
184
|
+
*
|
|
185
|
+
* const result = await reconciler.reconcile(contradictions);
|
|
186
|
+
* if (result.success) {
|
|
187
|
+
* // Apply new beliefs
|
|
188
|
+
* for (const belief of result.newBeliefs) {
|
|
189
|
+
* await beliefStore.add(belief);
|
|
190
|
+
* }
|
|
191
|
+
* }
|
|
192
|
+
* ```
|
|
193
|
+
*/
|
|
194
|
+
export declare class BeliefReconciler implements IBeliefReconciler {
|
|
195
|
+
private config;
|
|
196
|
+
private strategy;
|
|
197
|
+
private history;
|
|
198
|
+
private eventListeners;
|
|
199
|
+
private voteCollector;
|
|
200
|
+
private witnessAdapter;
|
|
201
|
+
private consecutiveFailures;
|
|
202
|
+
/** Belief store for looking up beliefs by ID */
|
|
203
|
+
private beliefStore;
|
|
204
|
+
constructor(config?: Partial<BeliefReconcilerConfig>, options?: {
|
|
205
|
+
voteCollector?: IVoteCollector;
|
|
206
|
+
witnessAdapter?: IWitnessAdapter;
|
|
207
|
+
});
|
|
208
|
+
/**
|
|
209
|
+
* Register a belief for lookup during reconciliation
|
|
210
|
+
*/
|
|
211
|
+
registerBelief(belief: Belief): void;
|
|
212
|
+
/**
|
|
213
|
+
* Register multiple beliefs
|
|
214
|
+
*/
|
|
215
|
+
registerBeliefs(beliefs: Belief[]): void;
|
|
216
|
+
/**
|
|
217
|
+
* Clear all registered beliefs
|
|
218
|
+
*/
|
|
219
|
+
clearBeliefs(): void;
|
|
220
|
+
/**
|
|
221
|
+
* Reconcile contradictions using the configured strategy
|
|
222
|
+
*/
|
|
223
|
+
reconcile(contradictions: Contradiction[]): Promise<ReconciliationResult>;
|
|
224
|
+
/**
|
|
225
|
+
* Get the current reconciliation strategy
|
|
226
|
+
*/
|
|
227
|
+
getStrategy(): ReconciliationStrategy;
|
|
228
|
+
/**
|
|
229
|
+
* Set the reconciliation strategy
|
|
230
|
+
*/
|
|
231
|
+
setStrategy(strategy: ReconciliationStrategy): void;
|
|
232
|
+
/**
|
|
233
|
+
* Get reconciliation history
|
|
234
|
+
*/
|
|
235
|
+
getHistory(): ReconciliationRecord[];
|
|
236
|
+
/**
|
|
237
|
+
* Clear reconciliation history
|
|
238
|
+
*/
|
|
239
|
+
clearHistory(): void;
|
|
240
|
+
/**
|
|
241
|
+
* Get reconciliation statistics
|
|
242
|
+
*/
|
|
243
|
+
getStats(): {
|
|
244
|
+
totalReconciliations: number;
|
|
245
|
+
successfulReconciliations: number;
|
|
246
|
+
failedReconciliations: number;
|
|
247
|
+
totalContradictionsResolved: number;
|
|
248
|
+
avgDurationMs: number;
|
|
249
|
+
strategyDistribution: Record<ReconciliationStrategy, number>;
|
|
250
|
+
};
|
|
251
|
+
/**
|
|
252
|
+
* Add event listener
|
|
253
|
+
*/
|
|
254
|
+
on(event: BeliefReconcilerEventType, listener: BeliefReconcilerEventListener): void;
|
|
255
|
+
/**
|
|
256
|
+
* Remove event listener
|
|
257
|
+
*/
|
|
258
|
+
off(event: BeliefReconcilerEventType, listener: BeliefReconcilerEventListener): void;
|
|
259
|
+
/**
|
|
260
|
+
* Reconcile by preferring the most recent belief
|
|
261
|
+
*/
|
|
262
|
+
private reconcileByLatest;
|
|
263
|
+
/**
|
|
264
|
+
* Reconcile by preferring higher-confidence beliefs
|
|
265
|
+
*/
|
|
266
|
+
private reconcileByAuthority;
|
|
267
|
+
/**
|
|
268
|
+
* Reconcile by collecting votes from agents
|
|
269
|
+
*/
|
|
270
|
+
private reconcileByConsensus;
|
|
271
|
+
/**
|
|
272
|
+
* Reconcile by attempting to merge compatible beliefs
|
|
273
|
+
*
|
|
274
|
+
* Uses category theory principles to find a compatible merge:
|
|
275
|
+
* - If beliefs are about different aspects of the same entity, merge them
|
|
276
|
+
* - If beliefs can be generalized to a higher-level belief, do so
|
|
277
|
+
* - If beliefs represent partial views, combine them
|
|
278
|
+
*/
|
|
279
|
+
private reconcileByMerge;
|
|
280
|
+
/**
|
|
281
|
+
* Escalate contradictions to the Queen coordinator
|
|
282
|
+
*/
|
|
283
|
+
private reconcileByEscalation;
|
|
284
|
+
/**
|
|
285
|
+
* Get the beliefs involved in a contradiction
|
|
286
|
+
*/
|
|
287
|
+
private getConflictingBeliefs;
|
|
288
|
+
/**
|
|
289
|
+
* Create a new belief from reconciliation
|
|
290
|
+
*/
|
|
291
|
+
private createReconciledBelief;
|
|
292
|
+
/**
|
|
293
|
+
* Compute confidence for a reconciled belief
|
|
294
|
+
*/
|
|
295
|
+
private computeReconciledConfidence;
|
|
296
|
+
/**
|
|
297
|
+
* Compute cosine similarity between two embeddings
|
|
298
|
+
*/
|
|
299
|
+
private computeEmbeddingSimilarity;
|
|
300
|
+
/**
|
|
301
|
+
* Merge two beliefs using category theory principles
|
|
302
|
+
*
|
|
303
|
+
* This implements a simplified pullback construction:
|
|
304
|
+
* - Find the common "generalization" of both beliefs
|
|
305
|
+
* - Create a new belief that captures both perspectives
|
|
306
|
+
*/
|
|
307
|
+
private mergeBeliefsCategorial;
|
|
308
|
+
/**
|
|
309
|
+
* Merge two statements into a combined statement
|
|
310
|
+
*/
|
|
311
|
+
private mergeStatements;
|
|
312
|
+
/**
|
|
313
|
+
* Check if auto-escalation should be triggered
|
|
314
|
+
*/
|
|
315
|
+
private shouldAutoEscalate;
|
|
316
|
+
/**
|
|
317
|
+
* Add a reconciliation to history
|
|
318
|
+
*/
|
|
319
|
+
private addToHistory;
|
|
320
|
+
/**
|
|
321
|
+
* Emit an event to listeners
|
|
322
|
+
*/
|
|
323
|
+
private emit;
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* Create a belief reconciler with optional configuration
|
|
327
|
+
*
|
|
328
|
+
* @param config - Partial configuration to override defaults
|
|
329
|
+
* @param options - Optional dependencies (vote collector, witness adapter)
|
|
330
|
+
* @returns Configured BeliefReconciler instance
|
|
331
|
+
*
|
|
332
|
+
* @example
|
|
333
|
+
* ```typescript
|
|
334
|
+
* // Basic usage
|
|
335
|
+
* const reconciler = createBeliefReconciler();
|
|
336
|
+
*
|
|
337
|
+
* // With custom configuration
|
|
338
|
+
* const reconciler = createBeliefReconciler({
|
|
339
|
+
* defaultStrategy: 'consensus',
|
|
340
|
+
* consensusThreshold: 0.7
|
|
341
|
+
* });
|
|
342
|
+
*
|
|
343
|
+
* // With dependencies
|
|
344
|
+
* const reconciler = createBeliefReconciler(
|
|
345
|
+
* { enableWitness: true },
|
|
346
|
+
* {
|
|
347
|
+
* voteCollector: myVoteCollector,
|
|
348
|
+
* witnessAdapter: myWitnessAdapter
|
|
349
|
+
* }
|
|
350
|
+
* );
|
|
351
|
+
* ```
|
|
352
|
+
*/
|
|
353
|
+
export declare function createBeliefReconciler(config?: Partial<BeliefReconcilerConfig>, options?: {
|
|
354
|
+
voteCollector?: IVoteCollector;
|
|
355
|
+
witnessAdapter?: IWitnessAdapter;
|
|
356
|
+
}): BeliefReconciler;
|
|
357
|
+
//# sourceMappingURL=belief-reconciler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"belief-reconciler.d.ts","sourceRoot":"","sources":["../../src/strange-loop/belief-reconciler.ts"],"names":[],"mappings":"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"}
|