agentic-qe 3.8.9 → 3.8.10
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/skills-manifest.json +1 -1
- package/CHANGELOG.md +11 -0
- package/dist/cli/bundle.js +383 -383
- package/dist/coordination/protocols/defect-investigation.js +3 -3
- package/dist/domains/coverage-analysis/services/coverage-analyzer.d.ts +6 -0
- package/dist/domains/coverage-analysis/services/coverage-analyzer.js +35 -1
- package/dist/domains/defect-intelligence/services/defect-predictor.js +16 -6
- package/dist/domains/quality-assessment/coordinator.js +8 -1
- package/dist/domains/quality-assessment/plugin.js +8 -5
- package/dist/domains/quality-assessment/services/quality-analyzer.d.ts +0 -1
- package/dist/domains/quality-assessment/services/quality-analyzer.js +30 -17
- package/dist/domains/test-execution/interfaces.d.ts +11 -0
- package/dist/domains/test-execution/services/test-executor.d.ts +25 -0
- package/dist/domains/test-execution/services/test-executor.js +236 -13
- package/dist/mcp/bundle.js +200 -200
- package/dist/workers/workers/coverage-tracker.js +25 -30
- package/package.json +1 -1
|
@@ -64,41 +64,36 @@ export class CoverageTrackerWorker extends BaseWorker {
|
|
|
64
64
|
}
|
|
65
65
|
async collectCoverageTrend(context) {
|
|
66
66
|
const previous = await context.memory.get('coverage:current');
|
|
67
|
-
//
|
|
67
|
+
// Read real coverage data from coverage:latest (written by coverage-analyzer
|
|
68
|
+
// and test-executor). Fall back to zeros when no data is available.
|
|
69
|
+
const latest = await context.memory.get('coverage:latest');
|
|
68
70
|
const current = {
|
|
69
|
-
line:
|
|
70
|
-
branch:
|
|
71
|
-
function:
|
|
72
|
-
statement:
|
|
71
|
+
line: latest?.line ?? 0,
|
|
72
|
+
branch: latest?.branch ?? 0,
|
|
73
|
+
function: latest?.function ?? 0,
|
|
74
|
+
statement: latest?.statement ?? 0,
|
|
73
75
|
timestamp: new Date(),
|
|
74
76
|
};
|
|
75
77
|
return { current, previous };
|
|
76
78
|
}
|
|
77
|
-
async identifyCoverageGaps(
|
|
78
|
-
//
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
riskScore
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
file: 'src/domains/security-compliance/services/security-scanner.ts',
|
|
96
|
-
uncoveredLines: 200,
|
|
97
|
-
totalLines: 500,
|
|
98
|
-
complexity: 32,
|
|
99
|
-
riskScore: 0.92,
|
|
100
|
-
},
|
|
101
|
-
];
|
|
79
|
+
async identifyCoverageGaps(context) {
|
|
80
|
+
// Search for gap patterns stored by the gap-detector service
|
|
81
|
+
// (written via storeVector with key prefix 'gap-pattern:')
|
|
82
|
+
const gapKeys = await context.memory.search('gap-pattern:*');
|
|
83
|
+
if (gapKeys.length > 0) {
|
|
84
|
+
const gaps = [];
|
|
85
|
+
for (const key of gapKeys) {
|
|
86
|
+
const gap = await context.memory.get(key);
|
|
87
|
+
if (gap && typeof gap.riskScore === 'number') {
|
|
88
|
+
gaps.push(gap);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
if (gaps.length > 0) {
|
|
92
|
+
return gaps;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
// No gap data available from coverage analysis yet
|
|
96
|
+
return [];
|
|
102
97
|
}
|
|
103
98
|
analyzeCoverageThresholds(coverage, findings, recommendations) {
|
|
104
99
|
const thresholds = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.10",
|
|
4
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
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|