agentic-qe 3.7.0 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/skills/pr-review/SKILL.md +1 -1
- package/.claude/skills/skills-manifest.json +6 -6
- package/README.md +81 -10
- package/package.json +2 -2
- package/scripts/generate-opencode-agents.ts +530 -0
- package/scripts/generate-opencode-skills.ts +318 -0
- package/v3/CHANGELOG.md +47 -0
- package/v3/README.md +7 -7
- package/v3/assets/skills/pr-review/SKILL.md +1 -1
- package/v3/dist/adapters/a2a/notifications/retry-queue.d.ts.map +1 -1
- package/v3/dist/adapters/a2a/notifications/retry-queue.js +2 -1
- package/v3/dist/adapters/a2a/notifications/retry-queue.js.map +1 -1
- package/v3/dist/adapters/a2a/notifications/subscription-store.d.ts.map +1 -1
- package/v3/dist/adapters/a2a/notifications/subscription-store.js +2 -1
- package/v3/dist/adapters/a2a/notifications/subscription-store.js.map +1 -1
- package/v3/dist/adapters/a2a/tasks/task-manager.d.ts.map +1 -1
- package/v3/dist/adapters/a2a/tasks/task-manager.js +4 -3
- package/v3/dist/adapters/a2a/tasks/task-manager.js.map +1 -1
- package/v3/dist/agents/claim-verifier/index.d.ts.map +1 -1
- package/v3/dist/agents/claim-verifier/index.js +2 -1
- package/v3/dist/agents/claim-verifier/index.js.map +1 -1
- package/v3/dist/cli/bundle.js +3591 -1371
- package/v3/dist/cli/commands/hooks.d.ts.map +1 -1
- package/v3/dist/cli/commands/hooks.js +17 -2
- package/v3/dist/cli/commands/hooks.js.map +1 -1
- package/v3/dist/cli/commands/init.d.ts.map +1 -1
- package/v3/dist/cli/commands/init.js +4 -0
- package/v3/dist/cli/commands/init.js.map +1 -1
- package/v3/dist/cli/commands/learning-helpers.d.ts.map +1 -1
- package/v3/dist/cli/commands/learning-helpers.js +11 -0
- package/v3/dist/cli/commands/learning-helpers.js.map +1 -1
- package/v3/dist/cli/handlers/init-handler.d.ts +2 -0
- package/v3/dist/cli/handlers/init-handler.d.ts.map +1 -1
- package/v3/dist/cli/handlers/init-handler.js +5 -0
- package/v3/dist/cli/handlers/init-handler.js.map +1 -1
- package/v3/dist/cli/scheduler/persistent-scheduler.d.ts.map +1 -1
- package/v3/dist/cli/scheduler/persistent-scheduler.js +2 -1
- package/v3/dist/cli/scheduler/persistent-scheduler.js.map +1 -1
- package/v3/dist/coordination/consensus/consensus-engine.d.ts.map +1 -1
- package/v3/dist/coordination/consensus/consensus-engine.js +2 -1
- package/v3/dist/coordination/consensus/consensus-engine.js.map +1 -1
- package/v3/dist/coordination/cross-domain-router.d.ts.map +1 -1
- package/v3/dist/coordination/cross-domain-router.js +7 -8
- package/v3/dist/coordination/cross-domain-router.js.map +1 -1
- package/v3/dist/coordination/handlers/code-intelligence-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/code-intelligence-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/code-intelligence-handlers.js +203 -0
- package/v3/dist/coordination/handlers/code-intelligence-handlers.js.map +1 -0
- package/v3/dist/coordination/handlers/coverage-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/coverage-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/coverage-handlers.js +120 -0
- package/v3/dist/coordination/handlers/coverage-handlers.js.map +1 -0
- package/v3/dist/coordination/handlers/handler-types.d.ts +35 -0
- package/v3/dist/coordination/handlers/handler-types.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/handler-types.js +8 -0
- package/v3/dist/coordination/handlers/handler-types.js.map +1 -0
- package/v3/dist/coordination/handlers/handler-utils.d.ts +106 -0
- package/v3/dist/coordination/handlers/handler-utils.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/handler-utils.js +480 -0
- package/v3/dist/coordination/handlers/handler-utils.js.map +1 -0
- package/v3/dist/coordination/handlers/index.d.ts +15 -0
- package/v3/dist/coordination/handlers/index.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/index.js +14 -0
- package/v3/dist/coordination/handlers/index.js.map +1 -0
- package/v3/dist/coordination/handlers/misc-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/misc-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/misc-handlers.js +64 -0
- package/v3/dist/coordination/handlers/misc-handlers.js.map +1 -0
- package/v3/dist/coordination/handlers/quality-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/quality-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/quality-handlers.js +83 -0
- package/v3/dist/coordination/handlers/quality-handlers.js.map +1 -0
- package/v3/dist/coordination/handlers/requirements-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/requirements-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/requirements-handlers.js +95 -0
- package/v3/dist/coordination/handlers/requirements-handlers.js.map +1 -0
- package/v3/dist/coordination/handlers/security-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/security-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/security-handlers.js +255 -0
- package/v3/dist/coordination/handlers/security-handlers.js.map +1 -0
- package/v3/dist/coordination/handlers/test-execution-handlers.d.ts +9 -0
- package/v3/dist/coordination/handlers/test-execution-handlers.d.ts.map +1 -0
- package/v3/dist/coordination/handlers/test-execution-handlers.js +153 -0
- package/v3/dist/coordination/handlers/test-execution-handlers.js.map +1 -0
- package/v3/dist/coordination/queen-coordinator.d.ts.map +1 -1
- package/v3/dist/coordination/queen-coordinator.js +28 -25
- package/v3/dist/coordination/queen-coordinator.js.map +1 -1
- package/v3/dist/coordination/task-executor.d.ts +25 -9
- package/v3/dist/coordination/task-executor.d.ts.map +1 -1
- package/v3/dist/coordination/task-executor.js +38 -1352
- package/v3/dist/coordination/task-executor.js.map +1 -1
- package/v3/dist/domains/code-intelligence/services/metric-collector/loc-counter.js +15 -9
- package/v3/dist/domains/code-intelligence/services/metric-collector/loc-counter.js.map +1 -1
- package/v3/dist/domains/defect-intelligence/services/causal-root-cause-analyzer.d.ts.map +1 -1
- package/v3/dist/domains/defect-intelligence/services/causal-root-cause-analyzer.js +2 -1
- package/v3/dist/domains/defect-intelligence/services/causal-root-cause-analyzer.js.map +1 -1
- package/v3/dist/domains/requirements-validation/services/product-factors-assessment/types/index.d.ts.map +1 -1
- package/v3/dist/domains/requirements-validation/services/product-factors-assessment/types/index.js +2 -1
- package/v3/dist/domains/requirements-validation/services/product-factors-assessment/types/index.js.map +1 -1
- package/v3/dist/domains/test-execution/types/e2e-step.types.d.ts.map +1 -1
- package/v3/dist/domains/test-execution/types/e2e-step.types.js +2 -1
- package/v3/dist/domains/test-execution/types/e2e-step.types.js.map +1 -1
- package/v3/dist/feedback/coverage-learner.d.ts.map +1 -1
- package/v3/dist/feedback/coverage-learner.js +2 -1
- package/v3/dist/feedback/coverage-learner.js.map +1 -1
- package/v3/dist/init/kiro-installer.d.ts +70 -0
- package/v3/dist/init/kiro-installer.d.ts.map +1 -0
- package/v3/dist/init/kiro-installer.js +794 -0
- package/v3/dist/init/kiro-installer.js.map +1 -0
- package/v3/dist/init/opencode-installer.d.ts +67 -0
- package/v3/dist/init/opencode-installer.d.ts.map +1 -0
- package/v3/dist/init/opencode-installer.js +267 -0
- package/v3/dist/init/opencode-installer.js.map +1 -0
- package/v3/dist/init/orchestrator.d.ts.map +1 -1
- package/v3/dist/init/orchestrator.js +2 -0
- package/v3/dist/init/orchestrator.js.map +1 -1
- package/v3/dist/init/phases/09-assets.d.ts +5 -0
- package/v3/dist/init/phases/09-assets.d.ts.map +1 -1
- package/v3/dist/init/phases/09-assets.js +59 -0
- package/v3/dist/init/phases/09-assets.js.map +1 -1
- package/v3/dist/init/phases/phase-interface.d.ts +4 -0
- package/v3/dist/init/phases/phase-interface.d.ts.map +1 -1
- package/v3/dist/init/phases/phase-interface.js.map +1 -1
- package/v3/dist/integrations/agentic-flow/onnx-embeddings/adapter.d.ts.map +1 -1
- package/v3/dist/integrations/agentic-flow/onnx-embeddings/adapter.js +2 -1
- package/v3/dist/integrations/agentic-flow/onnx-embeddings/adapter.js.map +1 -1
- package/v3/dist/integrations/n8n/agent-factory.d.ts.map +1 -1
- package/v3/dist/integrations/n8n/agent-factory.js +2 -1
- package/v3/dist/integrations/n8n/agent-factory.js.map +1 -1
- package/v3/dist/integrations/rl-suite/sona.d.ts.map +1 -1
- package/v3/dist/integrations/rl-suite/sona.js +2 -1
- package/v3/dist/integrations/rl-suite/sona.js.map +1 -1
- package/v3/dist/integrations/ruvector/brain-exporter.d.ts.map +1 -1
- package/v3/dist/integrations/ruvector/brain-exporter.js +4 -3
- package/v3/dist/integrations/ruvector/brain-exporter.js.map +1 -1
- package/v3/dist/integrations/ruvector/hypergraph-schema.d.ts.map +1 -1
- package/v3/dist/integrations/ruvector/hypergraph-schema.js +7 -0
- package/v3/dist/integrations/ruvector/hypergraph-schema.js.map +1 -1
- package/v3/dist/integrations/ruvector/index.d.ts +1 -0
- package/v3/dist/integrations/ruvector/index.d.ts.map +1 -1
- package/v3/dist/integrations/ruvector/index.js +1 -0
- package/v3/dist/integrations/ruvector/index.js.map +1 -1
- package/v3/dist/integrations/ruvector/shared-rvf-dual-writer.d.ts +41 -0
- package/v3/dist/integrations/ruvector/shared-rvf-dual-writer.d.ts.map +1 -0
- package/v3/dist/integrations/ruvector/shared-rvf-dual-writer.js +122 -0
- package/v3/dist/integrations/ruvector/shared-rvf-dual-writer.js.map +1 -0
- package/v3/dist/integrations/ruvector/sona-wrapper.d.ts.map +1 -1
- package/v3/dist/integrations/ruvector/sona-wrapper.js +2 -1
- package/v3/dist/integrations/ruvector/sona-wrapper.js.map +1 -1
- package/v3/dist/integrations/vibium/client.d.ts.map +1 -1
- package/v3/dist/integrations/vibium/client.js +2 -1
- package/v3/dist/integrations/vibium/client.js.map +1 -1
- package/v3/dist/integrations/vibium/fallback.d.ts.map +1 -1
- package/v3/dist/integrations/vibium/fallback.js +2 -1
- package/v3/dist/integrations/vibium/fallback.js.map +1 -1
- package/v3/dist/kernel/kernel.d.ts.map +1 -1
- package/v3/dist/kernel/kernel.js +2 -1
- package/v3/dist/kernel/kernel.js.map +1 -1
- package/v3/dist/kernel/unified-memory.d.ts.map +1 -1
- package/v3/dist/kernel/unified-memory.js +19 -9
- package/v3/dist/kernel/unified-memory.js.map +1 -1
- package/v3/dist/learning/aqe-learning-engine.d.ts.map +1 -1
- package/v3/dist/learning/aqe-learning-engine.js +14 -2
- package/v3/dist/learning/aqe-learning-engine.js.map +1 -1
- package/v3/dist/learning/dream/concept-graph.d.ts +10 -5
- package/v3/dist/learning/dream/concept-graph.d.ts.map +1 -1
- package/v3/dist/learning/dream/concept-graph.js +77 -25
- package/v3/dist/learning/dream/concept-graph.js.map +1 -1
- package/v3/dist/learning/dream/dream-engine.d.ts.map +1 -1
- package/v3/dist/learning/dream/dream-engine.js +37 -29
- package/v3/dist/learning/dream/dream-engine.js.map +1 -1
- package/v3/dist/learning/dream/insight-generator.d.ts.map +1 -1
- package/v3/dist/learning/dream/insight-generator.js +2 -1
- package/v3/dist/learning/dream/insight-generator.js.map +1 -1
- package/v3/dist/learning/dream/spreading-activation.d.ts +1 -1
- package/v3/dist/learning/dream/spreading-activation.d.ts.map +1 -1
- package/v3/dist/learning/dream/spreading-activation.js +13 -5
- package/v3/dist/learning/dream/spreading-activation.js.map +1 -1
- package/v3/dist/learning/memory-auditor.d.ts.map +1 -1
- package/v3/dist/learning/memory-auditor.js +7 -4
- package/v3/dist/learning/memory-auditor.js.map +1 -1
- package/v3/dist/learning/real-embeddings.d.ts.map +1 -1
- package/v3/dist/learning/real-embeddings.js +26 -1
- package/v3/dist/learning/real-embeddings.js.map +1 -1
- package/v3/dist/learning/real-qe-reasoning-bank.d.ts.map +1 -1
- package/v3/dist/learning/real-qe-reasoning-bank.js +13 -2
- package/v3/dist/learning/real-qe-reasoning-bank.js.map +1 -1
- package/v3/dist/learning/sqlite-persistence.d.ts +5 -0
- package/v3/dist/learning/sqlite-persistence.d.ts.map +1 -1
- package/v3/dist/learning/sqlite-persistence.js +47 -7
- package/v3/dist/learning/sqlite-persistence.js.map +1 -1
- package/v3/dist/mcp/bundle.js +3185 -2017
- package/v3/dist/mcp/connection-pool.d.ts.map +1 -1
- package/v3/dist/mcp/connection-pool.js +3 -2
- package/v3/dist/mcp/connection-pool.js.map +1 -1
- package/v3/dist/mcp/entry.js +12 -0
- package/v3/dist/mcp/entry.js.map +1 -1
- package/v3/dist/mcp/handlers/core-handlers.d.ts +28 -0
- package/v3/dist/mcp/handlers/core-handlers.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/core-handlers.js +117 -0
- package/v3/dist/mcp/handlers/core-handlers.js.map +1 -1
- package/v3/dist/mcp/handlers/index.d.ts +1 -1
- package/v3/dist/mcp/handlers/index.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/index.js +1 -1
- package/v3/dist/mcp/handlers/index.js.map +1 -1
- package/v3/dist/mcp/http-server.d.ts.map +1 -1
- package/v3/dist/mcp/http-server.js +12 -9
- package/v3/dist/mcp/http-server.js.map +1 -1
- package/v3/dist/mcp/middleware/output-compaction.d.ts +45 -0
- package/v3/dist/mcp/middleware/output-compaction.d.ts.map +1 -0
- package/v3/dist/mcp/middleware/output-compaction.js +279 -0
- package/v3/dist/mcp/middleware/output-compaction.js.map +1 -0
- package/v3/dist/mcp/protocol-server.d.ts.map +1 -1
- package/v3/dist/mcp/protocol-server.js +53 -41
- package/v3/dist/mcp/protocol-server.js.map +1 -1
- package/v3/dist/mcp/security/sampling-server.js +2 -2
- package/v3/dist/mcp/security/sampling-server.js.map +1 -1
- package/v3/dist/mcp/services/reasoning-bank-service.d.ts.map +1 -1
- package/v3/dist/mcp/services/reasoning-bank-service.js +4 -5
- package/v3/dist/mcp/services/reasoning-bank-service.js.map +1 -1
- package/v3/dist/mcp/tools/base.d.ts +5 -0
- package/v3/dist/mcp/tools/base.d.ts.map +1 -1
- package/v3/dist/mcp/tools/base.js +25 -1
- package/v3/dist/mcp/tools/base.js.map +1 -1
- package/v3/dist/mcp/tools/learning-optimization/dream.d.ts.map +1 -1
- package/v3/dist/mcp/tools/learning-optimization/dream.js +22 -0
- package/v3/dist/mcp/tools/learning-optimization/dream.js.map +1 -1
- package/v3/dist/mcp/tools/security-compliance/scan.d.ts.map +1 -1
- package/v3/dist/mcp/tools/security-compliance/scan.js +2 -1
- package/v3/dist/mcp/tools/security-compliance/scan.js.map +1 -1
- package/v3/dist/mcp/transport/index.d.ts +8 -6
- package/v3/dist/mcp/transport/index.d.ts.map +1 -1
- package/v3/dist/mcp/transport/index.js +10 -9
- package/v3/dist/mcp/transport/index.js.map +1 -1
- package/v3/dist/migrations/20260120_add_hypergraph_tables.d.ts.map +1 -1
- package/v3/dist/migrations/20260120_add_hypergraph_tables.js +7 -0
- package/v3/dist/migrations/20260120_add_hypergraph_tables.js.map +1 -1
- package/v3/dist/optimization/token-optimizer-service.d.ts.map +1 -1
- package/v3/dist/optimization/token-optimizer-service.js +2 -1
- package/v3/dist/optimization/token-optimizer-service.js.map +1 -1
- package/v3/dist/planning/goap-planner.d.ts.map +1 -1
- package/v3/dist/planning/goap-planner.js +2 -1
- package/v3/dist/planning/goap-planner.js.map +1 -1
- package/v3/dist/planning/plan-executor.d.ts +5 -1
- package/v3/dist/planning/plan-executor.d.ts.map +1 -1
- package/v3/dist/planning/plan-executor.js +16 -2
- package/v3/dist/planning/plan-executor.js.map +1 -1
- package/v3/dist/routing/routing-feedback.d.ts.map +1 -1
- package/v3/dist/routing/routing-feedback.js +2 -1
- package/v3/dist/routing/routing-feedback.js.map +1 -1
- package/v3/dist/shared/llm/cost-tracker.d.ts.map +1 -1
- package/v3/dist/shared/llm/cost-tracker.js +2 -1
- package/v3/dist/shared/llm/cost-tracker.js.map +1 -1
- package/v3/dist/shared/llm/metrics/router-metrics.d.ts.map +1 -1
- package/v3/dist/shared/llm/metrics/router-metrics.js +2 -1
- package/v3/dist/shared/llm/metrics/router-metrics.js.map +1 -1
- package/v3/dist/strange-loop/belief-reconciler.d.ts.map +1 -1
- package/v3/dist/strange-loop/belief-reconciler.js +2 -1
- package/v3/dist/strange-loop/belief-reconciler.js.map +1 -1
- package/v3/dist/sync/readers/json-reader.d.ts.map +1 -1
- package/v3/dist/sync/readers/json-reader.js +2 -1
- package/v3/dist/sync/readers/json-reader.js.map +1 -1
- package/v3/dist/types/cross-phase-signals.d.ts.map +1 -1
- package/v3/dist/types/cross-phase-signals.js +2 -1
- package/v3/dist/types/cross-phase-signals.js.map +1 -1
- package/v3/dist/validation/swarm-skill-validator.d.ts.map +1 -1
- package/v3/dist/validation/swarm-skill-validator.js +2 -1
- package/v3/dist/validation/swarm-skill-validator.js.map +1 -1
- package/v3/dist/workers/base-worker.d.ts.map +1 -1
- package/v3/dist/workers/base-worker.js +2 -1
- package/v3/dist/workers/base-worker.js.map +1 -1
- package/v3/package.json +5 -2
|
@@ -25,7 +25,7 @@ Read the complete diff and PR description. Do not skim — read every changed fi
|
|
|
25
25
|
### 2. Scope Check
|
|
26
26
|
- Only analyze AQE/QE skills (NOT Claude Flow platform skills)
|
|
27
27
|
- Platform skills to EXCLUDE: v3-*, flow-nexus-*, agentdb-*, reasoningbank-*, swarm-*, github-*, hive-mind-advanced, hooks-automation, iterative-loop, stream-chain, skill-builder, sparc-methodology, pair-programming, release, debug-loop, aqe-v2-v3-migration
|
|
28
|
-
- If the PR touches skills, verify the count/scope matches expectations (~
|
|
28
|
+
- If the PR touches skills, verify the count/scope matches expectations (~78 AQE skills)
|
|
29
29
|
- Flag any platform skill changes that may have leaked into an AQE-focused PR
|
|
30
30
|
|
|
31
31
|
### 3. Summarize Changes
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"version": "1.3.0",
|
|
3
3
|
"generated": "2026-02-04T00:00:00.000Z",
|
|
4
4
|
"totalSkills": 46,
|
|
5
|
-
"totalQESkills":
|
|
6
|
-
"description": "Agentic QE Fleet skills manifest - 46 Tier 3 verified QE skills. Total
|
|
5
|
+
"totalQESkills": 78,
|
|
6
|
+
"description": "Agentic QE Fleet skills manifest - 46 Tier 3 verified QE skills. Total 78 QE skills on disk (46 Tier 3 + 32 additional including QCSD swarms, n8n testing, enterprise integration, pentest validation, qe-* domains).",
|
|
7
7
|
"categories": {
|
|
8
8
|
"qcsd-phases": {
|
|
9
9
|
"description": "QCSD (Quality Conscious Software Delivery) phase swarms for shift-left quality",
|
|
@@ -904,7 +904,7 @@
|
|
|
904
904
|
},
|
|
905
905
|
"metadata": {
|
|
906
906
|
"generatedBy": "Agentic QE Fleet",
|
|
907
|
-
"fleetVersion": "3.7.
|
|
907
|
+
"fleetVersion": "3.7.2",
|
|
908
908
|
"manifestVersion": "1.3.0",
|
|
909
909
|
"lastUpdated": "2026-02-04T00:00:00.000Z",
|
|
910
910
|
"contributors": [
|
|
@@ -914,11 +914,11 @@
|
|
|
914
914
|
"url": "https://github.com/fndlalit"
|
|
915
915
|
}
|
|
916
916
|
],
|
|
917
|
-
"notes": "This manifest tracks 46 Tier 3 verified QE skills. Total
|
|
917
|
+
"notes": "This manifest tracks 46 Tier 3 verified QE skills. Total 78 QE skills on disk (46 Tier 3 + 32 additional). Claude Flow platform skills (33) are managed separately.",
|
|
918
918
|
"skillBreakdown": {
|
|
919
919
|
"qeSkillsTier3": 46,
|
|
920
|
-
"qeSkillsAdditional":
|
|
921
|
-
"totalQESkills":
|
|
920
|
+
"qeSkillsAdditional": 32,
|
|
921
|
+
"totalQESkills": 78,
|
|
922
922
|
"platformSkills": 36,
|
|
923
923
|
"totalOnDisk": 111
|
|
924
924
|
},
|
package/README.md
CHANGED
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
**V3 (Main)** | [V2 Documentation](v2/docs/V2-README.md) | [Release Notes](docs/releases/README.md) | [Changelog](v3/CHANGELOG.md) | [Contributors](CONTRIBUTORS.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
|
|
13
13
|
|
|
14
|
-
> **V3** brings Domain-Driven Design architecture, 13 bounded contexts, 60 specialized QE agents, TinyDancer intelligent model routing, ReasoningBank learning with Dream cycles, HNSW vector search, mathematical Coherence verification, full MinCut/Consensus integration across all 13 domains, RVF cognitive container integration with portable brain export/import, and deep integration with [Claude Flow](https://github.com/ruvnet/claude-flow) and [Agentic Flow](https://github.com/ruvnet/agentic-flow).
|
|
14
|
+
> **V3** brings Domain-Driven Design architecture, 13 bounded contexts, 60 specialized QE agents, TinyDancer intelligent model routing, ReasoningBank learning with Dream cycles, HNSW vector search, mathematical Coherence verification, full MinCut/Consensus integration across all 13 domains, RVF cognitive container integration with portable brain export/import, OpenCode multi-client support, AWS Kiro IDE integration, and deep integration with [Claude Flow](https://github.com/ruvnet/claude-flow) and [Agentic Flow](https://github.com/ruvnet/agentic-flow).
|
|
15
15
|
|
|
16
|
-
🏗️ **DDD Architecture** | 🧠 **ReasoningBank + Dream Cycles** | 🎯 **TinyDancer Model Routing** | 🔍 **HNSW Vector Search** | 👑 **Queen Coordinator** | 📊 **O(log n) Coverage** | 🔗 **Claude Flow Integration** | 🎯 **13 Bounded Contexts** | 📚 **
|
|
16
|
+
🏗️ **DDD Architecture** | 🧠 **ReasoningBank + Dream Cycles** | 🎯 **TinyDancer Model Routing** | 🔍 **HNSW Vector Search** | 👑 **Queen Coordinator** | 📊 **O(log n) Coverage** | 🔗 **Claude Flow Integration** | 🎯 **13 Bounded Contexts** | 📚 **78 QE Skills** | 🧬 **Coherence Verification** | ✅ **Trust Tiers** | 🛡️ **Governance**
|
|
17
17
|
|
|
18
18
|
</div>
|
|
19
19
|
|
|
@@ -33,11 +33,17 @@ aqe init
|
|
|
33
33
|
|
|
34
34
|
# Or with auto-configuration (no prompts, configures MCP automatically)
|
|
35
35
|
aqe init --auto
|
|
36
|
+
|
|
37
|
+
# Include OpenCode assets (agents, skills, tools, permissions)
|
|
38
|
+
aqe init --auto --with-opencode
|
|
39
|
+
|
|
40
|
+
# Include AWS Kiro IDE assets (agents, skills, hooks, steering)
|
|
41
|
+
aqe init --auto --with-kiro
|
|
36
42
|
```
|
|
37
43
|
|
|
38
44
|
> **Note:** `aqe init` automatically configures the MCP server in `.mcp.json` — Claude Code will auto-start it when connecting. For standalone MCP server usage (non-Claude-Code clients), run `aqe-mcp` or `npx agentic-qe mcp`.
|
|
39
45
|
|
|
40
|
-
### Use from MCP-compatible agent clients (Claude, Codex, others)
|
|
46
|
+
### Use from MCP-compatible agent clients (Claude Code, OpenCode, Kiro, Codex, others)
|
|
41
47
|
|
|
42
48
|
AQE is exposed as an MCP server and can be used from any client that supports MCP tool connections.
|
|
43
49
|
|
|
@@ -45,6 +51,13 @@ AQE is exposed as an MCP server and can be used from any client that supports MC
|
|
|
45
51
|
# For Claude Code: aqe init --auto configures .mcp.json automatically
|
|
46
52
|
# Claude Code will auto-start the MCP server on connection
|
|
47
53
|
|
|
54
|
+
# For OpenCode: provision assets automatically during init
|
|
55
|
+
aqe init --auto --with-opencode # installs agents, skills, tools, permissions, opencode.json
|
|
56
|
+
aqe-mcp # starts with SSE auto-detection
|
|
57
|
+
|
|
58
|
+
# For AWS Kiro: provision Kiro-native assets during init
|
|
59
|
+
aqe init --auto --with-kiro # installs .kiro/ agents, skills, hooks, steering, MCP config
|
|
60
|
+
|
|
48
61
|
# For other MCP clients: start the server manually
|
|
49
62
|
aqe-mcp # if installed globally
|
|
50
63
|
npx agentic-qe mcp # without global install
|
|
@@ -67,9 +80,11 @@ For client-specific setup examples, see `docs/integration/mcp-clients.md`.
|
|
|
67
80
|
- ✅ **Claude Flow Integration**: Deep integration with MCP tools and swarm orchestration
|
|
68
81
|
- ✅ **Memory Coordination**: Cross-agent communication via `aqe/v3/*` namespaces
|
|
69
82
|
- ✅ **Coherence Verification** (v3.3.0): Mathematical proof of belief consistency using WASM engines
|
|
70
|
-
- ✅ **RVF Cognitive Containers** (v3.7.0): MinCut task routing, witness chain audit trail, portable brain export/import, unified HNSW search
|
|
83
|
+
- ✅ **RVF Cognitive Containers** (v3.7.0): MinCut task routing, witness chain audit trail, portable brain export/import, unified HNSW search, production dual-write to native RVF
|
|
84
|
+
- ✅ **OpenCode Support** (v3.7.1): 59 agent configs, 86 skill configs (78 QE + 8 general dev), 5 tool wrappers, SSE/WS/HTTP transport, output compaction, graceful degradation, `aqe init --with-opencode` auto-provisioning
|
|
85
|
+
- ✅ **AWS Kiro Support** (v3.7.2): 87 agent configs, 86 skill configs, 5 event-driven hooks, 2 steering files, MCP config, `aqe init --with-kiro` auto-provisioning
|
|
71
86
|
- ✅ **V2 Backward Compatibility**: All V2 agents map to V3 equivalents
|
|
72
|
-
- ✅ **
|
|
87
|
+
- ✅ **78 QE Skills**: 46 Tier 3 verified + 32 additional QE skills (QCSD swarms, n8n testing, enterprise integration, qe-* domains)
|
|
73
88
|
|
|
74
89
|
---
|
|
75
90
|
|
|
@@ -136,7 +151,7 @@ V3 is built on **13 DDD Bounded Contexts**, each with dedicated agents and clear
|
|
|
136
151
|
|
|
137
152
|
### ✅ Skill Trust Tiers (v3.4.2)
|
|
138
153
|
|
|
139
|
-
AQE includes **
|
|
154
|
+
AQE includes **78 QE skills** (46 Tier 3 verified + 32 additional). Trust tiers apply to core QE skills:
|
|
140
155
|
|
|
141
156
|
| Tier | Badge | Count | Description |
|
|
142
157
|
|------|-------|-------|-------------|
|
|
@@ -314,14 +329,64 @@ V3.7 integrates **RVF (RuVector Format)** cognitive container capabilities acros
|
|
|
314
329
|
aqe brain export --output ./my-brain
|
|
315
330
|
|
|
316
331
|
# Import a brain into another environment
|
|
317
|
-
aqe brain import ./my-brain --dry-run
|
|
332
|
+
aqe brain import --input ./my-brain --dry-run
|
|
318
333
|
|
|
319
334
|
# View brain statistics
|
|
320
|
-
aqe brain info ./my-brain
|
|
335
|
+
aqe brain info --input ./my-brain
|
|
321
336
|
```
|
|
322
337
|
|
|
323
338
|
---
|
|
324
339
|
|
|
340
|
+
### 🏗️ AWS Kiro IDE Support (v3.7.2)
|
|
341
|
+
|
|
342
|
+
V3.7.2 adds full **AWS Kiro IDE** integration, converting AQE agents, skills, hooks, and steering files to Kiro-native formats via `aqe init --with-kiro`.
|
|
343
|
+
|
|
344
|
+
| Asset | Count | Description |
|
|
345
|
+
|-------|-------|-------------|
|
|
346
|
+
| **Agents** | 87 | `.kiro/agents/*.json` — 62 QE + 15 n8n + 10 infra/testing agents |
|
|
347
|
+
| **Skills** | 86 | `.kiro/skills/*/SKILL.md` — full instructional content from Claude Code sources |
|
|
348
|
+
| **Hooks** | 5 | `.kiro/hooks/*.kiro.hook` — event-driven automation (test update, coverage, security, quality gate, pre-commit) |
|
|
349
|
+
| **Steering** | 2 | `.kiro/steering/*.md` — QE standards and testing conventions |
|
|
350
|
+
| **MCP Config** | 1 | `.kiro/settings/mcp.json` — auto-approved AQE tools |
|
|
351
|
+
|
|
352
|
+
**Setup:**
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
# Provision Kiro assets during init
|
|
356
|
+
aqe init --auto --with-kiro
|
|
357
|
+
|
|
358
|
+
# Or add Kiro to an existing project
|
|
359
|
+
aqe init --with-kiro
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**What gets generated:**
|
|
363
|
+
|
|
364
|
+
```
|
|
365
|
+
.kiro/
|
|
366
|
+
├── agents/ # 87 agent definitions (Kiro JSON format)
|
|
367
|
+
├── skills/*/SKILL.md # 86 skill definitions (full markdown content)
|
|
368
|
+
├── hooks/ # 5 event-driven hooks
|
|
369
|
+
│ ├── aqe-test-updater.kiro.hook # Auto-update tests on source changes
|
|
370
|
+
│ ├── aqe-coverage-check.kiro.hook # Coverage analysis on test edits
|
|
371
|
+
│ ├── aqe-security-scan.kiro.hook # Security scan on auth file changes
|
|
372
|
+
│ ├── aqe-spec-quality-gate.kiro.hook # Quality gate after spec tasks
|
|
373
|
+
│ └── aqe-pre-commit-quality.kiro.hook # Quality check before agent stops
|
|
374
|
+
├── steering/ # 2 project-wide guidance files
|
|
375
|
+
│ ├── qe-standards.md # QE standards (auto-triggered)
|
|
376
|
+
│ └── testing-conventions.md # Test file conventions (fileMatch)
|
|
377
|
+
└── settings/mcp.json # MCP server config with auto-approved tools
|
|
378
|
+
```
|
|
379
|
+
|
|
380
|
+
**Key features:**
|
|
381
|
+
- Converts OpenCode YAML agents and Claude Code markdown agents to Kiro JSON format
|
|
382
|
+
- Reads full SKILL.md content from Claude Code sources (not thin YAML stubs)
|
|
383
|
+
- Maps `mcp:agentic-qe:` references to Kiro's `@agentic-qe/` format
|
|
384
|
+
- Maps Claude Code tool names to Kiro builtins (`bash`→`shell`, `edit`→`write`)
|
|
385
|
+
- Auto-detects existing `.kiro/` directory in `--auto` mode
|
|
386
|
+
- Safe by default: won't overwrite existing files unless `--upgrade` is used
|
|
387
|
+
|
|
388
|
+
---
|
|
389
|
+
|
|
325
390
|
### 🎯 TinyDancer Intelligent Model Routing
|
|
326
391
|
|
|
327
392
|
**TinyDancer** (ADR-026) provides 3-tier intelligent model routing for cost optimization:
|
|
@@ -636,12 +701,12 @@ claude "Coordinate security audit across the monorepo:
|
|
|
636
701
|
|
|
637
702
|
---
|
|
638
703
|
|
|
639
|
-
## 🎓
|
|
704
|
+
## 🎓 78 QE Skills
|
|
640
705
|
|
|
641
706
|
V3 agents automatically apply relevant skills from the comprehensive QE skill library.
|
|
642
707
|
|
|
643
708
|
<details>
|
|
644
|
-
<summary><b>View All
|
|
709
|
+
<summary><b>View All 78 QE Skills</b></summary>
|
|
645
710
|
|
|
646
711
|
**Core Testing & Methodologies (12)**
|
|
647
712
|
- agentic-quality-engineering - Core PACT principles for AI-powered QE
|
|
@@ -829,6 +894,12 @@ agentic-qe/
|
|
|
829
894
|
├── .claude/
|
|
830
895
|
│ ├── agents/v3/ # V3 agent definitions (source)
|
|
831
896
|
│ └── skills/ # 15 QE-specific skills
|
|
897
|
+
├── .kiro/ # AWS Kiro IDE integration (v3.7.2)
|
|
898
|
+
│ ├── agents/ # 87 Kiro agent definitions (JSON)
|
|
899
|
+
│ ├── skills/ # 86 Kiro skill definitions (SKILL.md)
|
|
900
|
+
│ ├── hooks/ # 5 event-driven hooks
|
|
901
|
+
│ ├── steering/ # 2 QE steering files
|
|
902
|
+
│ └── settings/ # MCP server configuration
|
|
832
903
|
├── docs/ # Shared documentation
|
|
833
904
|
│ ├── plans/ # Migration plans
|
|
834
905
|
│ ├── policies/ # Project policies
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.7.
|
|
4
|
-
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning,
|
|
3
|
+
"version": "3.7.2",
|
|
4
|
+
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 60 specialized QE agents, mathematical Coherence verification, deep Claude Flow integration",
|
|
5
5
|
"main": "./v3/dist/index.js",
|
|
6
6
|
"types": "./v3/dist/index.d.ts",
|
|
7
7
|
"bin": {
|