agentic-qe 1.9.1 → 1.9.3
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/helpers/checkpoint-manager.sh +251 -0
- package/.claude/helpers/github-safe.js +106 -0
- package/.claude/helpers/github-setup.sh +28 -0
- package/.claude/helpers/quick-start.sh +19 -0
- package/.claude/helpers/setup-mcp.sh +18 -0
- package/.claude/helpers/standard-checkpoint-hooks.sh +179 -0
- package/CHANGELOG.md +36 -0
- package/README.md +33 -1
- package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
- package/dist/core/memory/SwarmMemoryManager.js +45 -5
- package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
- package/dist/mcp/handlers/memory/memory-store.d.ts +6 -2
- package/dist/mcp/handlers/memory/memory-store.d.ts.map +1 -1
- package/dist/mcp/handlers/memory/memory-store.js +26 -4
- package/dist/mcp/handlers/memory/memory-store.js.map +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +2 -1
- package/dist/mcp/server.js.map +1 -1
- package/docs/README.md +839 -0
- package/docs/reference/agents.md +412 -0
- package/docs/reference/skills.md +796 -0
- package/docs/reference/usage.md +512 -0
- package/package.json +4 -1
- package/templates/agent-code-execution-template.md +619 -0
- package/templates/aqe.sh +20 -0
- package/.claude/commands/github/code-review-swarm.md +0 -514
- package/.claude/commands/github/github-modes.md +0 -147
- package/.claude/commands/github/issue-tracker.md +0 -292
- package/.claude/commands/github/multi-repo-swarm.md +0 -519
- package/.claude/commands/github/pr-manager.md +0 -170
- package/.claude/commands/github/project-board-sync.md +0 -471
- package/.claude/commands/github/release-manager.md +0 -338
- package/.claude/commands/github/release-swarm.md +0 -544
- package/.claude/commands/github/repo-architect.md +0 -367
- package/.claude/commands/github/swarm-issue.md +0 -482
- package/.claude/commands/github/swarm-pr.md +0 -285
- package/.claude/commands/github/sync-coordinator.md +0 -301
- package/.claude/commands/github/workflow-automation.md +0 -442
- package/.claude/commands/hooks/overview.md +0 -132
- package/.claude/commands/pair/commands.md +0 -546
- package/.claude/commands/pair/config.md +0 -510
- package/.claude/commands/pair/examples.md +0 -512
- package/.claude/commands/pair/modes.md +0 -348
- package/.claude/commands/pair/session.md +0 -407
- package/.claude/commands/pair/start.md +0 -209
- package/.claude/commands/sparc/orchestrator.md +0 -132
- package/.claude/commands/sparc/sparc-modes.md +0 -174
- package/.claude/commands/stream-chain/pipeline.md +0 -121
- package/.claude/commands/stream-chain/run.md +0 -70
- package/.claude/commands/swarm/analysis.md +0 -95
- package/.claude/commands/swarm/development.md +0 -96
- package/.claude/commands/swarm/examples.md +0 -168
- package/.claude/commands/swarm/maintenance.md +0 -102
- package/.claude/commands/swarm/optimization.md +0 -117
- package/.claude/commands/swarm/research.md +0 -136
- package/.claude/commands/swarm/testing.md +0 -131
- package/.claude/commands/truth/start.md +0 -143
- package/.claude/commands/verify/check.md +0 -50
- package/.claude/commands/verify/start.md +0 -128
|
@@ -0,0 +1,796 @@
|
|
|
1
|
+
# Agentic QE Fleet - Skills Reference
|
|
2
|
+
|
|
3
|
+
This document provides comprehensive reference for all 38 specialized QE skills available to agents.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
QE skills are specialized knowledge modules that agents can invoke to enhance their capabilities. Skills are organized into phases and categories based on testing domains.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Phase 1: Original Quality Engineering Skills (18 skills)
|
|
12
|
+
|
|
13
|
+
### Core Testing (3 skills)
|
|
14
|
+
|
|
15
|
+
#### agentic-quality-engineering
|
|
16
|
+
**Using AI agents as force multipliers in quality work**
|
|
17
|
+
|
|
18
|
+
Covers autonomous testing systems, PACT principles (Proactive, Autonomous, Collaborative, Targeted), and scaling quality engineering with intelligent agents.
|
|
19
|
+
|
|
20
|
+
**Key Topics:**
|
|
21
|
+
- AI-driven test generation
|
|
22
|
+
- Autonomous quality validation
|
|
23
|
+
- Agent coordination patterns
|
|
24
|
+
- Quality multiplier strategies
|
|
25
|
+
|
|
26
|
+
**Usage:**
|
|
27
|
+
```javascript
|
|
28
|
+
Skill("agentic-quality-engineering")
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
#### context-driven-testing
|
|
34
|
+
**Apply context-driven testing principles**
|
|
35
|
+
|
|
36
|
+
Practices are chosen based on project context, not universal "best practices". Focuses on adapting testing approaches to specific situations.
|
|
37
|
+
|
|
38
|
+
**Key Topics:**
|
|
39
|
+
- Context analysis
|
|
40
|
+
- Heuristic testing
|
|
41
|
+
- Risk-based decisions
|
|
42
|
+
- Situational awareness
|
|
43
|
+
|
|
44
|
+
**Usage:**
|
|
45
|
+
```javascript
|
|
46
|
+
Skill("context-driven-testing")
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
#### holistic-testing-pact
|
|
52
|
+
**Holistic Testing Model evolved with PACT principles**
|
|
53
|
+
|
|
54
|
+
Applies the Holistic Testing Model with Proactive, Autonomous, Collaborative, and Targeted principles for comprehensive quality coverage.
|
|
55
|
+
|
|
56
|
+
**Key Topics:**
|
|
57
|
+
- Quadrant-based testing
|
|
58
|
+
- Whole-team quality
|
|
59
|
+
- PACT evolution
|
|
60
|
+
- Agile testing strategies
|
|
61
|
+
|
|
62
|
+
**Usage:**
|
|
63
|
+
```javascript
|
|
64
|
+
Skill("holistic-testing-pact")
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
### Testing Methodologies (4 skills)
|
|
70
|
+
|
|
71
|
+
#### tdd-london-chicago
|
|
72
|
+
**London and Chicago school TDD approaches**
|
|
73
|
+
|
|
74
|
+
Understanding different TDD philosophies (inside-out vs outside-in) and choosing the right testing style for your context.
|
|
75
|
+
|
|
76
|
+
**Key Topics:**
|
|
77
|
+
- London School (mockist TDD)
|
|
78
|
+
- Chicago School (classicist TDD)
|
|
79
|
+
- When to use each approach
|
|
80
|
+
- Trade-offs and benefits
|
|
81
|
+
|
|
82
|
+
**Usage:**
|
|
83
|
+
```javascript
|
|
84
|
+
Skill("tdd-london-chicago")
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
#### xp-practices
|
|
90
|
+
**Extreme Programming practices**
|
|
91
|
+
|
|
92
|
+
Apply XP practices including pair programming, ensemble programming, continuous integration, and sustainable pace.
|
|
93
|
+
|
|
94
|
+
**Key Topics:**
|
|
95
|
+
- Pair/Mob programming
|
|
96
|
+
- Continuous integration
|
|
97
|
+
- Refactoring discipline
|
|
98
|
+
- Test-first development
|
|
99
|
+
|
|
100
|
+
**Usage:**
|
|
101
|
+
```javascript
|
|
102
|
+
Skill("xp-practices")
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
#### risk-based-testing
|
|
108
|
+
**Focus testing on highest-risk areas**
|
|
109
|
+
|
|
110
|
+
Use risk assessment and prioritization to allocate testing effort where it matters most.
|
|
111
|
+
|
|
112
|
+
**Key Topics:**
|
|
113
|
+
- Risk identification
|
|
114
|
+
- Risk matrix creation
|
|
115
|
+
- Prioritization strategies
|
|
116
|
+
- Coverage optimization
|
|
117
|
+
|
|
118
|
+
**Usage:**
|
|
119
|
+
```javascript
|
|
120
|
+
Skill("risk-based-testing")
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
#### test-automation-strategy
|
|
126
|
+
**Comprehensive test automation strategies**
|
|
127
|
+
|
|
128
|
+
Design and implement effective test automation that balances coverage, maintenance, and execution speed.
|
|
129
|
+
|
|
130
|
+
**Key Topics:**
|
|
131
|
+
- Test pyramid/trophy
|
|
132
|
+
- Automation framework selection
|
|
133
|
+
- Maintenance strategies
|
|
134
|
+
- ROI optimization
|
|
135
|
+
|
|
136
|
+
**Usage:**
|
|
137
|
+
```javascript
|
|
138
|
+
Skill("test-automation-strategy")
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
### Testing Techniques (4 skills)
|
|
144
|
+
|
|
145
|
+
#### api-testing-patterns
|
|
146
|
+
**Comprehensive API testing patterns**
|
|
147
|
+
|
|
148
|
+
Contract testing, REST/GraphQL testing, and integration testing for APIs.
|
|
149
|
+
|
|
150
|
+
**Key Topics:**
|
|
151
|
+
- Contract testing (Pact)
|
|
152
|
+
- REST API testing
|
|
153
|
+
- GraphQL testing
|
|
154
|
+
- Authentication testing
|
|
155
|
+
|
|
156
|
+
**Usage:**
|
|
157
|
+
```javascript
|
|
158
|
+
Skill("api-testing-patterns")
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
#### exploratory-testing-advanced
|
|
164
|
+
**Advanced exploratory testing techniques**
|
|
165
|
+
|
|
166
|
+
Session-Based Test Management (SBTM), RST heuristics, and test tours for structured exploration.
|
|
167
|
+
|
|
168
|
+
**Key Topics:**
|
|
169
|
+
- SBTM sessions
|
|
170
|
+
- RST heuristics
|
|
171
|
+
- Test tours
|
|
172
|
+
- Charter creation
|
|
173
|
+
|
|
174
|
+
**Usage:**
|
|
175
|
+
```javascript
|
|
176
|
+
Skill("exploratory-testing-advanced")
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
#### performance-testing
|
|
182
|
+
**Performance, scalability, and resilience testing**
|
|
183
|
+
|
|
184
|
+
Load testing, stress testing, and performance optimization techniques.
|
|
185
|
+
|
|
186
|
+
**Key Topics:**
|
|
187
|
+
- Load testing patterns
|
|
188
|
+
- Stress testing
|
|
189
|
+
- Performance profiling
|
|
190
|
+
- SLA validation
|
|
191
|
+
|
|
192
|
+
**Usage:**
|
|
193
|
+
```javascript
|
|
194
|
+
Skill("performance-testing")
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
#### security-testing
|
|
200
|
+
**Security vulnerabilities using OWASP principles**
|
|
201
|
+
|
|
202
|
+
Test for security vulnerabilities using OWASP principles and security testing techniques.
|
|
203
|
+
|
|
204
|
+
**Key Topics:**
|
|
205
|
+
- OWASP Top 10
|
|
206
|
+
- SAST/DAST
|
|
207
|
+
- Penetration testing
|
|
208
|
+
- Security compliance
|
|
209
|
+
|
|
210
|
+
**Usage:**
|
|
211
|
+
```javascript
|
|
212
|
+
Skill("security-testing")
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
### Code Quality (3 skills)
|
|
218
|
+
|
|
219
|
+
#### code-review-quality
|
|
220
|
+
**Context-driven code reviews**
|
|
221
|
+
|
|
222
|
+
Conduct effective code reviews focusing on quality, testability, and maintainability.
|
|
223
|
+
|
|
224
|
+
**Key Topics:**
|
|
225
|
+
- Review checklists
|
|
226
|
+
- Testability assessment
|
|
227
|
+
- Maintainability metrics
|
|
228
|
+
- Constructive feedback
|
|
229
|
+
|
|
230
|
+
**Usage:**
|
|
231
|
+
```javascript
|
|
232
|
+
Skill("code-review-quality")
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
---
|
|
236
|
+
|
|
237
|
+
#### refactoring-patterns
|
|
238
|
+
**Safe refactoring patterns**
|
|
239
|
+
|
|
240
|
+
Apply safe refactoring patterns to improve code structure without changing behavior.
|
|
241
|
+
|
|
242
|
+
**Key Topics:**
|
|
243
|
+
- Refactoring catalog
|
|
244
|
+
- Test coverage first
|
|
245
|
+
- Incremental changes
|
|
246
|
+
- Design patterns
|
|
247
|
+
|
|
248
|
+
**Usage:**
|
|
249
|
+
```javascript
|
|
250
|
+
Skill("refactoring-patterns")
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
#### quality-metrics
|
|
256
|
+
**Measure quality effectively**
|
|
257
|
+
|
|
258
|
+
Actionable metrics and KPIs for measuring and improving software quality.
|
|
259
|
+
|
|
260
|
+
**Key Topics:**
|
|
261
|
+
- Metric selection
|
|
262
|
+
- Dashboard design
|
|
263
|
+
- Trend analysis
|
|
264
|
+
- Leading indicators
|
|
265
|
+
|
|
266
|
+
**Usage:**
|
|
267
|
+
```javascript
|
|
268
|
+
Skill("quality-metrics")
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
### Communication (3 skills)
|
|
274
|
+
|
|
275
|
+
#### bug-reporting-excellence
|
|
276
|
+
**High-quality bug reports**
|
|
277
|
+
|
|
278
|
+
Write bug reports that get fixed quickly with templates, examples, and best practices.
|
|
279
|
+
|
|
280
|
+
**Key Topics:**
|
|
281
|
+
- Bug report structure
|
|
282
|
+
- Reproducibility
|
|
283
|
+
- Severity assessment
|
|
284
|
+
- Clear communication
|
|
285
|
+
|
|
286
|
+
**Usage:**
|
|
287
|
+
```javascript
|
|
288
|
+
Skill("bug-reporting-excellence")
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
---
|
|
292
|
+
|
|
293
|
+
#### technical-writing
|
|
294
|
+
**Clear, concise technical documentation**
|
|
295
|
+
|
|
296
|
+
Create effective technical documentation that practitioners actually want to read.
|
|
297
|
+
|
|
298
|
+
**Key Topics:**
|
|
299
|
+
- Documentation structure
|
|
300
|
+
- Audience awareness
|
|
301
|
+
- Code examples
|
|
302
|
+
- Maintenance strategies
|
|
303
|
+
|
|
304
|
+
**Usage:**
|
|
305
|
+
```javascript
|
|
306
|
+
Skill("technical-writing")
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
#### consultancy-practices
|
|
312
|
+
**Software quality consultancy**
|
|
313
|
+
|
|
314
|
+
Effective consulting practices for quality engineering engagements.
|
|
315
|
+
|
|
316
|
+
**Key Topics:**
|
|
317
|
+
- Client engagement
|
|
318
|
+
- Assessment frameworks
|
|
319
|
+
- Recommendation strategies
|
|
320
|
+
- Change management
|
|
321
|
+
|
|
322
|
+
**Usage:**
|
|
323
|
+
```javascript
|
|
324
|
+
Skill("consultancy-practices")
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
## Phase 2: Expanded QE Skills Library (16 skills)
|
|
330
|
+
|
|
331
|
+
### Testing Methodologies (6 skills)
|
|
332
|
+
|
|
333
|
+
#### regression-testing
|
|
334
|
+
**Strategic regression testing**
|
|
335
|
+
|
|
336
|
+
Test selection, impact analysis, and continuous regression management.
|
|
337
|
+
|
|
338
|
+
**Key Topics:**
|
|
339
|
+
- Test selection algorithms
|
|
340
|
+
- Impact analysis
|
|
341
|
+
- Risk-based regression
|
|
342
|
+
- Continuous regression
|
|
343
|
+
|
|
344
|
+
**Usage:**
|
|
345
|
+
```javascript
|
|
346
|
+
Skill("regression-testing")
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
---
|
|
350
|
+
|
|
351
|
+
#### shift-left-testing
|
|
352
|
+
**Move testing earlier in development**
|
|
353
|
+
|
|
354
|
+
TDD, BDD, and design for testability to catch bugs earlier.
|
|
355
|
+
|
|
356
|
+
**Key Topics:**
|
|
357
|
+
- Unit testing discipline
|
|
358
|
+
- TDD/BDD practices
|
|
359
|
+
- Testability patterns
|
|
360
|
+
- Early quality gates
|
|
361
|
+
|
|
362
|
+
**Usage:**
|
|
363
|
+
```javascript
|
|
364
|
+
Skill("shift-left-testing")
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
#### shift-right-testing
|
|
370
|
+
**Testing in production**
|
|
371
|
+
|
|
372
|
+
Feature flags, canary deployments, synthetic monitoring, and chaos engineering.
|
|
373
|
+
|
|
374
|
+
**Key Topics:**
|
|
375
|
+
- Feature flags
|
|
376
|
+
- Canary deployments
|
|
377
|
+
- Synthetic monitoring
|
|
378
|
+
- Production testing
|
|
379
|
+
|
|
380
|
+
**Usage:**
|
|
381
|
+
```javascript
|
|
382
|
+
Skill("shift-right-testing")
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
---
|
|
386
|
+
|
|
387
|
+
#### test-design-techniques
|
|
388
|
+
**Advanced test design**
|
|
389
|
+
|
|
390
|
+
Equivalence partitioning, boundary value analysis, and decision tables.
|
|
391
|
+
|
|
392
|
+
**Key Topics:**
|
|
393
|
+
- Test design methods
|
|
394
|
+
- Combinatorial testing
|
|
395
|
+
- Pairwise testing
|
|
396
|
+
- Decision tables
|
|
397
|
+
|
|
398
|
+
**Usage:**
|
|
399
|
+
```javascript
|
|
400
|
+
Skill("test-design-techniques")
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
---
|
|
404
|
+
|
|
405
|
+
#### mutation-testing
|
|
406
|
+
**Test quality validation**
|
|
407
|
+
|
|
408
|
+
Measure test suite effectiveness through mutation testing.
|
|
409
|
+
|
|
410
|
+
**Key Topics:**
|
|
411
|
+
- Mutation operators
|
|
412
|
+
- Kill rate analysis
|
|
413
|
+
- Coverage vs quality
|
|
414
|
+
- Tool integration
|
|
415
|
+
|
|
416
|
+
**Usage:**
|
|
417
|
+
```javascript
|
|
418
|
+
Skill("mutation-testing")
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
#### test-data-management
|
|
424
|
+
**Realistic test data generation**
|
|
425
|
+
|
|
426
|
+
GDPR compliance and data masking strategies.
|
|
427
|
+
|
|
428
|
+
**Key Topics:**
|
|
429
|
+
- Data generation
|
|
430
|
+
- GDPR compliance
|
|
431
|
+
- Data masking
|
|
432
|
+
- Synthetic data
|
|
433
|
+
|
|
434
|
+
**Usage:**
|
|
435
|
+
```javascript
|
|
436
|
+
Skill("test-data-management")
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
---
|
|
440
|
+
|
|
441
|
+
### Specialized Testing (9 skills)
|
|
442
|
+
|
|
443
|
+
#### accessibility-testing
|
|
444
|
+
**WCAG 2.2 compliance testing**
|
|
445
|
+
|
|
446
|
+
Screen reader validation and inclusive design verification.
|
|
447
|
+
|
|
448
|
+
**Key Topics:**
|
|
449
|
+
- WCAG 2.2 criteria
|
|
450
|
+
- Screen reader testing
|
|
451
|
+
- Keyboard navigation
|
|
452
|
+
- Color contrast
|
|
453
|
+
|
|
454
|
+
**Usage:**
|
|
455
|
+
```javascript
|
|
456
|
+
Skill("accessibility-testing")
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
---
|
|
460
|
+
|
|
461
|
+
#### mobile-testing
|
|
462
|
+
**Comprehensive mobile testing**
|
|
463
|
+
|
|
464
|
+
iOS and Android testing including gestures, sensors, and device fragmentation.
|
|
465
|
+
|
|
466
|
+
**Key Topics:**
|
|
467
|
+
- Device fragmentation
|
|
468
|
+
- Touch gestures
|
|
469
|
+
- Sensor testing
|
|
470
|
+
- Platform-specific testing
|
|
471
|
+
|
|
472
|
+
**Usage:**
|
|
473
|
+
```javascript
|
|
474
|
+
Skill("mobile-testing")
|
|
475
|
+
```
|
|
476
|
+
|
|
477
|
+
---
|
|
478
|
+
|
|
479
|
+
#### database-testing
|
|
480
|
+
**Database schema validation**
|
|
481
|
+
|
|
482
|
+
Data integrity testing, migration testing, and query performance.
|
|
483
|
+
|
|
484
|
+
**Key Topics:**
|
|
485
|
+
- Schema validation
|
|
486
|
+
- Data integrity
|
|
487
|
+
- Migration testing
|
|
488
|
+
- Performance tuning
|
|
489
|
+
|
|
490
|
+
**Usage:**
|
|
491
|
+
```javascript
|
|
492
|
+
Skill("database-testing")
|
|
493
|
+
```
|
|
494
|
+
|
|
495
|
+
---
|
|
496
|
+
|
|
497
|
+
#### contract-testing
|
|
498
|
+
**Consumer-driven contract testing**
|
|
499
|
+
|
|
500
|
+
Microservices testing using Pact and API versioning.
|
|
501
|
+
|
|
502
|
+
**Key Topics:**
|
|
503
|
+
- Pact framework
|
|
504
|
+
- Contract validation
|
|
505
|
+
- Versioning strategies
|
|
506
|
+
- Provider verification
|
|
507
|
+
|
|
508
|
+
**Usage:**
|
|
509
|
+
```javascript
|
|
510
|
+
Skill("contract-testing")
|
|
511
|
+
```
|
|
512
|
+
|
|
513
|
+
---
|
|
514
|
+
|
|
515
|
+
#### chaos-engineering-resilience
|
|
516
|
+
**Chaos engineering principles**
|
|
517
|
+
|
|
518
|
+
Controlled failure injection and resilience testing.
|
|
519
|
+
|
|
520
|
+
**Key Topics:**
|
|
521
|
+
- Fault injection
|
|
522
|
+
- Resilience patterns
|
|
523
|
+
- Blast radius
|
|
524
|
+
- Recovery testing
|
|
525
|
+
|
|
526
|
+
**Usage:**
|
|
527
|
+
```javascript
|
|
528
|
+
Skill("chaos-engineering-resilience")
|
|
529
|
+
```
|
|
530
|
+
|
|
531
|
+
---
|
|
532
|
+
|
|
533
|
+
#### compatibility-testing
|
|
534
|
+
**Cross-browser, cross-platform testing**
|
|
535
|
+
|
|
536
|
+
Cross-device compatibility testing ensuring consistent experience.
|
|
537
|
+
|
|
538
|
+
**Key Topics:**
|
|
539
|
+
- Browser testing
|
|
540
|
+
- Platform compatibility
|
|
541
|
+
- Responsive design
|
|
542
|
+
- Progressive enhancement
|
|
543
|
+
|
|
544
|
+
**Usage:**
|
|
545
|
+
```javascript
|
|
546
|
+
Skill("compatibility-testing")
|
|
547
|
+
```
|
|
548
|
+
|
|
549
|
+
---
|
|
550
|
+
|
|
551
|
+
#### localization-testing
|
|
552
|
+
**Internationalization (i18n) and localization (l10n)**
|
|
553
|
+
|
|
554
|
+
Testing for global products including translations and locale formats.
|
|
555
|
+
|
|
556
|
+
**Key Topics:**
|
|
557
|
+
- i18n testing
|
|
558
|
+
- Translation validation
|
|
559
|
+
- Locale formats
|
|
560
|
+
- RTL languages
|
|
561
|
+
|
|
562
|
+
**Usage:**
|
|
563
|
+
```javascript
|
|
564
|
+
Skill("localization-testing")
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
---
|
|
568
|
+
|
|
569
|
+
#### compliance-testing
|
|
570
|
+
**Regulatory compliance testing**
|
|
571
|
+
|
|
572
|
+
GDPR, CCPA, HIPAA, SOC2, and PCI-DSS validation.
|
|
573
|
+
|
|
574
|
+
**Key Topics:**
|
|
575
|
+
- GDPR compliance
|
|
576
|
+
- HIPAA validation
|
|
577
|
+
- SOC2 requirements
|
|
578
|
+
- PCI-DSS testing
|
|
579
|
+
|
|
580
|
+
**Usage:**
|
|
581
|
+
```javascript
|
|
582
|
+
Skill("compliance-testing")
|
|
583
|
+
```
|
|
584
|
+
|
|
585
|
+
---
|
|
586
|
+
|
|
587
|
+
#### visual-testing-advanced
|
|
588
|
+
**Advanced visual regression testing**
|
|
589
|
+
|
|
590
|
+
AI-powered screenshot comparison and UI validation.
|
|
591
|
+
|
|
592
|
+
**Key Topics:**
|
|
593
|
+
- Visual regression
|
|
594
|
+
- AI comparison
|
|
595
|
+
- Layout validation
|
|
596
|
+
- Responsive testing
|
|
597
|
+
|
|
598
|
+
**Usage:**
|
|
599
|
+
```javascript
|
|
600
|
+
Skill("visual-testing-advanced")
|
|
601
|
+
```
|
|
602
|
+
|
|
603
|
+
---
|
|
604
|
+
|
|
605
|
+
### Testing Infrastructure (2 skills)
|
|
606
|
+
|
|
607
|
+
#### test-environment-management
|
|
608
|
+
**Manage test environments**
|
|
609
|
+
|
|
610
|
+
Infrastructure as code and environment provisioning.
|
|
611
|
+
|
|
612
|
+
**Key Topics:**
|
|
613
|
+
- IaC patterns
|
|
614
|
+
- Environment isolation
|
|
615
|
+
- Data management
|
|
616
|
+
- Configuration management
|
|
617
|
+
|
|
618
|
+
**Usage:**
|
|
619
|
+
```javascript
|
|
620
|
+
Skill("test-environment-management")
|
|
621
|
+
```
|
|
622
|
+
|
|
623
|
+
---
|
|
624
|
+
|
|
625
|
+
#### test-reporting-analytics
|
|
626
|
+
**Comprehensive test reporting**
|
|
627
|
+
|
|
628
|
+
Metrics, trends, and actionable insights from test data.
|
|
629
|
+
|
|
630
|
+
**Key Topics:**
|
|
631
|
+
- Report generation
|
|
632
|
+
- Trend analysis
|
|
633
|
+
- Metrics dashboards
|
|
634
|
+
- Actionable insights
|
|
635
|
+
|
|
636
|
+
**Usage:**
|
|
637
|
+
```javascript
|
|
638
|
+
Skill("test-reporting-analytics")
|
|
639
|
+
```
|
|
640
|
+
|
|
641
|
+
---
|
|
642
|
+
|
|
643
|
+
## Phase 3: Advanced Quality Engineering Skills (4 skills)
|
|
644
|
+
|
|
645
|
+
### Strategic Testing Methodologies (4 skills)
|
|
646
|
+
|
|
647
|
+
#### six-thinking-hats
|
|
648
|
+
**Edward de Bono's Six Thinking Hats for comprehensive testing analysis**
|
|
649
|
+
|
|
650
|
+
Apply Six Thinking Hats methodology to software testing for structured exploration from six perspectives: facts (White), risks (Black), benefits (Yellow), creativity (Green), emotions (Red), and process (Blue).
|
|
651
|
+
|
|
652
|
+
**Key Topics:**
|
|
653
|
+
- Test strategy design
|
|
654
|
+
- Test retrospectives
|
|
655
|
+
- Failure analysis
|
|
656
|
+
- Multi-perspective evaluation
|
|
657
|
+
|
|
658
|
+
**Usage:**
|
|
659
|
+
```javascript
|
|
660
|
+
Skill("six-thinking-hats")
|
|
661
|
+
```
|
|
662
|
+
|
|
663
|
+
**Use Cases:**
|
|
664
|
+
- Designing test strategies
|
|
665
|
+
- Conducting test retrospectives
|
|
666
|
+
- Analyzing test failures
|
|
667
|
+
- Evaluating testing approaches
|
|
668
|
+
- Facilitating testing discussions
|
|
669
|
+
|
|
670
|
+
---
|
|
671
|
+
|
|
672
|
+
#### brutal-honesty-review
|
|
673
|
+
**Unvarnished technical criticism for code and test quality**
|
|
674
|
+
|
|
675
|
+
Brutally honest technical reviews combining Linus Torvalds' precision, Gordon Ramsay's standards, and James Bach's BS-detection. No sugar-coating, just surgical truth about what's broken and why.
|
|
676
|
+
|
|
677
|
+
**Key Topics:**
|
|
678
|
+
- Technical precision
|
|
679
|
+
- Quality standards
|
|
680
|
+
- BS detection
|
|
681
|
+
- Certification skepticism
|
|
682
|
+
|
|
683
|
+
**Usage:**
|
|
684
|
+
```javascript
|
|
685
|
+
Skill("brutal-honesty-review")
|
|
686
|
+
```
|
|
687
|
+
|
|
688
|
+
**Use Cases:**
|
|
689
|
+
- Code/test reality checks
|
|
690
|
+
- Identifying technical debt
|
|
691
|
+
- Challenging questionable practices
|
|
692
|
+
- Evaluating certifications/training
|
|
693
|
+
- Senior-level technical reviews
|
|
694
|
+
|
|
695
|
+
---
|
|
696
|
+
|
|
697
|
+
#### sherlock-review
|
|
698
|
+
**Evidence-based investigative code review using deductive reasoning**
|
|
699
|
+
|
|
700
|
+
Conducts methodical, evidence-based investigation of code, tests, and system behavior using Holmesian deductive reasoning. Investigates what actually happened versus what was claimed, seeing what others miss through systematic observation.
|
|
701
|
+
|
|
702
|
+
**Key Topics:**
|
|
703
|
+
- Evidence collection
|
|
704
|
+
- Deductive reasoning
|
|
705
|
+
- Claims verification
|
|
706
|
+
- Root cause investigation
|
|
707
|
+
- Systematic observation
|
|
708
|
+
|
|
709
|
+
**Usage:**
|
|
710
|
+
```javascript
|
|
711
|
+
Skill("sherlock-review")
|
|
712
|
+
```
|
|
713
|
+
|
|
714
|
+
**Use Cases:**
|
|
715
|
+
- Verifying implementation claims
|
|
716
|
+
- Investigating bugs and fixes
|
|
717
|
+
- Validating performance claims
|
|
718
|
+
- Conducting root cause analysis
|
|
719
|
+
- Evidence-based code review
|
|
720
|
+
|
|
721
|
+
---
|
|
722
|
+
|
|
723
|
+
#### cicd-pipeline-qe-orchestrator
|
|
724
|
+
**Comprehensive quality orchestration across CI/CD pipeline phases**
|
|
725
|
+
|
|
726
|
+
Intelligently select QE skills and coordinate specialized agents for holistic quality coverage throughout the software delivery lifecycle. Integrates all 38 AQE skills and 18 agents.
|
|
727
|
+
|
|
728
|
+
**Key Topics:**
|
|
729
|
+
- Pipeline phase analysis
|
|
730
|
+
- Skill selection strategies
|
|
731
|
+
- Agent orchestration
|
|
732
|
+
- Shift-left/shift-right testing
|
|
733
|
+
- Quality gates
|
|
734
|
+
|
|
735
|
+
**Usage:**
|
|
736
|
+
```javascript
|
|
737
|
+
Skill("cicd-pipeline-qe-orchestrator")
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
**Use Cases:**
|
|
741
|
+
- Designing test strategies for CI/CD
|
|
742
|
+
- Planning quality gates per phase
|
|
743
|
+
- Implementing shift-left testing
|
|
744
|
+
- Implementing shift-right testing
|
|
745
|
+
- Holistic pipeline quality coverage
|
|
746
|
+
- Microservice pipeline testing
|
|
747
|
+
- Monolith pipeline testing
|
|
748
|
+
- Mobile app pipeline testing
|
|
749
|
+
|
|
750
|
+
---
|
|
751
|
+
|
|
752
|
+
## Using Skills
|
|
753
|
+
|
|
754
|
+
### Via CLI
|
|
755
|
+
|
|
756
|
+
```bash
|
|
757
|
+
# List all available skills
|
|
758
|
+
aqe skills list
|
|
759
|
+
|
|
760
|
+
# Search for specific skills
|
|
761
|
+
aqe skills search "testing"
|
|
762
|
+
|
|
763
|
+
# Show skill details
|
|
764
|
+
aqe skills show agentic-quality-engineering
|
|
765
|
+
|
|
766
|
+
# Show skill statistics
|
|
767
|
+
aqe skills stats
|
|
768
|
+
```
|
|
769
|
+
|
|
770
|
+
### Via Skill Tool in Claude Code
|
|
771
|
+
|
|
772
|
+
```javascript
|
|
773
|
+
// Execute a skill
|
|
774
|
+
Skill("agentic-quality-engineering")
|
|
775
|
+
Skill("tdd-london-chicago")
|
|
776
|
+
Skill("api-testing-patterns")
|
|
777
|
+
```
|
|
778
|
+
|
|
779
|
+
## Integration with Agents
|
|
780
|
+
|
|
781
|
+
All QE agents automatically have access to relevant skills based on their specialization:
|
|
782
|
+
|
|
783
|
+
- **Test generators** use: agentic-quality-engineering, api-testing-patterns, tdd-london-chicago
|
|
784
|
+
- **Coverage analyzers** use: agentic-quality-engineering, quality-metrics, risk-based-testing
|
|
785
|
+
- **Flaky test hunters** use: agentic-quality-engineering, exploratory-testing-advanced
|
|
786
|
+
- **Performance testers** use: agentic-quality-engineering, performance-testing, quality-metrics
|
|
787
|
+
- **Security scanners** use: agentic-quality-engineering, security-testing, risk-based-testing
|
|
788
|
+
|
|
789
|
+
---
|
|
790
|
+
|
|
791
|
+
**Related Documentation:**
|
|
792
|
+
- [Agent Reference](agents.md) - All 18 QE agents
|
|
793
|
+
- [Usage Guide](usage.md) - Complete usage examples
|
|
794
|
+
|
|
795
|
+
**Related Policies:**
|
|
796
|
+
- [Release Verification Policy](../policies/release-verification.md)
|