agentic-qe 3.6.9 → 3.6.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/.validation/schemas/skill-eval.schema.json +11 -1
- package/.claude/skills/pr-review/SKILL.md +2 -2
- package/.claude/skills/qcsd-production-swarm/SKILL.md +2781 -0
- package/.claude/skills/qcsd-production-swarm/evals/qcsd-production-swarm.yaml +246 -0
- package/.claude/skills/qcsd-production-swarm/schemas/output.json +505 -0
- package/.claude/skills/qcsd-production-swarm/scripts/validate-config.json +25 -0
- package/.claude/skills/skills-manifest.json +5 -5
- package/package.json +1 -1
- package/scripts/benchmark-hnsw-loading.ts +480 -0
- package/scripts/benchmark-kg-assisted.ts +725 -0
- package/scripts/collect-production-telemetry.sh +291 -0
- package/scripts/detect-skill-conflicts.ts +347 -0
- package/scripts/eval-driven-workflow.ts +704 -0
- package/scripts/run-skill-eval.ts +210 -10
- package/scripts/score-skill-quality.ts +511 -0
- package/v3/CHANGELOG.md +19 -0
- package/v3/assets/skills/pr-review/SKILL.md +2 -2
- package/v3/dist/cli/bundle.js +1064 -363
- package/v3/dist/cli/commands/hooks.d.ts.map +1 -1
- package/v3/dist/cli/commands/hooks.js +143 -2
- package/v3/dist/cli/commands/hooks.js.map +1 -1
- package/v3/dist/cli/commands/test.d.ts.map +1 -1
- package/v3/dist/cli/commands/test.js +6 -0
- package/v3/dist/cli/commands/test.js.map +1 -1
- package/v3/dist/domains/test-generation/generators/jest-vitest-generator.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/generators/jest-vitest-generator.js +58 -6
- package/v3/dist/domains/test-generation/generators/jest-vitest-generator.js.map +1 -1
- package/v3/dist/domains/test-generation/generators/mocha-generator.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/generators/mocha-generator.js +79 -7
- package/v3/dist/domains/test-generation/generators/mocha-generator.js.map +1 -1
- package/v3/dist/domains/test-generation/generators/pytest-generator.d.ts +4 -0
- package/v3/dist/domains/test-generation/generators/pytest-generator.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/generators/pytest-generator.js +77 -10
- package/v3/dist/domains/test-generation/generators/pytest-generator.js.map +1 -1
- package/v3/dist/domains/test-generation/interfaces/test-generator.interface.d.ts +21 -0
- package/v3/dist/domains/test-generation/interfaces/test-generator.interface.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/interfaces.d.ts +21 -0
- package/v3/dist/domains/test-generation/interfaces.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/services/test-generator.d.ts +22 -0
- package/v3/dist/domains/test-generation/services/test-generator.d.ts.map +1 -1
- package/v3/dist/domains/test-generation/services/test-generator.js +163 -3
- package/v3/dist/domains/test-generation/services/test-generator.js.map +1 -1
- package/v3/dist/kernel/unified-memory-hnsw.d.ts +29 -0
- package/v3/dist/kernel/unified-memory-hnsw.d.ts.map +1 -1
- package/v3/dist/kernel/unified-memory-hnsw.js +136 -0
- package/v3/dist/kernel/unified-memory-hnsw.js.map +1 -1
- package/v3/dist/kernel/unified-memory.d.ts +2 -2
- package/v3/dist/kernel/unified-memory.d.ts.map +1 -1
- package/v3/dist/kernel/unified-memory.js +7 -9
- package/v3/dist/kernel/unified-memory.js.map +1 -1
- package/v3/dist/learning/qe-hooks.d.ts.map +1 -1
- package/v3/dist/learning/qe-hooks.js +34 -3
- package/v3/dist/learning/qe-hooks.js.map +1 -1
- package/v3/dist/mcp/bundle.js +857 -329
- package/v3/package.json +1 -1
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://agentic-qe.dev/schemas/qcsd-production-swarm-output.json",
|
|
4
|
+
"title": "QCSD Production Swarm Output Schema",
|
|
5
|
+
"description": "Schema for QCSD production telemetry swarm output. Includes DORA metrics, root cause analysis, defect prediction, feedback loop synthesis, and multi-agent reports.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"required": ["skillName", "version", "timestamp", "status", "trustTier", "output"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"skillName": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"const": "qcsd-production-swarm",
|
|
12
|
+
"description": "Must be 'qcsd-production-swarm'"
|
|
13
|
+
},
|
|
14
|
+
"version": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"pattern": "^\\d+\\.\\d+\\.\\d+(-[a-zA-Z0-9]+)?$"
|
|
17
|
+
},
|
|
18
|
+
"timestamp": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"format": "date-time"
|
|
21
|
+
},
|
|
22
|
+
"status": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"enum": ["success", "partial", "failed", "skipped"]
|
|
25
|
+
},
|
|
26
|
+
"trustTier": {
|
|
27
|
+
"type": "integer",
|
|
28
|
+
"const": 3
|
|
29
|
+
},
|
|
30
|
+
"output": {
|
|
31
|
+
"type": "object",
|
|
32
|
+
"required": ["summary", "doraMetrics", "rootCauseAnalysis", "defectPrediction", "feedbackLoops"],
|
|
33
|
+
"properties": {
|
|
34
|
+
"summary": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"minLength": 100,
|
|
37
|
+
"maxLength": 3000
|
|
38
|
+
},
|
|
39
|
+
"recommendation": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"enum": ["HEALTHY", "DEGRADED", "CRITICAL"],
|
|
42
|
+
"description": "Overall production health recommendation"
|
|
43
|
+
},
|
|
44
|
+
"doraMetrics": {
|
|
45
|
+
"$ref": "#/$defs/doraAnalysis"
|
|
46
|
+
},
|
|
47
|
+
"rootCauseAnalysis": {
|
|
48
|
+
"$ref": "#/$defs/rcaCollection"
|
|
49
|
+
},
|
|
50
|
+
"defectPrediction": {
|
|
51
|
+
"$ref": "#/$defs/defectPredictionResult"
|
|
52
|
+
},
|
|
53
|
+
"feedbackLoops": {
|
|
54
|
+
"$ref": "#/$defs/feedbackLoopCollection"
|
|
55
|
+
},
|
|
56
|
+
"agentReports": {
|
|
57
|
+
"$ref": "#/$defs/agentReports"
|
|
58
|
+
},
|
|
59
|
+
"flagDetection": {
|
|
60
|
+
"$ref": "#/$defs/flagDetection"
|
|
61
|
+
},
|
|
62
|
+
"conditionalAnalysis": {
|
|
63
|
+
"$ref": "#/$defs/conditionalAnalysis"
|
|
64
|
+
},
|
|
65
|
+
"executiveSummary": {
|
|
66
|
+
"$ref": "#/$defs/executiveSummary"
|
|
67
|
+
},
|
|
68
|
+
"artifacts": {
|
|
69
|
+
"type": "array",
|
|
70
|
+
"items": {
|
|
71
|
+
"$ref": "#/$defs/artifact"
|
|
72
|
+
},
|
|
73
|
+
"maxItems": 20
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"metadata": {
|
|
78
|
+
"$ref": "#/$defs/metadata"
|
|
79
|
+
},
|
|
80
|
+
"validation": {
|
|
81
|
+
"$ref": "#/$defs/validationResult"
|
|
82
|
+
},
|
|
83
|
+
"learning": {
|
|
84
|
+
"$ref": "#/$defs/learningData"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"$defs": {
|
|
88
|
+
"doraAnalysis": {
|
|
89
|
+
"type": "object",
|
|
90
|
+
"required": ["metrics"],
|
|
91
|
+
"properties": {
|
|
92
|
+
"metrics": {
|
|
93
|
+
"type": "object",
|
|
94
|
+
"required": ["deploymentFrequency", "leadTime", "mttr", "changeFailureRate"],
|
|
95
|
+
"properties": {
|
|
96
|
+
"deploymentFrequency": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"properties": {
|
|
99
|
+
"value": { "type": "number", "minimum": 0 },
|
|
100
|
+
"unit": { "type": "string", "enum": ["per_day", "per_week", "per_month"] },
|
|
101
|
+
"trend": { "type": "string", "enum": ["improving", "stable", "declining"] }
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"leadTime": {
|
|
105
|
+
"type": "object",
|
|
106
|
+
"properties": {
|
|
107
|
+
"value": { "type": "number", "minimum": 0 },
|
|
108
|
+
"unit": { "type": "string", "enum": ["hours", "days", "weeks"] },
|
|
109
|
+
"trend": { "type": "string", "enum": ["improving", "stable", "declining"] }
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"mttr": {
|
|
113
|
+
"type": "object",
|
|
114
|
+
"properties": {
|
|
115
|
+
"value": { "type": "number", "minimum": 0 },
|
|
116
|
+
"unit": { "type": "string", "enum": ["minutes", "hours", "days"] },
|
|
117
|
+
"trend": { "type": "string", "enum": ["improving", "stable", "declining"] }
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"changeFailureRate": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"properties": {
|
|
123
|
+
"value": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
124
|
+
"trend": { "type": "string", "enum": ["improving", "stable", "declining"] }
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"compositeScore": {
|
|
130
|
+
"type": "number",
|
|
131
|
+
"minimum": 0,
|
|
132
|
+
"maximum": 1,
|
|
133
|
+
"description": "Normalized DORA composite score (0-1)"
|
|
134
|
+
},
|
|
135
|
+
"slaCompliance": {
|
|
136
|
+
"type": "number",
|
|
137
|
+
"minimum": 0,
|
|
138
|
+
"maximum": 100,
|
|
139
|
+
"description": "SLA compliance percentage"
|
|
140
|
+
},
|
|
141
|
+
"classification": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"enum": ["elite", "high", "medium", "low"],
|
|
144
|
+
"description": "DORA performance classification"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"rcaCollection": {
|
|
149
|
+
"type": "object",
|
|
150
|
+
"required": ["incidents"],
|
|
151
|
+
"properties": {
|
|
152
|
+
"totalIncidents": {
|
|
153
|
+
"type": "integer",
|
|
154
|
+
"minimum": 0
|
|
155
|
+
},
|
|
156
|
+
"incidents": {
|
|
157
|
+
"type": "array",
|
|
158
|
+
"items": {
|
|
159
|
+
"$ref": "#/$defs/rcaIncident"
|
|
160
|
+
},
|
|
161
|
+
"maxItems": 50
|
|
162
|
+
},
|
|
163
|
+
"maxOpenSeverity": {
|
|
164
|
+
"type": "string",
|
|
165
|
+
"enum": ["P0", "P1", "P2", "P3", "P4", "NONE"]
|
|
166
|
+
},
|
|
167
|
+
"rcaCompleteness": {
|
|
168
|
+
"type": "number",
|
|
169
|
+
"minimum": 0,
|
|
170
|
+
"maximum": 100,
|
|
171
|
+
"description": "Percentage of incidents with completed RCA"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"rcaIncident": {
|
|
176
|
+
"type": "object",
|
|
177
|
+
"required": ["id", "severity", "status"],
|
|
178
|
+
"properties": {
|
|
179
|
+
"id": { "type": "string" },
|
|
180
|
+
"title": { "type": "string" },
|
|
181
|
+
"severity": { "type": "string", "enum": ["P0", "P1", "P2", "P3", "P4"] },
|
|
182
|
+
"status": { "type": "string", "enum": ["open", "investigating", "resolved", "closed"] },
|
|
183
|
+
"rootCause": { "type": "string" },
|
|
184
|
+
"resolution": { "type": "string" },
|
|
185
|
+
"preventionStrategy": { "type": "string" },
|
|
186
|
+
"timeToDetect": { "type": "string" },
|
|
187
|
+
"timeToResolve": { "type": "string" },
|
|
188
|
+
"escapePhase": {
|
|
189
|
+
"type": "string",
|
|
190
|
+
"enum": ["ideation", "refinement", "development", "cicd", "production"],
|
|
191
|
+
"description": "Which QCSD phase should have caught this"
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"defectPredictionResult": {
|
|
196
|
+
"type": "object",
|
|
197
|
+
"required": ["trendDirection"],
|
|
198
|
+
"properties": {
|
|
199
|
+
"trendDirection": {
|
|
200
|
+
"type": "string",
|
|
201
|
+
"enum": ["declining", "stable", "increasing"]
|
|
202
|
+
},
|
|
203
|
+
"predictedDensity": {
|
|
204
|
+
"type": "number",
|
|
205
|
+
"minimum": 0,
|
|
206
|
+
"description": "Predicted defect density for current release"
|
|
207
|
+
},
|
|
208
|
+
"hotspots": {
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"type": "object",
|
|
212
|
+
"properties": {
|
|
213
|
+
"module": { "type": "string" },
|
|
214
|
+
"probability": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
215
|
+
"confidence": { "type": "string", "enum": ["high", "medium", "low"] }
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"patterns": {
|
|
220
|
+
"type": "array",
|
|
221
|
+
"items": { "type": "string" }
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"feedbackLoopCollection": {
|
|
226
|
+
"type": "object",
|
|
227
|
+
"properties": {
|
|
228
|
+
"toIdeation": {
|
|
229
|
+
"type": "object",
|
|
230
|
+
"properties": {
|
|
231
|
+
"riskCalibration": { "type": "array", "items": { "type": "string" } },
|
|
232
|
+
"doraTrends": { "type": "array", "items": { "type": "string" } },
|
|
233
|
+
"qualityCriteriaUpdates": { "type": "array", "items": { "type": "string" } }
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"toRefinement": {
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {
|
|
239
|
+
"rcaPatterns": { "type": "array", "items": { "type": "string" } },
|
|
240
|
+
"escapeAnalysis": { "type": "array", "items": { "type": "string" } },
|
|
241
|
+
"testStrategyImprovements": { "type": "array", "items": { "type": "string" } }
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"transferCompleted": {
|
|
245
|
+
"type": "boolean",
|
|
246
|
+
"description": "Whether knowledge transfer was executed"
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"agentReports": {
|
|
251
|
+
"type": "object",
|
|
252
|
+
"required": ["coreAgents"],
|
|
253
|
+
"properties": {
|
|
254
|
+
"coreAgents": {
|
|
255
|
+
"type": "array",
|
|
256
|
+
"items": { "$ref": "#/$defs/agentReport" },
|
|
257
|
+
"minItems": 3,
|
|
258
|
+
"maxItems": 3,
|
|
259
|
+
"description": "Must have exactly 3 core agents"
|
|
260
|
+
},
|
|
261
|
+
"conditionalAgents": {
|
|
262
|
+
"type": "array",
|
|
263
|
+
"items": { "$ref": "#/$defs/agentReport" },
|
|
264
|
+
"maxItems": 7
|
|
265
|
+
},
|
|
266
|
+
"feedbackAgents": {
|
|
267
|
+
"type": "array",
|
|
268
|
+
"items": { "$ref": "#/$defs/agentReport" },
|
|
269
|
+
"minItems": 2,
|
|
270
|
+
"maxItems": 2,
|
|
271
|
+
"description": "Must have exactly 2 feedback agents"
|
|
272
|
+
},
|
|
273
|
+
"totalAgents": {
|
|
274
|
+
"type": "integer",
|
|
275
|
+
"minimum": 5,
|
|
276
|
+
"maximum": 12
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"agentReport": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"required": ["agentId", "domain", "status"],
|
|
283
|
+
"properties": {
|
|
284
|
+
"agentId": {
|
|
285
|
+
"type": "string",
|
|
286
|
+
"pattern": "^qe-[a-z][a-z0-9-]*$"
|
|
287
|
+
},
|
|
288
|
+
"domain": {
|
|
289
|
+
"type": "string",
|
|
290
|
+
"enum": [
|
|
291
|
+
"learning-optimization", "defect-intelligence", "chaos-resilience", "enterprise-integration"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
"status": {
|
|
295
|
+
"type": "string",
|
|
296
|
+
"enum": ["completed", "partial", "failed", "skipped"]
|
|
297
|
+
},
|
|
298
|
+
"reportPath": { "type": "string" },
|
|
299
|
+
"executionTimeMs": { "type": "integer", "minimum": 0 },
|
|
300
|
+
"findingsCount": { "type": "integer", "minimum": 0 }
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"flagDetection": {
|
|
304
|
+
"type": "object",
|
|
305
|
+
"required": ["HAS_INFRASTRUCTURE_CHANGE", "HAS_PERFORMANCE_SLA", "HAS_REGRESSION_RISK", "HAS_RECURRING_INCIDENTS", "HAS_MIDDLEWARE", "HAS_SAP_INTEGRATION", "HAS_AUTHORIZATION"],
|
|
306
|
+
"properties": {
|
|
307
|
+
"HAS_INFRASTRUCTURE_CHANGE": { "type": "boolean" },
|
|
308
|
+
"HAS_PERFORMANCE_SLA": { "type": "boolean" },
|
|
309
|
+
"HAS_REGRESSION_RISK": { "type": "boolean" },
|
|
310
|
+
"HAS_RECURRING_INCIDENTS": { "type": "boolean" },
|
|
311
|
+
"HAS_MIDDLEWARE": { "type": "boolean" },
|
|
312
|
+
"HAS_SAP_INTEGRATION": { "type": "boolean" },
|
|
313
|
+
"HAS_AUTHORIZATION": { "type": "boolean" },
|
|
314
|
+
"evidence": {
|
|
315
|
+
"type": "object",
|
|
316
|
+
"properties": {
|
|
317
|
+
"infrastructureChange": { "type": "array", "items": { "type": "string" } },
|
|
318
|
+
"performanceSla": { "type": "array", "items": { "type": "string" } },
|
|
319
|
+
"regressionRisk": { "type": "array", "items": { "type": "string" } },
|
|
320
|
+
"recurringIncidents": { "type": "array", "items": { "type": "string" } },
|
|
321
|
+
"middleware": { "type": "array", "items": { "type": "string" } },
|
|
322
|
+
"sapIntegration": { "type": "array", "items": { "type": "string" } },
|
|
323
|
+
"authorization": { "type": "array", "items": { "type": "string" } }
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"conditionalAnalysis": {
|
|
329
|
+
"type": "object",
|
|
330
|
+
"properties": {
|
|
331
|
+
"chaos": { "$ref": "#/$defs/chaosAnalysis" },
|
|
332
|
+
"performance": { "$ref": "#/$defs/performanceAnalysis" },
|
|
333
|
+
"regression": { "$ref": "#/$defs/regressionAnalysis" },
|
|
334
|
+
"patterns": { "$ref": "#/$defs/patternAnalysis" },
|
|
335
|
+
"middleware": { "$ref": "#/$defs/middlewareAnalysis" },
|
|
336
|
+
"sapHealth": { "$ref": "#/$defs/sapAnalysis" },
|
|
337
|
+
"sodCompliance": { "$ref": "#/$defs/sodAnalysis" }
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"middlewareAnalysis": {
|
|
341
|
+
"type": "object",
|
|
342
|
+
"properties": {
|
|
343
|
+
"healthScore": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
344
|
+
"componentsHealthy": { "type": "integer", "minimum": 0 },
|
|
345
|
+
"componentsDegraded": { "type": "integer", "minimum": 0 },
|
|
346
|
+
"messageFlowErrors": { "type": "integer", "minimum": 0 },
|
|
347
|
+
"deadLetterCount": { "type": "integer", "minimum": 0 }
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
"sapAnalysis": {
|
|
351
|
+
"type": "object",
|
|
352
|
+
"properties": {
|
|
353
|
+
"healthScore": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
354
|
+
"rfcSuccessRate": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
355
|
+
"connectorStatus": { "type": "string", "enum": ["healthy", "degraded", "failed"] },
|
|
356
|
+
"dataIntegrityIssues": { "type": "integer", "minimum": 0 }
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"sodAnalysis": {
|
|
360
|
+
"type": "object",
|
|
361
|
+
"properties": {
|
|
362
|
+
"complianceScore": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
363
|
+
"violationsFound": { "type": "integer", "minimum": 0 },
|
|
364
|
+
"criticalViolations": { "type": "integer", "minimum": 0 },
|
|
365
|
+
"policiesEvaluated": { "type": "integer", "minimum": 0 }
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"chaosAnalysis": {
|
|
369
|
+
"type": "object",
|
|
370
|
+
"properties": {
|
|
371
|
+
"resilienceScore": { "type": "number", "minimum": 0, "maximum": 100, "description": "Chaos resilience score on 0-100 scale (4 dimensions x 25 each)" },
|
|
372
|
+
"experimentsRun": { "type": "integer", "minimum": 0 },
|
|
373
|
+
"failuresDetected": { "type": "integer", "minimum": 0 },
|
|
374
|
+
"recoveryTimeAvg": { "type": "string" }
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"performanceAnalysis": {
|
|
378
|
+
"type": "object",
|
|
379
|
+
"properties": {
|
|
380
|
+
"slaCompliance": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
381
|
+
"latencyP95": { "type": "string" },
|
|
382
|
+
"throughput": { "type": "string" },
|
|
383
|
+
"errorRate": { "type": "number", "minimum": 0, "maximum": 100 }
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"regressionAnalysis": {
|
|
387
|
+
"type": "object",
|
|
388
|
+
"properties": {
|
|
389
|
+
"regressionCount": { "type": "integer", "minimum": 0 },
|
|
390
|
+
"severity": { "type": "string", "enum": ["critical", "high", "medium", "low", "none"] },
|
|
391
|
+
"affectedModules": { "type": "array", "items": { "type": "string" } }
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"patternAnalysis": {
|
|
395
|
+
"type": "object",
|
|
396
|
+
"properties": {
|
|
397
|
+
"patternsDiscovered": { "type": "integer", "minimum": 0 },
|
|
398
|
+
"highRiskPatterns": { "type": "integer", "minimum": 0 },
|
|
399
|
+
"patterns": { "type": "array", "items": { "type": "string" } }
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"executiveSummary": {
|
|
403
|
+
"type": "object",
|
|
404
|
+
"required": ["recommendation"],
|
|
405
|
+
"properties": {
|
|
406
|
+
"recommendation": {
|
|
407
|
+
"type": "string",
|
|
408
|
+
"enum": ["HEALTHY", "DEGRADED", "CRITICAL"]
|
|
409
|
+
},
|
|
410
|
+
"rationale": {
|
|
411
|
+
"type": "string",
|
|
412
|
+
"minLength": 50
|
|
413
|
+
},
|
|
414
|
+
"metrics": {
|
|
415
|
+
"type": "object",
|
|
416
|
+
"properties": {
|
|
417
|
+
"doraScore": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
418
|
+
"slaCompliance": { "type": "number", "minimum": 0, "maximum": 100 },
|
|
419
|
+
"incidentSeverity": { "type": "string" },
|
|
420
|
+
"defectTrend": { "type": "string" },
|
|
421
|
+
"rcaCompleteness": { "type": "number", "minimum": 0, "maximum": 100 }
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"blockers": {
|
|
425
|
+
"type": "array",
|
|
426
|
+
"items": { "type": "string" }
|
|
427
|
+
},
|
|
428
|
+
"immediateActions": {
|
|
429
|
+
"type": "array",
|
|
430
|
+
"items": { "type": "string" }
|
|
431
|
+
},
|
|
432
|
+
"feedbackActions": {
|
|
433
|
+
"type": "array",
|
|
434
|
+
"items": { "type": "string" }
|
|
435
|
+
},
|
|
436
|
+
"followUpRecommendations": {
|
|
437
|
+
"type": "array",
|
|
438
|
+
"items": {
|
|
439
|
+
"type": "object",
|
|
440
|
+
"properties": {
|
|
441
|
+
"action": { "type": "string" },
|
|
442
|
+
"skill": { "type": "string" },
|
|
443
|
+
"reason": { "type": "string" }
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"artifact": {
|
|
450
|
+
"type": "object",
|
|
451
|
+
"required": ["type", "path"],
|
|
452
|
+
"properties": {
|
|
453
|
+
"type": {
|
|
454
|
+
"type": "string",
|
|
455
|
+
"enum": ["report", "dora-analysis", "rca-report", "defect-prediction", "feedback-loops", "executive-summary"]
|
|
456
|
+
},
|
|
457
|
+
"path": { "type": "string", "maxLength": 500 },
|
|
458
|
+
"format": { "type": "string", "enum": ["html", "md", "json"] },
|
|
459
|
+
"description": { "type": "string" }
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"metadata": {
|
|
463
|
+
"type": "object",
|
|
464
|
+
"properties": {
|
|
465
|
+
"executionTimeMs": { "type": "integer", "minimum": 0 },
|
|
466
|
+
"agentId": { "type": "string", "pattern": "^qe-[a-z][a-z0-9-]*$" },
|
|
467
|
+
"releaseId": { "type": "string" },
|
|
468
|
+
"releaseName": { "type": "string" },
|
|
469
|
+
"sourcePhase": {
|
|
470
|
+
"type": "string",
|
|
471
|
+
"enum": ["post-release", "production-monitoring", "incident-response"],
|
|
472
|
+
"description": "The context that triggered this production assessment"
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"validationResult": {
|
|
477
|
+
"type": "object",
|
|
478
|
+
"properties": {
|
|
479
|
+
"schemaValid": { "type": "boolean" },
|
|
480
|
+
"contentValid": { "type": "boolean" },
|
|
481
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
482
|
+
"warnings": { "type": "array", "items": { "type": "string" } },
|
|
483
|
+
"errors": { "type": "array", "items": { "type": "string" } }
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"learningData": {
|
|
487
|
+
"type": "object",
|
|
488
|
+
"properties": {
|
|
489
|
+
"patternsDetected": { "type": "array", "items": { "type": "string" } },
|
|
490
|
+
"reward": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
491
|
+
"productionPatterns": {
|
|
492
|
+
"type": "array",
|
|
493
|
+
"items": {
|
|
494
|
+
"type": "object",
|
|
495
|
+
"properties": {
|
|
496
|
+
"pattern": { "type": "string" },
|
|
497
|
+
"recommendation": { "type": "string" },
|
|
498
|
+
"outcome": { "type": "string" }
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skillName": "qcsd-production-swarm",
|
|
3
|
+
"skillVersion": "1.0.0",
|
|
4
|
+
"requiredTools": [
|
|
5
|
+
"jq"
|
|
6
|
+
],
|
|
7
|
+
"optionalTools": [],
|
|
8
|
+
"schemaPath": "schemas/output.json",
|
|
9
|
+
"requiredFields": [
|
|
10
|
+
"skillName",
|
|
11
|
+
"status",
|
|
12
|
+
"output"
|
|
13
|
+
],
|
|
14
|
+
"requiredNonEmptyFields": [],
|
|
15
|
+
"mustContainTerms": [],
|
|
16
|
+
"mustNotContainTerms": [],
|
|
17
|
+
"enumValidations": {
|
|
18
|
+
".status": [
|
|
19
|
+
"success",
|
|
20
|
+
"partial",
|
|
21
|
+
"failed",
|
|
22
|
+
"skipped"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -904,7 +904,7 @@
|
|
|
904
904
|
},
|
|
905
905
|
"metadata": {
|
|
906
906
|
"generatedBy": "Agentic QE Fleet",
|
|
907
|
-
"fleetVersion": "3.6.
|
|
907
|
+
"fleetVersion": "3.6.10",
|
|
908
908
|
"manifestVersion": "1.3.0",
|
|
909
909
|
"lastUpdated": "2026-02-04T00:00:00.000Z",
|
|
910
910
|
"contributors": [
|
|
@@ -914,13 +914,13 @@
|
|
|
914
914
|
"url": "https://github.com/fndlalit"
|
|
915
915
|
}
|
|
916
916
|
],
|
|
917
|
-
"notes": "This manifest tracks 46 Tier 3 verified QE skills. Total 75 QE skills on disk (46 Tier 3 + 29 additional). Claude Flow platform skills (
|
|
917
|
+
"notes": "This manifest tracks 46 Tier 3 verified QE skills. Total 75 QE skills on disk (46 Tier 3 + 29 additional). Claude Flow platform skills (36) are managed separately.",
|
|
918
918
|
"skillBreakdown": {
|
|
919
919
|
"qeSkillsTier3": 46,
|
|
920
920
|
"qeSkillsAdditional": 21,
|
|
921
|
-
"totalQESkills":
|
|
922
|
-
"platformSkills":
|
|
923
|
-
"totalOnDisk":
|
|
921
|
+
"totalQESkills": 75,
|
|
922
|
+
"platformSkills": 36,
|
|
923
|
+
"totalOnDisk": 111
|
|
924
924
|
},
|
|
925
925
|
"excludedCategories": {
|
|
926
926
|
"reason": "Platform skills are available but not tracked in this QE-focused manifest",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.10",
|
|
4
4
|
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 59 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",
|