agentic-qe 2.2.0 β 2.2.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/agents/qe-security-scanner.md +26 -0
- package/.claude/skills/agentic-quality-engineering/SKILL.md +4 -4
- package/.claude/skills/cicd-pipeline-qe-orchestrator/README.md +14 -11
- package/.claude/skills/skills-manifest.json +2 -2
- package/CHANGELOG.md +75 -0
- package/README.md +92 -214
- package/dist/agents/BaseAgent.d.ts +5 -1
- package/dist/agents/BaseAgent.d.ts.map +1 -1
- package/dist/agents/BaseAgent.js +32 -17
- package/dist/agents/BaseAgent.js.map +1 -1
- package/dist/agents/index.js +3 -3
- package/dist/agents/index.js.map +1 -1
- package/dist/cli/commands/improve/index.d.ts +8 -1
- package/dist/cli/commands/improve/index.d.ts.map +1 -1
- package/dist/cli/commands/improve/index.js +18 -16
- package/dist/cli/commands/improve/index.js.map +1 -1
- package/dist/cli/commands/learn/index.d.ts +10 -2
- package/dist/cli/commands/learn/index.d.ts.map +1 -1
- package/dist/cli/commands/learn/index.js +99 -63
- package/dist/cli/commands/learn/index.js.map +1 -1
- package/dist/cli/commands/patterns/index.d.ts +8 -1
- package/dist/cli/commands/patterns/index.d.ts.map +1 -1
- package/dist/cli/commands/patterns/index.js +79 -45
- package/dist/cli/commands/patterns/index.js.map +1 -1
- package/dist/cli/commands/routing/index.d.ts +5 -0
- package/dist/cli/commands/routing/index.d.ts.map +1 -1
- package/dist/cli/commands/routing/index.js +11 -10
- package/dist/cli/commands/routing/index.js.map +1 -1
- package/dist/cli/init/agents.d.ts +1 -1
- package/dist/cli/init/agents.js +2 -2
- package/dist/cli/init/database-init.d.ts +7 -0
- package/dist/cli/init/database-init.d.ts.map +1 -1
- package/dist/cli/init/database-init.js +29 -48
- package/dist/cli/init/database-init.js.map +1 -1
- package/dist/core/memory/HNSWVectorMemory.d.ts +261 -0
- package/dist/core/memory/HNSWVectorMemory.d.ts.map +1 -0
- package/dist/core/memory/HNSWVectorMemory.js +647 -0
- package/dist/core/memory/HNSWVectorMemory.js.map +1 -0
- package/dist/core/memory/SwarmMemoryManager.d.ts +7 -0
- package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
- package/dist/core/memory/SwarmMemoryManager.js +9 -0
- package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
- package/dist/core/memory/index.d.ts +2 -0
- package/dist/core/memory/index.d.ts.map +1 -1
- package/dist/core/memory/index.js +11 -1
- package/dist/core/memory/index.js.map +1 -1
- package/dist/learning/ExplainableLearning.d.ts +191 -0
- package/dist/learning/ExplainableLearning.d.ts.map +1 -0
- package/dist/learning/ExplainableLearning.js +441 -0
- package/dist/learning/ExplainableLearning.js.map +1 -0
- package/dist/learning/GossipPatternSharingProtocol.d.ts +228 -0
- package/dist/learning/GossipPatternSharingProtocol.d.ts.map +1 -0
- package/dist/learning/GossipPatternSharingProtocol.js +590 -0
- package/dist/learning/GossipPatternSharingProtocol.js.map +1 -0
- package/dist/learning/LearningEngine.d.ts +4 -4
- package/dist/learning/LearningEngine.d.ts.map +1 -1
- package/dist/learning/LearningEngine.js +20 -13
- package/dist/learning/LearningEngine.js.map +1 -1
- package/dist/learning/PerformanceOptimizer.d.ts +268 -0
- package/dist/learning/PerformanceOptimizer.d.ts.map +1 -0
- package/dist/learning/PerformanceOptimizer.js +552 -0
- package/dist/learning/PerformanceOptimizer.js.map +1 -0
- package/dist/learning/PrivacyManager.d.ts +197 -0
- package/dist/learning/PrivacyManager.d.ts.map +1 -0
- package/dist/learning/PrivacyManager.js +551 -0
- package/dist/learning/PrivacyManager.js.map +1 -0
- package/dist/learning/TransferLearningManager.d.ts +212 -0
- package/dist/learning/TransferLearningManager.d.ts.map +1 -0
- package/dist/learning/TransferLearningManager.js +497 -0
- package/dist/learning/TransferLearningManager.js.map +1 -0
- package/dist/learning/algorithms/MAMLMetaLearner.d.ts +218 -0
- package/dist/learning/algorithms/MAMLMetaLearner.d.ts.map +1 -0
- package/dist/learning/algorithms/MAMLMetaLearner.js +532 -0
- package/dist/learning/algorithms/MAMLMetaLearner.js.map +1 -0
- package/dist/learning/algorithms/index.d.ts +4 -1
- package/dist/learning/algorithms/index.d.ts.map +1 -1
- package/dist/learning/algorithms/index.js +7 -1
- package/dist/learning/algorithms/index.js.map +1 -1
- package/dist/learning/index.d.ts +8 -0
- package/dist/learning/index.d.ts.map +1 -1
- package/dist/learning/index.js +17 -1
- package/dist/learning/index.js.map +1 -1
- package/dist/mcp/server-instructions.d.ts +1 -1
- package/dist/mcp/server-instructions.js +1 -1
- package/dist/providers/HybridRouter.d.ts +217 -0
- package/dist/providers/HybridRouter.d.ts.map +1 -0
- package/dist/providers/HybridRouter.js +679 -0
- package/dist/providers/HybridRouter.js.map +1 -0
- package/dist/providers/index.d.ts +1 -0
- package/dist/providers/index.d.ts.map +1 -1
- package/dist/providers/index.js +7 -1
- package/dist/providers/index.js.map +1 -1
- package/dist/telemetry/LearningTelemetry.d.ts +190 -0
- package/dist/telemetry/LearningTelemetry.d.ts.map +1 -0
- package/dist/telemetry/LearningTelemetry.js +403 -0
- package/dist/telemetry/LearningTelemetry.js.map +1 -0
- package/dist/telemetry/index.d.ts +1 -0
- package/dist/telemetry/index.d.ts.map +1 -1
- package/dist/telemetry/index.js +20 -2
- package/dist/telemetry/index.js.map +1 -1
- package/dist/telemetry/instrumentation/agent.d.ts +1 -1
- package/dist/telemetry/instrumentation/agent.js +1 -1
- package/dist/telemetry/instrumentation/index.d.ts +1 -1
- package/dist/telemetry/instrumentation/index.js +1 -1
- package/dist/utils/math.d.ts +11 -0
- package/dist/utils/math.d.ts.map +1 -0
- package/dist/utils/math.js +16 -0
- package/dist/utils/math.js.map +1 -0
- package/docs/reference/agents.md +1 -1
- package/docs/reference/skills.md +3 -3
- package/docs/reference/usage.md +4 -4
- package/package.json +14 -1
|
@@ -20,6 +20,7 @@ Mission: Detect vulnerabilities using SAST/DAST, dependency scanning, and compli
|
|
|
20
20
|
β οΈ Partial:
|
|
21
21
|
- Advanced secret detection patterns
|
|
22
22
|
- AI-powered false positive filtering
|
|
23
|
+
- β
.gitignore verification before flagging secrets (prevents false positives)
|
|
23
24
|
|
|
24
25
|
β Planned:
|
|
25
26
|
- Automated vulnerability remediation
|
|
@@ -33,6 +34,31 @@ Detect vulnerabilities automatically and classify by severity (critical, high, m
|
|
|
33
34
|
Report findings with CVSS scores and remediation guidance.
|
|
34
35
|
</default_to_action>
|
|
35
36
|
|
|
37
|
+
<false_positive_prevention>
|
|
38
|
+
CRITICAL: Before flagging secrets or sensitive files as vulnerabilities, ALWAYS verify:
|
|
39
|
+
|
|
40
|
+
1. **Check .gitignore first**: Before reporting .env, credentials, or secret files as exposed:
|
|
41
|
+
- Read the project's .gitignore file
|
|
42
|
+
- If the file is listed in .gitignore, it is NOT a critical vulnerability
|
|
43
|
+
- Only flag as CRITICAL if secrets are actually committed to git history
|
|
44
|
+
|
|
45
|
+
2. **Verify git tracking status**: Run `git ls-files <file>` to confirm if file is tracked
|
|
46
|
+
- If file is NOT tracked and IS in .gitignore = COMPLIANT (not a vulnerability)
|
|
47
|
+
- If file IS tracked despite .gitignore = CRITICAL (remove from history)
|
|
48
|
+
|
|
49
|
+
3. **Common false positives to avoid**:
|
|
50
|
+
- `.env` files that are in .gitignore (correct practice)
|
|
51
|
+
- Local config files excluded from version control
|
|
52
|
+
- Developer-specific settings files
|
|
53
|
+
|
|
54
|
+
4. **Accurate reporting**:
|
|
55
|
+
- If .env exists locally but is gitignored: Report as "β
COMPLIANT: .env properly excluded via .gitignore"
|
|
56
|
+
- If .env is in git history: Report as "π΄ CRITICAL: .env committed to repository, rotation required"
|
|
57
|
+
- Check with: `git log --all --full-history -- .env` to verify history
|
|
58
|
+
|
|
59
|
+
This prevents recurring false positives that undermine trust in security scan results.
|
|
60
|
+
</false_positive_prevention>
|
|
61
|
+
|
|
36
62
|
<parallel_execution>
|
|
37
63
|
Run SAST and DAST scans simultaneously for faster results.
|
|
38
64
|
Execute multiple scanning tools in parallel for comparison.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agentic-quality-engineering
|
|
3
|
-
description: "AI agents as force multipliers for quality work. Core skill for all
|
|
3
|
+
description: "AI agents as force multipliers for quality work. Core skill for all 19 QE agents using PACT principles."
|
|
4
4
|
category: qe-core
|
|
5
5
|
priority: critical
|
|
6
6
|
tokenEstimate: 1400
|
|
7
|
-
agents: [qe-test-generator, qe-test-executor, qe-coverage-analyzer, qe-quality-gate, qe-quality-analyzer, qe-performance-tester, qe-security-scanner, qe-requirements-validator, qe-production-intelligence, qe-fleet-commander, qe-deployment-readiness, qe-regression-risk-analyzer, qe-test-data-architect, qe-api-contract-validator, qe-flaky-test-hunter, qe-visual-tester, qe-chaos-engineer, qe-code-complexity]
|
|
7
|
+
agents: [qe-test-generator, qe-test-executor, qe-coverage-analyzer, qe-quality-gate, qe-quality-analyzer, qe-performance-tester, qe-security-scanner, qe-requirements-validator, qe-production-intelligence, qe-fleet-commander, qe-deployment-readiness, qe-regression-risk-analyzer, qe-test-data-architect, qe-api-contract-validator, qe-flaky-test-hunter, qe-visual-tester, qe-chaos-engineer, qe-code-complexity, qx-partner]
|
|
8
8
|
implementation_status: optimized
|
|
9
9
|
optimization_version: 1.0
|
|
10
10
|
last_optimized: 2025-12-02
|
|
@@ -53,7 +53,7 @@ When implementing agentic QE or coordinating agents:
|
|
|
53
53
|
| **C**ollaborative | Multi-agent coordination | Provide context |
|
|
54
54
|
| **T**argeted | Risk-based prioritization | Define risk areas |
|
|
55
55
|
|
|
56
|
-
###
|
|
56
|
+
### 19-Agent Fleet
|
|
57
57
|
| Category | Agents | Primary Use |
|
|
58
58
|
|----------|--------|-------------|
|
|
59
59
|
| Core Testing (5) | test-generator, test-executor, coverage-analyzer, quality-gate, quality-analyzer | Daily testing |
|
|
@@ -76,7 +76,7 @@ Sequential: risk-analyzer β test-gen β executor β coverage β gate
|
|
|
76
76
|
β
Coverage gaps detected in real-time
|
|
77
77
|
β
Bugs caught pre-production
|
|
78
78
|
β Agents acting without human oversight on critical decisions
|
|
79
|
-
β Deploying all
|
|
79
|
+
β Deploying all 19 agents at once (start with 1-2)
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## What is This?
|
|
6
6
|
|
|
7
|
-
The CI/CD Pipeline QE Orchestrator is an advanced Claude Code skill that provides intelligent, phase-based quality engineering across your entire software delivery pipeline. It intelligently selects from
|
|
7
|
+
The CI/CD Pipeline QE Orchestrator is an advanced Claude Code skill that provides intelligent, phase-based quality engineering across your entire software delivery pipeline. It intelligently selects from 41 QE skills and coordinates 19 specialized QE agents to ensure holistic quality coverage from commit to production.
|
|
8
8
|
|
|
9
9
|
## Quick Start
|
|
10
10
|
|
|
@@ -85,7 +85,7 @@ Automatically selects optimal skills based on:
|
|
|
85
85
|
|
|
86
86
|
### π€ Agent Coordination
|
|
87
87
|
|
|
88
|
-
Orchestrates
|
|
88
|
+
Orchestrates 19 specialized QE agents:
|
|
89
89
|
- Parallel execution for speed
|
|
90
90
|
- Sequential execution for dependencies
|
|
91
91
|
- Memory-based coordination via `aqe/*` namespace
|
|
@@ -129,9 +129,9 @@ Adapts testing approach based on:
|
|
|
129
129
|
|
|
130
130
|
## Integration with AQE Fleet
|
|
131
131
|
|
|
132
|
-
### All
|
|
132
|
+
### All 41 Skills Available
|
|
133
133
|
|
|
134
|
-
The orchestrator can invoke any of the
|
|
134
|
+
The orchestrator can invoke any of the 41 QE skills:
|
|
135
135
|
|
|
136
136
|
**Phase 1 Skills (18)**:
|
|
137
137
|
- Core Testing: agentic-quality-engineering, context-driven-testing, holistic-testing-pact
|
|
@@ -145,12 +145,15 @@ The orchestrator can invoke any of the 37 QE skills:
|
|
|
145
145
|
- Specialized: accessibility-testing, mobile-testing, database-testing, contract-testing, chaos-engineering-resilience, compatibility-testing, localization-testing, compliance-testing, visual-testing-advanced
|
|
146
146
|
- Infrastructure: test-environment-management, test-reporting-analytics
|
|
147
147
|
|
|
148
|
-
**Phase 3 Skills (
|
|
149
|
-
- Strategic: six-thinking-hats, brutal-honesty-review, cicd-pipeline-qe-orchestrator
|
|
148
|
+
**Phase 3 Skills (4)**:
|
|
149
|
+
- Strategic: six-thinking-hats, brutal-honesty-review, sherlock-review, cicd-pipeline-qe-orchestrator
|
|
150
150
|
|
|
151
|
-
|
|
151
|
+
**Phase 4 Skills (3)**:
|
|
152
|
+
- Advanced: testability-scoring, verification-quality, pair-programming
|
|
152
153
|
|
|
153
|
-
|
|
154
|
+
### All 19 Agents Available
|
|
155
|
+
|
|
156
|
+
The orchestrator coordinates all 19 QE agents:
|
|
154
157
|
|
|
155
158
|
**Core Testing (5)**: test-generator, test-executor, coverage-analyzer, quality-gate, quality-analyzer
|
|
156
159
|
**Performance & Security (2)**: performance-tester, security-scanner
|
|
@@ -277,8 +280,8 @@ See main SKILL.md [Troubleshooting section](SKILL.md#troubleshooting) for:
|
|
|
277
280
|
- [Microservice Pipeline Workflow](resources/workflows/microservice-pipeline.md)
|
|
278
281
|
- [Monolith Pipeline Workflow](resources/workflows/monolith-pipeline.md)
|
|
279
282
|
- [Mobile Pipeline Workflow](resources/workflows/mobile-pipeline.md)
|
|
280
|
-
- [All
|
|
281
|
-
- [All
|
|
283
|
+
- [All 41 QE Skills Reference](https://github.com/proffesor-for-testing/agentic-qe/blob/main/docs/reference/skills.md)
|
|
284
|
+
- [All 19 QE Agents Reference](https://github.com/proffesor-for-testing/agentic-qe/blob/main/docs/reference/agents.md)
|
|
282
285
|
|
|
283
286
|
## Contributing
|
|
284
287
|
|
|
@@ -298,4 +301,4 @@ Part of the Agentic QE Fleet - MIT License
|
|
|
298
301
|
|
|
299
302
|
**Created**: 2025-11-13
|
|
300
303
|
**Version**: 1.0.0
|
|
301
|
-
**Integrations**:
|
|
304
|
+
**Integrations**: 41 QE Skills, 19 QE Agents, All CI/CD platforms
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"agentic-quality-engineering": {
|
|
85
85
|
"id": "agentic-quality-engineering",
|
|
86
86
|
"name": "Agentic Quality Engineering",
|
|
87
|
-
"description": "Core foundational skill for all
|
|
87
|
+
"description": "Core foundational skill for all 19 QE agents with PACT principles (Proactive, Autonomous, Collaborative, Targeted).",
|
|
88
88
|
"category": "qe-core",
|
|
89
89
|
"priority": "critical",
|
|
90
90
|
"file": "agentic-quality-engineering/SKILL.md",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"lastOptimized": "2025-12-02",
|
|
96
96
|
"tags": ["agents", "pact", "core", "foundation", "autonomous-testing"],
|
|
97
97
|
"dependencies": [],
|
|
98
|
-
"agents": ["qe-test-generator", "qe-test-executor", "qe-coverage-analyzer", "qe-quality-gate", "qe-quality-analyzer", "qe-performance-tester", "qe-security-scanner", "qe-requirements-validator", "qe-production-intelligence", "qe-fleet-commander", "qe-deployment-readiness", "qe-regression-risk-analyzer", "qe-test-data-architect", "qe-api-contract-validator", "qe-flaky-test-hunter", "qe-visual-tester", "qe-chaos-engineer", "qe-code-complexity"]
|
|
98
|
+
"agents": ["qe-test-generator", "qe-test-executor", "qe-coverage-analyzer", "qe-quality-gate", "qe-quality-analyzer", "qe-performance-tester", "qe-security-scanner", "qe-requirements-validator", "qe-production-intelligence", "qe-fleet-commander", "qe-deployment-readiness", "qe-regression-risk-analyzer", "qe-test-data-architect", "qe-api-contract-validator", "qe-flaky-test-hunter", "qe-visual-tester", "qe-chaos-engineer", "qe-code-complexity", "qx-partner"]
|
|
99
99
|
},
|
|
100
100
|
"holistic-testing-pact": {
|
|
101
101
|
"id": "holistic-testing-pact",
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,81 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.2.2] - 2025-12-07
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
#### Test Suite Consolidation (Issue #103)
|
|
15
|
+
Major test suite restructuring achieving 60% reduction in test code while maintaining coverage quality.
|
|
16
|
+
|
|
17
|
+
**Metrics:**
|
|
18
|
+
- **Files**: 426 β 197 (-229 files, -53.8%)
|
|
19
|
+
- **Lines**: 208,253 β 82,698 (-125,555 lines, -60.3%)
|
|
20
|
+
- **Large files (>600 lines)**: 149 β 25 (-83.2%)
|
|
21
|
+
- **Skipped tests**: 7 β 0 (-100%)
|
|
22
|
+
|
|
23
|
+
**Categories Deleted:**
|
|
24
|
+
- Phase 1/2/3 milestone tests (superseded by journey tests)
|
|
25
|
+
- MCP handler implementation tests (covered by contract tests)
|
|
26
|
+
- Comprehensive/exhaustive internal tests
|
|
27
|
+
- Duplicate algorithm tests (Q-learning, SARSA, Actor-Critic)
|
|
28
|
+
- Internal utility tests (Logger, migration tools)
|
|
29
|
+
- Mock-based tests with no real integration value
|
|
30
|
+
|
|
31
|
+
**High-Value Tests Preserved:**
|
|
32
|
+
- 7 journey tests (user workflows)
|
|
33
|
+
- CLI tests (user-facing commands)
|
|
34
|
+
- E2E tests (end-to-end workflows)
|
|
35
|
+
- Core infrastructure tests (memory, hooks, privacy)
|
|
36
|
+
- MCP contract tests (API stability)
|
|
37
|
+
- Unique integration tests (neural, multi-agent)
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
#### CI/CD Optimization
|
|
42
|
+
- **`.github/workflows/optimized-ci.yml`**: Parallel job execution for fast feedback
|
|
43
|
+
- Fast tests job (journeys + contracts)
|
|
44
|
+
- Infrastructure tests job (parallel)
|
|
45
|
+
- Coverage analysis on PRs
|
|
46
|
+
- Test dashboard with PR comments
|
|
47
|
+
- **`scripts/test-dashboard.js`**: Metrics visualization showing progress to targets
|
|
48
|
+
- **`scripts/test-ci-optimized.sh`**: Batched test execution script
|
|
49
|
+
- **New test scripts in package.json**:
|
|
50
|
+
- `npm run test:journeys` - Journey tests (user workflows)
|
|
51
|
+
- `npm run test:contracts` - Contract tests (API stability)
|
|
52
|
+
- `npm run test:infrastructure` - Infrastructure tests
|
|
53
|
+
- `npm run test:regression` - Regression tests (fixed bugs)
|
|
54
|
+
- `npm run test:fast` - Fast path (journeys + contracts)
|
|
55
|
+
- `npm run test:ci:optimized` - Full optimized CI suite
|
|
56
|
+
|
|
57
|
+
#### Coverage Thresholds
|
|
58
|
+
- **Global**: 80% lines, 75% branches
|
|
59
|
+
- **Critical paths** (core/, agents/): 85% coverage
|
|
60
|
+
|
|
61
|
+
#### Journey Tests
|
|
62
|
+
- `tests/journeys/init-bootstrap.test.ts` - System initialization
|
|
63
|
+
- `tests/journeys/test-generation.test.ts` - AI test generation
|
|
64
|
+
- `tests/journeys/test-execution.test.ts` - Test execution workflow
|
|
65
|
+
- `tests/journeys/coverage-analysis.test.ts` - Coverage gap detection
|
|
66
|
+
- `tests/journeys/quality-gate.test.ts` - Quality gate decisions
|
|
67
|
+
- `tests/journeys/flaky-detection.test.ts` - Flaky test hunting
|
|
68
|
+
- `tests/journeys/learning.test.ts` - Learning & improvement
|
|
69
|
+
|
|
70
|
+
## [2.2.1] - 2025-12-07
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
|
|
74
|
+
#### Database Persistence Unification (Issue #118)
|
|
75
|
+
- **Unified database to single `memory.db`**: Fixed database fragmentation where data was scattered across 3 files (memory.db, swarm-memory.db, agentdb.db)
|
|
76
|
+
- **Fixed CLI data visibility**: `aqe learn status` and `aqe patterns list` now query actual tables (`learning_experiences`, `patterns`, `q_values`) instead of `memory_entries`
|
|
77
|
+
- **Added `queryRaw()` method**: New public method on SwarmMemoryManager for direct table queries
|
|
78
|
+
- **Deprecated AgentDB**: Marked for removal in v3.0.0 with proper warnings
|
|
79
|
+
|
|
80
|
+
### Changed
|
|
81
|
+
- All persistence now uses `getSharedMemoryManager()` / `initializeSharedMemoryManager()` singleton pattern
|
|
82
|
+
- Removed default `agentdb.db` path creation from agent factory
|
|
83
|
+
- CLI commands (learn, improve, patterns, routing) updated to use shared memory manager
|
|
84
|
+
|
|
10
85
|
## [2.2.0] - 2025-12-06
|
|
11
86
|
|
|
12
87
|
### π§ Self-Learning AQE Fleet Upgrade (Issue #118)
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<img alt="NPM Downloads" src="https://img.shields.io/npm/dw/agentic-qe">
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
**Version 2.2.
|
|
12
|
+
**Version 2.2.2** | [Changelog](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
14
|
> Agentic test automation with AI learning, real-time visualization, QUIC transport, testability scoring, OpenTelemetry observability, persistent event storage, constitutional AI governance, and intelligent model routing.
|
|
15
15
|
|
|
@@ -54,12 +54,12 @@ claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify
|
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
**What gets initialized:**
|
|
57
|
-
- β
|
|
58
|
-
- β
|
|
57
|
+
- β
Real-time dashboards, interactive graphs (v1.9.0)
|
|
58
|
+
- β
OpenTelemetry, Event Store, Constitution System
|
|
59
59
|
- β
Multi-Model Router (70-81% cost savings - opt-in)
|
|
60
60
|
- β
Learning System (20% improvement target)
|
|
61
61
|
- β
Pattern Bank (cross-project reuse)
|
|
62
|
-
- β
ML Flaky Detection (
|
|
62
|
+
- β
ML Flaky Detection (90%+ accuracy with root cause analysis)
|
|
63
63
|
- β
19 Specialized agent definitions (including qe-code-complexity)
|
|
64
64
|
- β
11 TDD subagent definitions (RED/GREEN/REFACTOR phases + specialized)
|
|
65
65
|
- β
41 World-class QE skills library (accessibility, shift-left/right, verification, visual testing, XP practices, **testability-scoring** by [@fndlalit](https://github.com/fndlalit))
|
|
@@ -68,11 +68,24 @@ claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify
|
|
|
68
68
|
|
|
69
69
|
---
|
|
70
70
|
|
|
71
|
+
## π― Why AQE?
|
|
72
|
+
|
|
73
|
+
| Problem | AQE Solution |
|
|
74
|
+
|---------|--------------|
|
|
75
|
+
| **Writing comprehensive tests is tedious and time-consuming** | AI agents generate tests automatically with pattern reuse across projects |
|
|
76
|
+
| **Test suites become slow and expensive at scale** | Sublinear O(log n) algorithms for coverage analysis and intelligent test selection |
|
|
77
|
+
| **Flaky tests waste developer time debugging false failures** | ML-powered detection (90%+ accuracy) with root cause analysis and fix recommendations |
|
|
78
|
+
| **AI testing tools are expensive** | Multi-model routing cuts costs by up to 70-81% by matching task complexity to model |
|
|
79
|
+
| **No memory between test runsβevery analysis starts from scratch** | Self-learning system remembers patterns, strategies, and what works for your codebase |
|
|
80
|
+
| **Tools don't understand your testing frameworks** | Works with Jest, Cypress, Playwright, Vitest, Mocha, Jasmine, AVA |
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
71
84
|
## β¨ Features
|
|
72
85
|
|
|
73
|
-
###
|
|
86
|
+
### Real-Time Visualization (since v1.9.0)
|
|
74
87
|
|
|
75
|
-
**
|
|
88
|
+
**Observability Dashboards**
|
|
76
89
|
|
|
77
90
|
#### π Interactive React Frontend
|
|
78
91
|
- **MindMap Component**: Cytoscape.js-powered graph visualization with 6 layout algorithms
|
|
@@ -129,57 +142,80 @@ cd frontend && npm run dev
|
|
|
129
142
|
open http://localhost:3000
|
|
130
143
|
```
|
|
131
144
|
|
|
132
|
-
**Documentation**: See `PHASE3-COMPLETE.md` for full details
|
|
145
|
+
**Documentation**: See `docs/PHASE3-COMPLETE.md` for full details
|
|
133
146
|
|
|
134
147
|
---
|
|
135
148
|
|
|
136
|
-
### ποΈ Phase 1-2: Foundation & Infrastructure
|
|
137
|
-
|
|
138
|
-
**Enterprise-Grade Observability & Governance**
|
|
139
|
-
|
|
140
|
-
#### π OpenTelemetry Integration
|
|
141
|
-
- **Full OTEL SDK**: 12 OpenTelemetry packages for comprehensive observability
|
|
142
|
-
- **Auto-Instrumentation**: HTTP, file system, and custom metrics
|
|
143
|
-
- **Metrics Export**: gRPC and HTTP exporters for Grafana, Prometheus, Jaeger
|
|
144
|
-
- **Agent Metrics**: Task completion, success rate, error tracking
|
|
145
|
-
- **Quality Metrics**: Coverage %, defect density, test effectiveness
|
|
146
|
-
- **System Metrics**: Memory, CPU, latency, throughput
|
|
147
|
-
|
|
148
|
-
#### πΎ Event Sourcing & Persistence
|
|
149
|
-
- **Event Store**: SQLite-based event sourcing with correlation tracking
|
|
150
|
-
- **Reasoning Capture**: Agent decision tracking and prompt/response analysis
|
|
151
|
-
- **Metrics Aggregation**: Time-window aggregation (hourly, daily, weekly)
|
|
152
|
-
- **Performance Optimization**: Prepared statements, indexes, connection pooling
|
|
153
|
-
- **Query API**: Time-range queries with pagination support
|
|
154
|
-
|
|
155
|
-
#### π Constitutional AI Governance
|
|
156
|
-
- **JSON Schema Validation**: Type-safe constitution definitions
|
|
157
|
-
- **4 Base Constitutions**: Default, test-generation, code-review, performance
|
|
158
|
-
- **Inheritance & Merge**: Constitution composition with override support
|
|
159
|
-
- **Agent-Specific**: Per-agent constitutional rules and guidelines
|
|
160
|
-
- **Validation Pipeline**: Ensure agents follow constitutional principles
|
|
161
|
-
|
|
162
|
-
**Benefits:**
|
|
163
|
-
- π **Full Observability**: Track every agent action, metric, and decision
|
|
164
|
-
- π **Data-Driven**: Historical analysis for continuous improvement
|
|
165
|
-
- π‘οΈ **Governance**: Constitutional AI ensures quality and compliance
|
|
166
|
-
- π **Production Ready**: Enterprise-grade persistence and monitoring
|
|
167
|
-
|
|
168
149
|
### π€ Autonomous Agent Fleet
|
|
169
|
-
- **
|
|
150
|
+
- **19 Specialized Agents**: Expert agents for every QE domain (test generation, coverage analysis, security scanning, performance testing, code complexity analysis, QX analysis)
|
|
170
151
|
- **11 TDD Subagents**: Specialized subagents for Test-Driven Development workflow (RED/GREEN/REFACTOR phases + quality validation + analysis)
|
|
171
152
|
- **AI-Powered Coordination**: Event-driven architecture with intelligent task distribution
|
|
172
153
|
- **Zero External Dependencies**: Native AQE hooks system (100-500x faster than external coordination)
|
|
173
154
|
- **Scalable**: From single developer projects to enterprise-scale testing infrastructure
|
|
174
155
|
|
|
175
|
-
### π§ Intelligence & Learning
|
|
156
|
+
### π§ Intelligence & Learning
|
|
176
157
|
- **QE Agent Learning System**: Q-Learning integrated with AgentDB's 9 RL algorithms, 20% improvement target with automatic strategy optimization
|
|
177
158
|
- **Pattern Bank**: 85%+ matching accuracy across 6 test frameworks (Jest, Mocha, Cypress, Vitest, Jasmine, AVA)
|
|
178
|
-
- **ML Flaky Detection**:
|
|
159
|
+
- **ML Flaky Detection**: 90%+ accuracy with root cause analysis and automated fix recommendations
|
|
179
160
|
- **Continuous Improvement**: A/B testing framework with 95%+ statistical confidence
|
|
180
161
|
- **Experience Replay**: Learn from 10,000+ past executions
|
|
181
162
|
|
|
182
|
-
###
|
|
163
|
+
### π§ Self-Learning System (from v2.2.0)
|
|
164
|
+
|
|
165
|
+
AQE agents learn from every interaction and improve over time. Unlike traditional tools that start from scratch each run, the Self-Learning System builds institutional knowledge for your codebase.
|
|
166
|
+
|
|
167
|
+
**How It Works:**
|
|
168
|
+
|
|
169
|
+
```
|
|
170
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
171
|
+
β Self-Learning Pipeline β
|
|
172
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
173
|
+
β β
|
|
174
|
+
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
|
|
175
|
+
β β Agent βββββΆβ Execute βββββΆβ Evaluate βββββΆβ Learn β β
|
|
176
|
+
β β Action β β Task β β Result β β & Store β β
|
|
177
|
+
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
|
|
178
|
+
β β β β
|
|
179
|
+
β β βββββββββββββββββββββββββββββββ β β
|
|
180
|
+
β ββββββββββΆβ Pattern Bank (AgentDB) βββββββββ β
|
|
181
|
+
β β β’ Successful strategies β β
|
|
182
|
+
β β β’ Framework patterns β β
|
|
183
|
+
β β β’ Q-values per action β β
|
|
184
|
+
β βββββββββββββββββββββββββββββββ β
|
|
185
|
+
β β
|
|
186
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
**Reinforcement Learning Algorithms:**
|
|
190
|
+
- **Q-Learning**: Default algorithm - learns optimal action-value functions
|
|
191
|
+
- **SARSA**: On-policy learning for safer exploration
|
|
192
|
+
- **Actor-Critic (A2C)**: Combines value and policy learning
|
|
193
|
+
- **PPO**: Advanced policy optimization for complex scenarios
|
|
194
|
+
|
|
195
|
+
**What Gets Learned:**
|
|
196
|
+
- Which test patterns work best for your framework (Jest, Cypress, etc.)
|
|
197
|
+
- Optimal strategies for your codebase structure
|
|
198
|
+
- Common failure patterns and how to prevent them
|
|
199
|
+
- Cost-effective model routing decisions
|
|
200
|
+
|
|
201
|
+
**CLI Commands:**
|
|
202
|
+
```bash
|
|
203
|
+
# Check learning status for an agent
|
|
204
|
+
aqe learn status --agent qe-test-generator
|
|
205
|
+
|
|
206
|
+
# List learned patterns for a framework
|
|
207
|
+
aqe patterns list --framework jest
|
|
208
|
+
|
|
209
|
+
# View algorithm performance
|
|
210
|
+
aqe learn metrics --algorithm q-learning
|
|
211
|
+
|
|
212
|
+
# Switch learning algorithm
|
|
213
|
+
aqe learn set-algorithm --agent qe-test-generator --algorithm sarsa
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
**Persistence:** All learning is stored in AgentDB (SQLite-based) and persists across sessions. Your agents get smarter with every run.
|
|
217
|
+
|
|
218
|
+
### π° Cost Optimization
|
|
183
219
|
- **Multi-Model Router**: 70-81% cost savings through intelligent model selection (opt-in feature)
|
|
184
220
|
- **4+ AI Models**: GPT-3.5, GPT-4, Claude Haiku, Claude Sonnet 4.5
|
|
185
221
|
- **Smart Routing**: Automatic complexity analysis and optimal model selection
|
|
@@ -193,7 +229,7 @@ open http://localhost:3000
|
|
|
193
229
|
- **Performance Testing**: k6, JMeter, Gatling integration
|
|
194
230
|
- **Real-Time Streaming**: Live progress updates for all operations
|
|
195
231
|
|
|
196
|
-
### π 41 QE Skills Library
|
|
232
|
+
### π 41 QE Skills Library
|
|
197
233
|
**95%+ coverage of modern QE practices**
|
|
198
234
|
|
|
199
235
|
<details>
|
|
@@ -293,7 +329,7 @@ claude "Run the full AQE quality pipeline:
|
|
|
293
329
|
2. qe-test-generator - generate comprehensive test suite
|
|
294
330
|
3. qe-test-executor - run tests with parallel execution
|
|
295
331
|
4. qe-coverage-analyzer - analyze gaps using O(log n) algorithms
|
|
296
|
-
5. qe-flaky-test-hunter - detect flaky tests with
|
|
332
|
+
5. qe-flaky-test-hunter - detect flaky tests with ML-powered analysis
|
|
297
333
|
6. qe-security-scanner - run SAST/DAST scans
|
|
298
334
|
7. qe-performance-tester - load test critical paths
|
|
299
335
|
8. qe-quality-gate - validate all quality criteria met
|
|
@@ -361,7 +397,7 @@ mcp__agentic_qe__coverage_analyze({
|
|
|
361
397
|
- Coverage Analysis (4 tools): analyze with risk scoring, detect gaps ML, trends, recommendations
|
|
362
398
|
- Quality Gates (3 tools): execute, validate metrics, generate report
|
|
363
399
|
- Flaky Test Detection (2 tools): detect statistical, analyze patterns
|
|
364
|
-
- Performance Testing (3 tools): benchmark, analyze bottlenecks, generate report
|
|
400
|
+
- Performance Testing (3 tools): benchmark, analyze bottlenecks, generate a report
|
|
365
401
|
- Security Scanning (2 tools): comprehensive scan, detect vulnerabilities
|
|
366
402
|
- Visual Testing (3 tools): compare screenshots, accessibility validation, regression detection
|
|
367
403
|
- API Contract Testing (3 tools): validate, breaking changes, versioning
|
|
@@ -373,7 +409,7 @@ mcp__agentic_qe__coverage_analyze({
|
|
|
373
409
|
- Workflow Management (4 tools): create, execute, checkpoint, resume
|
|
374
410
|
- Event System (2 tools): emit, subscribe
|
|
375
411
|
- Regression Analysis (2 tools): analyze risk, select tests
|
|
376
|
-
- Production Monitoring (2 tools): incident replay, RUM
|
|
412
|
+
- Production Monitoring (2 tools): incident replay, RUM analysis
|
|
377
413
|
- Mutation Testing (1 tool): execute
|
|
378
414
|
- Deployment Readiness (1 tool): check
|
|
379
415
|
- Artifact Management (1 tool): manifest
|
|
@@ -538,7 +574,7 @@ Model Usage:
|
|
|
538
574
|
| **regression-risk-analyzer** | Smart test selection | ML patterns, AST analysis | β
Pattern matching |
|
|
539
575
|
| **test-data-architect** | Realistic data generation | 10k+ records/sec, GDPR compliant | - |
|
|
540
576
|
| **api-contract-validator** | Breaking change detection | OpenAPI, GraphQL, gRPC | - |
|
|
541
|
-
| **flaky-test-hunter** | Stability analysis | Statistical detection, auto-fix | β
|
|
577
|
+
| **flaky-test-hunter** | Stability analysis | Statistical detection, auto-fix | β
90%+ accuracy ML detection |
|
|
542
578
|
|
|
543
579
|
</details>
|
|
544
580
|
|
|
@@ -562,7 +598,7 @@ Model Usage:
|
|
|
562
598
|
|
|
563
599
|
</details>
|
|
564
600
|
|
|
565
|
-
**Total:
|
|
601
|
+
**Total: 30 Agents** (19 main agents + 11 TDD subagents)
|
|
566
602
|
|
|
567
603
|
### TDD Subagents (11 specialized)
|
|
568
604
|
|
|
@@ -648,143 +684,17 @@ The test generator automatically delegates to subagents for a complete RED-GREEN
|
|
|
648
684
|
|
|
649
685
|
---
|
|
650
686
|
|
|
651
|
-
## π Performance
|
|
687
|
+
## π Performance
|
|
652
688
|
|
|
653
|
-
|
|
654
|
-
|---------|--------|--------|--------|
|
|
655
|
-
| **Pattern Matching (p95)** | <50ms | 32ms | β
Exceeded |
|
|
656
|
-
| **Learning Iteration** | <100ms | 68ms | β
Exceeded |
|
|
657
|
-
| **ML Flaky Detection (1000 tests)** | <500ms | 385ms | β
Exceeded |
|
|
658
|
-
| **Agent Memory** | <100MB | 85MB | β
Exceeded |
|
|
659
|
-
| **Cost Savings** | 70%+ | 70-81% | β
Achieved |
|
|
660
|
-
| **Test Improvement** | 20%+ | 23%+ | β
Exceeded |
|
|
661
|
-
| **Flaky Detection Accuracy** | 90%+ | 100% | β
Exceeded |
|
|
662
|
-
| **False Positive Rate** | <5% | 0% | β
Exceeded |
|
|
689
|
+
For detailed performance benchmarks and metrics, see [docs/PERFORMANCE.md](docs/PERFORMANCE.md).
|
|
663
690
|
|
|
664
691
|
### Core Performance
|
|
665
|
-
- **Test Generation**:
|
|
666
|
-
- **Parallel Execution**:
|
|
667
|
-
- **Coverage Analysis**: O(log n)
|
|
668
|
-
- **Data Generation**: 10,000+ records/second
|
|
692
|
+
- **Test Generation**: Pattern-based with cross-project reuse
|
|
693
|
+
- **Parallel Execution**: Multi-framework concurrent tests
|
|
694
|
+
- **Coverage Analysis**: O(log n) sublinear algorithms
|
|
695
|
+
- **Data Generation**: 10,000+ records/second with GDPR compliance
|
|
669
696
|
- **Agent Spawning**: <100ms per agent
|
|
670
|
-
- **
|
|
671
|
-
|
|
672
|
-
---
|
|
673
|
-
|
|
674
|
-
## π What's New in v2.1.0
|
|
675
|
-
|
|
676
|
-
π **Comprehensive QX Analysis & Skills Optimization** (2025-12-03)
|
|
677
|
-
|
|
678
|
-
This release delivers comprehensive QX (Quality Experience) analysis improvements, optimized skills format, and enhanced agent coordination.
|
|
679
|
-
|
|
680
|
-
### Key Features
|
|
681
|
-
|
|
682
|
-
- **Comprehensive QX Analysis** (PR #104 by @fndlalit): 23+ heuristics with detailed findings, domain-specific failure detection (e-commerce, SaaS, content/blog, forms), contextual page content extraction
|
|
683
|
-
- **38 QE Skills Optimized** (PR #102): Agent-focused format with `<default_to_action>` blocks, quick reference cards, 40-60% token reduction
|
|
684
|
-
- **Testability Scoring v2.1**: Optimized skill format, Fleet coordination hints, improved memory namespace organization
|
|
685
|
-
- **QX Partner Agent v2.1**: Enhanced capabilities for Rule of Three analysis, domain-specific detection, comprehensive report formatting
|
|
686
|
-
|
|
687
|
-
### Skills Optimization
|
|
688
|
-
|
|
689
|
-
All 38 QE skills now feature:
|
|
690
|
-
- Optimized frontmatter with `tokenEstimate`, `agents`, `implementation_status`, `optimization_version`
|
|
691
|
-
- `<default_to_action>` blocks for immediate actionable guidance
|
|
692
|
-
- Quick reference cards with tables and command examples
|
|
693
|
-
- Fleet coordination and memory namespace hints
|
|
694
|
-
|
|
695
|
-
### QX Analysis Improvements
|
|
696
|
-
|
|
697
|
-
- **23+ Heuristics**: Detailed findings, issues, and recommendations per heuristic
|
|
698
|
-
- **Domain Detection**: Automatic failure mode detection by site type
|
|
699
|
-
- **Contextual Extraction**: Real page content analysis (headings, navigation, buttons, forms, links)
|
|
700
|
-
- **Rule of Three**: Problem complexity assessment ensuring minimum 3 failure modes identified
|
|
701
|
-
|
|
702
|
-
**Upgrade**: `npm install agentic-qe@2.1.0`
|
|
703
|
-
|
|
704
|
-
---
|
|
705
|
-
|
|
706
|
-
## π What's New in v1.9.3
|
|
707
|
-
|
|
708
|
-
π¦ **NPM Package Fix** (2025-11-26)
|
|
709
|
-
|
|
710
|
-
This release fixes missing files in the npm package distribution that caused `aqe init` to fail.
|
|
711
|
-
|
|
712
|
-
### Key Fixes
|
|
713
|
-
|
|
714
|
-
- **Added missing `templates/` directory**: Includes `aqe.sh` wrapper script
|
|
715
|
-
- **Added missing `.claude/helpers/` directory**: Includes 6 helper scripts (checkpoint-manager.sh, github-safe.js, etc.)
|
|
716
|
-
- **Added missing `docs/reference/` directory**: Includes reference documentation (agents.md, skills.md, usage.md)
|
|
717
|
-
|
|
718
|
-
**Upgrade**: `npm install agentic-qe@1.9.3`
|
|
719
|
-
|
|
720
|
-
---
|
|
721
|
-
|
|
722
|
-
## π What's New in v1.9.2
|
|
723
|
-
|
|
724
|
-
π **Learning Persistence Fix** (2025-11-26)
|
|
725
|
-
|
|
726
|
-
This release fixes critical learning persistence issues (Issue #79) where learning data was not being saved to SQLite.
|
|
727
|
-
|
|
728
|
-
### Key Fixes
|
|
729
|
-
|
|
730
|
-
- **Database schema fixes**: Added missing columns to patterns, q_values, and learning_experiences tables
|
|
731
|
-
- **Memory persistence**: MemoryStoreHandler now actually persists to SQLite when `persist: true`
|
|
732
|
-
- **Database migrations**: Automatic migrations for existing databases
|
|
733
|
-
|
|
734
|
-
**Upgrade**: `npm install agentic-qe@1.9.2`
|
|
735
|
-
|
|
736
|
-
---
|
|
737
|
-
|
|
738
|
-
## π What's New in v1.8.3
|
|
739
|
-
|
|
740
|
-
π **Phase 4: TDD Subagent Coordination** (2025-01-19)
|
|
741
|
-
|
|
742
|
-
This release implements comprehensive TDD subagent coordination, solving the disconnected tests/code/refactor issue where RED-GREEN-REFACTOR cycle agents were producing inconsistent outputs.
|
|
743
|
-
|
|
744
|
-
### Key Improvements
|
|
745
|
-
|
|
746
|
-
- **TDD Coordination Protocol** - Memory-based coordination for consistent TDD cycles
|
|
747
|
-
- β
Cycle-based memory namespace (`aqe/tdd/cycle-{cycleId}/*`)
|
|
748
|
-
- β
File hash validation ensures test file integrity across phases
|
|
749
|
-
- β
Handoff gates prevent premature phase transitions
|
|
750
|
-
- β
Phase output interfaces for typed contracts
|
|
751
|
-
|
|
752
|
-
- **Runtime Enforcement** - TDDPhaseValidator class validates memory state
|
|
753
|
-
- β
Validates memory keys exist before phase transitions
|
|
754
|
-
- β
Enforces output schema compliance
|
|
755
|
-
- β
Checks file hash integrity across REDβGREENβREFACTOR
|
|
756
|
-
- β
Coverage comparison warnings
|
|
757
|
-
|
|
758
|
-
- **New Subagents (3)** - Specialized quality engineering agents
|
|
759
|
-
- β
`qe-flaky-investigator` - Detects flaky tests, analyzes root causes
|
|
760
|
-
- β
`qe-coverage-gap-analyzer` - Identifies coverage gaps, risk-scores untested code
|
|
761
|
-
- β
`qe-test-data-architect-sub` - High-volume test data generation
|
|
762
|
-
|
|
763
|
-
### Updated Subagents (8)
|
|
764
|
-
All existing subagents now include coordination protocol:
|
|
765
|
-
- `qe-test-writer`, `qe-test-implementer`, `qe-test-refactorer` (TDD phases)
|
|
766
|
-
- `qe-code-reviewer`, `qe-integration-tester`, `qe-performance-validator`
|
|
767
|
-
- `qe-security-auditor`, `qe-data-generator`
|
|
768
|
-
|
|
769
|
-
### Testing
|
|
770
|
-
- 22 integration tests for TDD coordination
|
|
771
|
-
- All tests passing
|
|
772
|
-
|
|
773
|
-
### Documentation
|
|
774
|
-
- Coordination guide at `docs/subagents/coordination-guide.md`
|
|
775
|
-
|
|
776
|
-
### Impact
|
|
777
|
-
β
**Build Status**: Passing (0 errors)
|
|
778
|
-
β
**TDD Coordination**: Fully operational
|
|
779
|
-
β
**Subagents**: 11 total (3 new, 8 updated)
|
|
780
|
-
β
**Integration Tests**: 22 passing
|
|
781
|
-
β **Breaking Changes**: None
|
|
782
|
-
|
|
783
|
-
**Upgrade**: `npm install agentic-qe@1.8.3`
|
|
784
|
-
|
|
785
|
-
**Previous Releases**: See [CHANGELOG.md](CHANGELOG.md) for complete version history.
|
|
786
|
-
|
|
787
|
-
[π View Full Changelog](CHANGELOG.md) | [π Report Issues](https://github.com/proffesor-for-testing/agentic-qe/issues)
|
|
697
|
+
- **Flaky Detection**: 90%+ accuracy with ML-powered root cause analysis
|
|
788
698
|
|
|
789
699
|
---
|
|
790
700
|
|
|
@@ -881,38 +791,6 @@ We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for deta
|
|
|
881
791
|
|
|
882
792
|
---
|
|
883
793
|
|
|
884
|
-
## πΊοΈ Roadmap
|
|
885
|
-
|
|
886
|
-
### Current (v1.5)
|
|
887
|
-
- β
Learning System with Q-learning
|
|
888
|
-
- β
Pattern Bank with cross-project sharing
|
|
889
|
-
- β
ML Flaky Detection (100% accuracy)
|
|
890
|
-
- β
Continuous Improvement Loop
|
|
891
|
-
- β
18 specialized agents + 11 TDD subagents
|
|
892
|
-
- β
Complete TDD workflow automation (RED/GREEN/REFACTOR/REVIEW)
|
|
893
|
-
- β
Multi-framework test execution
|
|
894
|
-
- β
Real-time coverage analysis
|
|
895
|
-
- β
MCP integration
|
|
896
|
-
- β
Multi-model router (70-81% cost savings)
|
|
897
|
-
- β
40 QE skills library
|
|
898
|
-
- β
Modular init system for streamlined project setup
|
|
899
|
-
|
|
900
|
-
### Planned (v1.4)
|
|
901
|
-
- π Web dashboard for visualization
|
|
902
|
-
- π GraphQL API
|
|
903
|
-
- π CI/CD integrations (GitHub Actions, GitLab CI)
|
|
904
|
-
- π Enhanced pattern adaptation across frameworks
|
|
905
|
-
- π Real-time collaboration features
|
|
906
|
-
|
|
907
|
-
### Future (v2.0)
|
|
908
|
-
- π Natural language test generation
|
|
909
|
-
- π Self-healing test suites
|
|
910
|
-
- π Multi-language support (Python, Java, Go)
|
|
911
|
-
- π Advanced analytics and insights
|
|
912
|
-
- π Cloud deployment support
|
|
913
|
-
|
|
914
|
-
---
|
|
915
|
-
|
|
916
794
|
## π License
|
|
917
795
|
|
|
918
796
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -144,7 +144,11 @@ export declare abstract class BaseAgent extends EventEmitter {
|
|
|
144
144
|
} | null>;
|
|
145
145
|
/**
|
|
146
146
|
* Initialize AgentDB integration for distributed coordination
|
|
147
|
-
*
|
|
147
|
+
*
|
|
148
|
+
* @deprecated v2.2.0 - AgentDB is deprecated. All persistence now goes through
|
|
149
|
+
* SwarmMemoryManager to the unified .agentic-qe/memory.db database.
|
|
150
|
+
* Use memoryStore methods instead. This method will be removed in v3.0.0.
|
|
151
|
+
*
|
|
148
152
|
* @param config AgentDB configuration
|
|
149
153
|
*/
|
|
150
154
|
initializeAgentDB(config: Partial<AgentDBConfig>): Promise<void>;
|