agentic-qe 1.9.3 → 2.0.0

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.
Files changed (271) hide show
  1. package/.claude/agents/qe-api-contract-validator.md +95 -1336
  2. package/.claude/agents/qe-chaos-engineer.md +152 -1211
  3. package/.claude/agents/qe-code-complexity.md +144 -707
  4. package/.claude/agents/qe-coverage-analyzer.md +147 -743
  5. package/.claude/agents/qe-deployment-readiness.md +143 -1496
  6. package/.claude/agents/qe-flaky-test-hunter.md +132 -1529
  7. package/.claude/agents/qe-fleet-commander.md +12 -12
  8. package/.claude/agents/qe-performance-tester.md +150 -886
  9. package/.claude/agents/qe-production-intelligence.md +155 -1396
  10. package/.claude/agents/qe-quality-analyzer.md +6 -6
  11. package/.claude/agents/qe-quality-gate.md +151 -648
  12. package/.claude/agents/qe-regression-risk-analyzer.md +132 -1150
  13. package/.claude/agents/qe-requirements-validator.md +149 -932
  14. package/.claude/agents/qe-security-scanner.md +157 -797
  15. package/.claude/agents/qe-test-data-architect.md +96 -1365
  16. package/.claude/agents/qe-test-executor.md +8 -8
  17. package/.claude/agents/qe-test-generator.md +145 -1540
  18. package/.claude/agents/qe-visual-tester.md +153 -1257
  19. package/.claude/agents/qx-partner.md +235 -0
  20. package/.claude/agents/subagents/qe-code-reviewer.md +40 -136
  21. package/.claude/agents/subagents/qe-coverage-gap-analyzer.md +40 -480
  22. package/.claude/agents/subagents/qe-data-generator.md +41 -125
  23. package/.claude/agents/subagents/qe-flaky-investigator.md +55 -411
  24. package/.claude/agents/subagents/qe-integration-tester.md +53 -141
  25. package/.claude/agents/subagents/qe-performance-validator.md +54 -130
  26. package/.claude/agents/subagents/qe-security-auditor.md +56 -114
  27. package/.claude/agents/subagents/qe-test-data-architect-sub.md +57 -548
  28. package/.claude/agents/subagents/qe-test-implementer.md +58 -551
  29. package/.claude/agents/subagents/qe-test-refactorer.md +65 -722
  30. package/.claude/agents/subagents/qe-test-writer.md +63 -726
  31. package/.claude/skills/skills-manifest.json +632 -0
  32. package/.claude/skills/testability-scoring/README.md +71 -0
  33. package/.claude/skills/testability-scoring/SKILL.md +611 -0
  34. package/.claude/skills/testability-scoring/resources/templates/config.template.js +84 -0
  35. package/.claude/skills/testability-scoring/resources/templates/testability-scoring.spec.template.js +532 -0
  36. package/.claude/skills/testability-scoring/scripts/generate-html-report.js +1007 -0
  37. package/.claude/skills/testability-scoring/scripts/run-assessment.sh +70 -0
  38. package/CHANGELOG.md +116 -0
  39. package/README.md +59 -7
  40. package/config/.env.otel.example +25 -0
  41. package/config/OTEL-QUICK-REFERENCE.md +137 -0
  42. package/config/README-OTEL.md +222 -0
  43. package/config/alerting-rules.yml +518 -0
  44. package/config/docker-compose.otel.yml +187 -0
  45. package/config/grafana/dashboards/agentic-qe-overview.json +286 -0
  46. package/config/grafana/provisioning/dashboards/dashboards.yml +19 -0
  47. package/config/grafana/provisioning/datasources/datasources.yml +53 -0
  48. package/config/otel-collector-config.yaml.example +145 -0
  49. package/config/prometheus.yml.example +106 -0
  50. package/dist/agents/QXPartnerAgent.d.ts +139 -0
  51. package/dist/agents/QXPartnerAgent.d.ts.map +1 -0
  52. package/dist/agents/QXPartnerAgent.js +769 -0
  53. package/dist/agents/QXPartnerAgent.js.map +1 -0
  54. package/dist/agents/index.d.ts +1 -0
  55. package/dist/agents/index.d.ts.map +1 -1
  56. package/dist/agents/index.js +82 -2
  57. package/dist/agents/index.js.map +1 -1
  58. package/dist/alerting/AlertManager.d.ts +120 -0
  59. package/dist/alerting/AlertManager.d.ts.map +1 -0
  60. package/dist/alerting/AlertManager.js +345 -0
  61. package/dist/alerting/AlertManager.js.map +1 -0
  62. package/dist/alerting/FeedbackRouter.d.ts +98 -0
  63. package/dist/alerting/FeedbackRouter.d.ts.map +1 -0
  64. package/dist/alerting/FeedbackRouter.js +331 -0
  65. package/dist/alerting/FeedbackRouter.js.map +1 -0
  66. package/dist/alerting/StrategyApplicator.d.ts +120 -0
  67. package/dist/alerting/StrategyApplicator.d.ts.map +1 -0
  68. package/dist/alerting/StrategyApplicator.js +299 -0
  69. package/dist/alerting/StrategyApplicator.js.map +1 -0
  70. package/dist/alerting/index.d.ts +68 -0
  71. package/dist/alerting/index.d.ts.map +1 -0
  72. package/dist/alerting/index.js +112 -0
  73. package/dist/alerting/index.js.map +1 -0
  74. package/dist/alerting/types.d.ts +118 -0
  75. package/dist/alerting/types.d.ts.map +1 -0
  76. package/dist/alerting/types.js +11 -0
  77. package/dist/alerting/types.js.map +1 -0
  78. package/dist/cli/commands/debug/agent.d.ts.map +1 -1
  79. package/dist/cli/commands/debug/agent.js +19 -6
  80. package/dist/cli/commands/debug/agent.js.map +1 -1
  81. package/dist/cli/commands/debug/health-check.js +20 -7
  82. package/dist/cli/commands/debug/health-check.js.map +1 -1
  83. package/dist/cli/commands/init-claude-md-template.d.ts +1 -0
  84. package/dist/cli/commands/init-claude-md-template.d.ts.map +1 -1
  85. package/dist/cli/commands/init-claude-md-template.js +4 -3
  86. package/dist/cli/commands/init-claude-md-template.js.map +1 -1
  87. package/dist/cli/commands/workflow/cancel.d.ts.map +1 -1
  88. package/dist/cli/commands/workflow/cancel.js +4 -3
  89. package/dist/cli/commands/workflow/cancel.js.map +1 -1
  90. package/dist/cli/commands/workflow/list.d.ts.map +1 -1
  91. package/dist/cli/commands/workflow/list.js +4 -3
  92. package/dist/cli/commands/workflow/list.js.map +1 -1
  93. package/dist/cli/commands/workflow/pause.d.ts.map +1 -1
  94. package/dist/cli/commands/workflow/pause.js +4 -3
  95. package/dist/cli/commands/workflow/pause.js.map +1 -1
  96. package/dist/cli/init/claude-config.d.ts.map +1 -1
  97. package/dist/cli/init/claude-config.js +13 -13
  98. package/dist/cli/init/claude-config.js.map +1 -1
  99. package/dist/cli/init/claude-md.d.ts.map +1 -1
  100. package/dist/cli/init/claude-md.js +44 -2
  101. package/dist/cli/init/claude-md.js.map +1 -1
  102. package/dist/cli/init/database-init.js +1 -1
  103. package/dist/cli/init/index.d.ts.map +1 -1
  104. package/dist/cli/init/index.js +13 -6
  105. package/dist/cli/init/index.js.map +1 -1
  106. package/dist/cli/init/skills.d.ts.map +1 -1
  107. package/dist/cli/init/skills.js +2 -1
  108. package/dist/cli/init/skills.js.map +1 -1
  109. package/dist/core/memory/AgentDBIntegration.d.ts +24 -6
  110. package/dist/core/memory/AgentDBIntegration.d.ts.map +1 -1
  111. package/dist/core/memory/AgentDBIntegration.js +66 -10
  112. package/dist/core/memory/AgentDBIntegration.js.map +1 -1
  113. package/dist/core/memory/IPatternStore.d.ts +209 -0
  114. package/dist/core/memory/IPatternStore.d.ts.map +1 -0
  115. package/dist/core/memory/IPatternStore.js +15 -0
  116. package/dist/core/memory/IPatternStore.js.map +1 -0
  117. package/dist/core/memory/MigrationTools.d.ts +192 -0
  118. package/dist/core/memory/MigrationTools.d.ts.map +1 -0
  119. package/dist/core/memory/MigrationTools.js +615 -0
  120. package/dist/core/memory/MigrationTools.js.map +1 -0
  121. package/dist/core/memory/NeuralEnhancement.d.ts +154 -0
  122. package/dist/core/memory/NeuralEnhancement.d.ts.map +1 -0
  123. package/dist/core/memory/NeuralEnhancement.js +598 -0
  124. package/dist/core/memory/NeuralEnhancement.js.map +1 -0
  125. package/dist/core/memory/PatternStoreFactory.d.ts +143 -0
  126. package/dist/core/memory/PatternStoreFactory.d.ts.map +1 -0
  127. package/dist/core/memory/PatternStoreFactory.js +370 -0
  128. package/dist/core/memory/PatternStoreFactory.js.map +1 -0
  129. package/dist/core/memory/RealAgentDBAdapter.d.ts +1 -0
  130. package/dist/core/memory/RealAgentDBAdapter.d.ts.map +1 -1
  131. package/dist/core/memory/RealAgentDBAdapter.js +28 -20
  132. package/dist/core/memory/RealAgentDBAdapter.js.map +1 -1
  133. package/dist/core/memory/RuVectorPatternStore.d.ts +198 -0
  134. package/dist/core/memory/RuVectorPatternStore.d.ts.map +1 -0
  135. package/dist/core/memory/RuVectorPatternStore.js +605 -0
  136. package/dist/core/memory/RuVectorPatternStore.js.map +1 -0
  137. package/dist/core/memory/SelfHealingMonitor.d.ts +186 -0
  138. package/dist/core/memory/SelfHealingMonitor.d.ts.map +1 -0
  139. package/dist/core/memory/SelfHealingMonitor.js +451 -0
  140. package/dist/core/memory/SelfHealingMonitor.js.map +1 -0
  141. package/dist/core/memory/SwarmMemoryManager.d.ts +62 -0
  142. package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
  143. package/dist/core/memory/SwarmMemoryManager.js +97 -0
  144. package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
  145. package/dist/core/memory/UnifiedMemoryCoordinator.d.ts +341 -0
  146. package/dist/core/memory/UnifiedMemoryCoordinator.d.ts.map +1 -0
  147. package/dist/core/memory/UnifiedMemoryCoordinator.js +986 -0
  148. package/dist/core/memory/UnifiedMemoryCoordinator.js.map +1 -0
  149. package/dist/core/memory/index.d.ts +16 -0
  150. package/dist/core/memory/index.d.ts.map +1 -1
  151. package/dist/core/memory/index.js +58 -1
  152. package/dist/core/memory/index.js.map +1 -1
  153. package/dist/core/optimization/SwarmOptimizer.d.ts +185 -0
  154. package/dist/core/optimization/SwarmOptimizer.d.ts.map +1 -0
  155. package/dist/core/optimization/SwarmOptimizer.js +631 -0
  156. package/dist/core/optimization/SwarmOptimizer.js.map +1 -0
  157. package/dist/core/optimization/index.d.ts +9 -0
  158. package/dist/core/optimization/index.d.ts.map +1 -0
  159. package/dist/core/optimization/index.js +25 -0
  160. package/dist/core/optimization/index.js.map +1 -0
  161. package/dist/core/optimization/types.d.ts +53 -0
  162. package/dist/core/optimization/types.d.ts.map +1 -0
  163. package/dist/core/optimization/types.js +6 -0
  164. package/dist/core/optimization/types.js.map +1 -0
  165. package/dist/core/orchestration/PriorityQueue.d.ts +54 -0
  166. package/dist/core/orchestration/PriorityQueue.d.ts.map +1 -0
  167. package/dist/core/orchestration/PriorityQueue.js +122 -0
  168. package/dist/core/orchestration/PriorityQueue.js.map +1 -0
  169. package/dist/core/orchestration/WorkflowOrchestrator.d.ts +176 -0
  170. package/dist/core/orchestration/WorkflowOrchestrator.d.ts.map +1 -0
  171. package/dist/core/orchestration/WorkflowOrchestrator.js +813 -0
  172. package/dist/core/orchestration/WorkflowOrchestrator.js.map +1 -0
  173. package/dist/core/orchestration/index.d.ts +7 -0
  174. package/dist/core/orchestration/index.d.ts.map +1 -0
  175. package/dist/core/orchestration/index.js +11 -0
  176. package/dist/core/orchestration/index.js.map +1 -0
  177. package/dist/core/orchestration/types.d.ts +96 -0
  178. package/dist/core/orchestration/types.d.ts.map +1 -0
  179. package/dist/core/orchestration/types.js +6 -0
  180. package/dist/core/orchestration/types.js.map +1 -0
  181. package/dist/core/skills/DynamicSkillLoader.d.ts +96 -0
  182. package/dist/core/skills/DynamicSkillLoader.d.ts.map +1 -0
  183. package/dist/core/skills/DynamicSkillLoader.js +353 -0
  184. package/dist/core/skills/DynamicSkillLoader.js.map +1 -0
  185. package/dist/core/skills/types.d.ts +118 -0
  186. package/dist/core/skills/types.d.ts.map +1 -0
  187. package/dist/core/skills/types.js +7 -0
  188. package/dist/core/skills/types.js.map +1 -0
  189. package/dist/core/transport/QUICTransport.d.ts +320 -0
  190. package/dist/core/transport/QUICTransport.d.ts.map +1 -0
  191. package/dist/core/transport/QUICTransport.js +711 -0
  192. package/dist/core/transport/QUICTransport.js.map +1 -0
  193. package/dist/core/transport/index.d.ts +40 -0
  194. package/dist/core/transport/index.d.ts.map +1 -0
  195. package/dist/core/transport/index.js +46 -0
  196. package/dist/core/transport/index.js.map +1 -0
  197. package/dist/core/transport/quic-loader.d.ts +123 -0
  198. package/dist/core/transport/quic-loader.d.ts.map +1 -0
  199. package/dist/core/transport/quic-loader.js +293 -0
  200. package/dist/core/transport/quic-loader.js.map +1 -0
  201. package/dist/core/transport/quic.d.ts +154 -0
  202. package/dist/core/transport/quic.d.ts.map +1 -0
  203. package/dist/core/transport/quic.js +214 -0
  204. package/dist/core/transport/quic.js.map +1 -0
  205. package/dist/mcp/services/AgentRegistry.d.ts.map +1 -1
  206. package/dist/mcp/services/AgentRegistry.js +4 -1
  207. package/dist/mcp/services/AgentRegistry.js.map +1 -1
  208. package/dist/reasoning/RuVectorReasoningAdapter.d.ts +232 -0
  209. package/dist/reasoning/RuVectorReasoningAdapter.d.ts.map +1 -0
  210. package/dist/reasoning/RuVectorReasoningAdapter.js +585 -0
  211. package/dist/reasoning/RuVectorReasoningAdapter.js.map +1 -0
  212. package/dist/reasoning/index.d.ts +2 -0
  213. package/dist/reasoning/index.d.ts.map +1 -1
  214. package/dist/reasoning/index.js +6 -1
  215. package/dist/reasoning/index.js.map +1 -1
  216. package/dist/reporting/ResultAggregator.d.ts +107 -0
  217. package/dist/reporting/ResultAggregator.d.ts.map +1 -0
  218. package/dist/reporting/ResultAggregator.js +435 -0
  219. package/dist/reporting/ResultAggregator.js.map +1 -0
  220. package/dist/reporting/index.d.ts +48 -0
  221. package/dist/reporting/index.d.ts.map +1 -0
  222. package/dist/reporting/index.js +154 -0
  223. package/dist/reporting/index.js.map +1 -0
  224. package/dist/reporting/reporters/ControlLoopReporter.d.ts +128 -0
  225. package/dist/reporting/reporters/ControlLoopReporter.d.ts.map +1 -0
  226. package/dist/reporting/reporters/ControlLoopReporter.js +417 -0
  227. package/dist/reporting/reporters/ControlLoopReporter.js.map +1 -0
  228. package/dist/reporting/reporters/HumanReadableReporter.d.ts +140 -0
  229. package/dist/reporting/reporters/HumanReadableReporter.d.ts.map +1 -0
  230. package/dist/reporting/reporters/HumanReadableReporter.js +524 -0
  231. package/dist/reporting/reporters/HumanReadableReporter.js.map +1 -0
  232. package/dist/reporting/reporters/JSONReporter.d.ts +193 -0
  233. package/dist/reporting/reporters/JSONReporter.d.ts.map +1 -0
  234. package/dist/reporting/reporters/JSONReporter.js +324 -0
  235. package/dist/reporting/reporters/JSONReporter.js.map +1 -0
  236. package/dist/reporting/reporters/index.d.ts +14 -0
  237. package/dist/reporting/reporters/index.d.ts.map +1 -0
  238. package/dist/reporting/reporters/index.js +19 -0
  239. package/dist/reporting/reporters/index.js.map +1 -0
  240. package/dist/reporting/types.d.ts +427 -0
  241. package/dist/reporting/types.d.ts.map +1 -0
  242. package/dist/reporting/types.js +12 -0
  243. package/dist/reporting/types.js.map +1 -0
  244. package/dist/types/index.d.ts +2 -1
  245. package/dist/types/index.d.ts.map +1 -1
  246. package/dist/types/index.js +2 -0
  247. package/dist/types/index.js.map +1 -1
  248. package/dist/types/qx.d.ts +397 -0
  249. package/dist/types/qx.d.ts.map +1 -0
  250. package/dist/types/qx.js +71 -0
  251. package/dist/types/qx.js.map +1 -0
  252. package/dist/visualization/api/RestEndpoints.js +1 -1
  253. package/dist/visualization/api/RestEndpoints.js.map +1 -1
  254. package/dist/visualization/api/WebSocketServer.d.ts +44 -0
  255. package/dist/visualization/api/WebSocketServer.d.ts.map +1 -1
  256. package/dist/visualization/api/WebSocketServer.js +144 -23
  257. package/dist/visualization/api/WebSocketServer.js.map +1 -1
  258. package/dist/visualization/core/DataTransformer.d.ts +10 -0
  259. package/dist/visualization/core/DataTransformer.d.ts.map +1 -1
  260. package/dist/visualization/core/DataTransformer.js +60 -5
  261. package/dist/visualization/core/DataTransformer.js.map +1 -1
  262. package/dist/visualization/emit-event.d.ts +75 -0
  263. package/dist/visualization/emit-event.d.ts.map +1 -0
  264. package/dist/visualization/emit-event.js +213 -0
  265. package/dist/visualization/emit-event.js.map +1 -0
  266. package/dist/visualization/index.d.ts +1 -0
  267. package/dist/visualization/index.d.ts.map +1 -1
  268. package/dist/visualization/index.js +7 -1
  269. package/dist/visualization/index.js.map +1 -1
  270. package/docs/reference/skills.md +63 -1
  271. package/package.json +12 -4
@@ -0,0 +1,632 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "generated": "2025-12-01T20:00:00.000Z",
4
+ "totalSkills": 41,
5
+ "description": "Agentic QE Fleet skills manifest - Quality Engineering focused skills only. Claude Flow platform skills are managed separately.",
6
+ "categories": {
7
+ "qe-core": {
8
+ "description": "Foundational quality engineering philosophy and agentic principles",
9
+ "priority": "critical",
10
+ "autoLoad": true,
11
+ "skills": ["agentic-quality-engineering", "holistic-testing-pact"]
12
+ },
13
+ "testing-methodologies": {
14
+ "description": "Core testing approaches and frameworks",
15
+ "priority": "high",
16
+ "skills": ["tdd-london-chicago", "context-driven-testing", "exploratory-testing-advanced", "risk-based-testing"]
17
+ },
18
+ "test-design": {
19
+ "description": "Test design techniques and patterns",
20
+ "priority": "high",
21
+ "skills": ["api-testing-patterns", "test-design-techniques", "test-data-management", "testability-scoring"]
22
+ },
23
+ "specialized-testing": {
24
+ "description": "Domain-specific testing disciplines",
25
+ "priority": "medium",
26
+ "skills": [
27
+ "security-testing",
28
+ "performance-testing",
29
+ "accessibility-testing",
30
+ "mobile-testing",
31
+ "visual-testing-advanced",
32
+ "localization-testing",
33
+ "compatibility-testing",
34
+ "compliance-testing",
35
+ "database-testing",
36
+ "contract-testing",
37
+ "chaos-engineering-resilience",
38
+ "mutation-testing",
39
+ "regression-testing"
40
+ ]
41
+ },
42
+ "analysis-review": {
43
+ "description": "Code and quality analysis skills",
44
+ "priority": "medium",
45
+ "skills": [
46
+ "code-review-quality",
47
+ "brutal-honesty-review",
48
+ "sherlock-review",
49
+ "six-thinking-hats",
50
+ "quality-metrics",
51
+ "verification-quality"
52
+ ]
53
+ },
54
+ "infrastructure": {
55
+ "description": "CI/CD, deployment, and test infrastructure",
56
+ "priority": "high",
57
+ "skills": [
58
+ "cicd-pipeline-qe-orchestrator",
59
+ "shift-left-testing",
60
+ "shift-right-testing",
61
+ "test-automation-strategy",
62
+ "test-environment-management",
63
+ "test-reporting-analytics"
64
+ ]
65
+ },
66
+ "development-practices": {
67
+ "description": "Agile development and collaboration practices",
68
+ "priority": "medium",
69
+ "skills": [
70
+ "xp-practices",
71
+ "pair-programming",
72
+ "refactoring-patterns",
73
+ "consultancy-practices",
74
+ "technical-writing"
75
+ ]
76
+ },
77
+ "bug-management": {
78
+ "description": "Bug reporting and defect management",
79
+ "priority": "medium",
80
+ "skills": ["bug-reporting-excellence"]
81
+ }
82
+ },
83
+ "skills": {
84
+ "agentic-quality-engineering": {
85
+ "id": "agentic-quality-engineering",
86
+ "name": "Agentic Quality Engineering",
87
+ "description": "Core foundational skill for all 18 QE agents with PACT principles (Proactive, Autonomous, Collaborative, Targeted).",
88
+ "category": "qe-core",
89
+ "priority": "critical",
90
+ "file": "agentic-quality-engineering/SKILL.md",
91
+ "tokenEstimate": 4200,
92
+ "tags": ["agents", "pact", "core", "foundation", "autonomous-testing"],
93
+ "dependencies": [],
94
+ "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"]
95
+ },
96
+ "holistic-testing-pact": {
97
+ "id": "holistic-testing-pact",
98
+ "name": "Holistic Testing with PACT Principles",
99
+ "description": "Holistic Testing Model evolved with PACT for whole-team quality in agentic systems.",
100
+ "category": "qe-core",
101
+ "priority": "critical",
102
+ "file": "holistic-testing-pact/SKILL.md",
103
+ "tokenEstimate": 1500,
104
+ "tags": ["pact", "holistic", "whole-team", "testing-quadrants"],
105
+ "dependencies": ["agentic-quality-engineering"],
106
+ "agents": ["qe-coverage-analyzer", "qe-quality-gate", "qe-fleet-commander"]
107
+ },
108
+ "tdd-london-chicago": {
109
+ "id": "tdd-london-chicago",
110
+ "name": "TDD London & Chicago Schools",
111
+ "description": "Test-Driven Development with both London (mockist/outside-in) and Chicago (classicist/inside-out) approaches.",
112
+ "category": "testing-methodologies",
113
+ "priority": "high",
114
+ "file": "tdd-london-chicago/SKILL.md",
115
+ "tokenEstimate": 2800,
116
+ "tags": ["tdd", "unit-testing", "mocking", "design"],
117
+ "dependencies": ["agentic-quality-engineering"],
118
+ "agents": ["qe-test-generator", "qe-test-executor"]
119
+ },
120
+ "context-driven-testing": {
121
+ "id": "context-driven-testing",
122
+ "name": "Context-Driven Testing",
123
+ "description": "Apply context-driven principles where practices are chosen based on project context, not universal best practices.",
124
+ "category": "testing-methodologies",
125
+ "priority": "high",
126
+ "file": "context-driven-testing/SKILL.md",
127
+ "tokenEstimate": 1800,
128
+ "tags": ["context-driven", "philosophy", "principles"],
129
+ "dependencies": ["agentic-quality-engineering"],
130
+ "agents": ["qe-requirements-validator", "qe-quality-gate"]
131
+ },
132
+ "exploratory-testing-advanced": {
133
+ "id": "exploratory-testing-advanced",
134
+ "name": "Advanced Exploratory Testing",
135
+ "description": "Session-Based Test Management (SBTM), RST heuristics, and test tours for discovering unknown quality risks.",
136
+ "category": "testing-methodologies",
137
+ "priority": "high",
138
+ "file": "exploratory-testing-advanced/SKILL.md",
139
+ "tokenEstimate": 2200,
140
+ "tags": ["exploratory", "sbtm", "heuristics", "manual-testing"],
141
+ "dependencies": ["context-driven-testing"],
142
+ "agents": ["qe-flaky-test-hunter", "qe-production-intelligence"]
143
+ },
144
+ "risk-based-testing": {
145
+ "id": "risk-based-testing",
146
+ "name": "Risk-Based Testing",
147
+ "description": "Focus testing effort on highest-risk areas using risk assessment, prioritization, and coverage strategies.",
148
+ "category": "testing-methodologies",
149
+ "priority": "high",
150
+ "file": "risk-based-testing/SKILL.md",
151
+ "tokenEstimate": 1900,
152
+ "tags": ["risk", "prioritization", "strategy"],
153
+ "dependencies": ["context-driven-testing"],
154
+ "agents": ["qe-regression-risk-analyzer", "qe-deployment-readiness", "qe-quality-gate"]
155
+ },
156
+ "api-testing-patterns": {
157
+ "id": "api-testing-patterns",
158
+ "name": "API Testing Patterns",
159
+ "description": "Comprehensive REST/GraphQL API testing patterns including contract testing, integration testing, and API validation.",
160
+ "category": "test-design",
161
+ "priority": "high",
162
+ "file": "api-testing-patterns/SKILL.md",
163
+ "tokenEstimate": 2500,
164
+ "tags": ["api", "rest", "graphql", "contract-testing"],
165
+ "dependencies": ["agentic-quality-engineering"],
166
+ "agents": ["qe-test-generator", "qe-api-contract-validator"]
167
+ },
168
+ "test-design-techniques": {
169
+ "id": "test-design-techniques",
170
+ "name": "Test Design Techniques",
171
+ "description": "Systematic test design using equivalence partitioning, boundary value analysis, decision tables, state transition testing.",
172
+ "category": "test-design",
173
+ "priority": "high",
174
+ "file": "test-design-techniques/SKILL.md",
175
+ "tokenEstimate": 2400,
176
+ "tags": ["test-design", "techniques", "systematic-testing"],
177
+ "dependencies": ["agentic-quality-engineering"],
178
+ "agents": ["qe-test-generator"]
179
+ },
180
+ "test-data-management": {
181
+ "id": "test-data-management",
182
+ "name": "Test Data Management",
183
+ "description": "Generate, manage, and maintain realistic test data at scale (10k+ records/sec) with synthetic data generation.",
184
+ "category": "test-design",
185
+ "priority": "high",
186
+ "file": "test-data-management/SKILL.md",
187
+ "tokenEstimate": 2000,
188
+ "tags": ["test-data", "data-generation", "synthetic-data"],
189
+ "dependencies": ["agentic-quality-engineering"],
190
+ "agents": ["qe-test-data-architect"]
191
+ },
192
+ "testability-scoring": {
193
+ "id": "testability-scoring",
194
+ "name": "Testability Scoring",
195
+ "description": "Evaluate software testability using 10 principles with Playwright-based automated scoring (0-100 scale).",
196
+ "category": "test-design",
197
+ "priority": "high",
198
+ "file": "testability-scoring/SKILL.md",
199
+ "tokenEstimate": 5500,
200
+ "tags": ["testability", "scoring", "playwright", "metrics", "community-contributed"],
201
+ "dependencies": ["agentic-quality-engineering", "quality-metrics"],
202
+ "agents": ["qe-quality-analyzer", "qe-coverage-analyzer"],
203
+ "metadata": {
204
+ "author": "@fndlalit",
205
+ "authorUrl": "https://github.com/fndlalit",
206
+ "source": "https://github.com/fndlalit/testability-scorer"
207
+ }
208
+ },
209
+ "security-testing": {
210
+ "id": "security-testing",
211
+ "name": "Security Testing",
212
+ "description": "Test for vulnerabilities using OWASP principles, SAST/DAST scanning, penetration testing techniques.",
213
+ "category": "specialized-testing",
214
+ "priority": "high",
215
+ "file": "security-testing/SKILL.md",
216
+ "tokenEstimate": 2400,
217
+ "tags": ["security", "owasp", "sast", "dast", "penetration-testing"],
218
+ "dependencies": ["agentic-quality-engineering"],
219
+ "agents": ["qe-security-scanner"]
220
+ },
221
+ "performance-testing": {
222
+ "id": "performance-testing",
223
+ "name": "Performance Testing",
224
+ "description": "Load, stress, spike, and endurance testing with k6, JMeter, Gatling. Performance optimization strategies.",
225
+ "category": "specialized-testing",
226
+ "priority": "high",
227
+ "file": "performance-testing/SKILL.md",
228
+ "tokenEstimate": 2600,
229
+ "tags": ["performance", "load-testing", "k6", "jmeter", "optimization"],
230
+ "dependencies": ["agentic-quality-engineering"],
231
+ "agents": ["qe-performance-tester"]
232
+ },
233
+ "accessibility-testing": {
234
+ "id": "accessibility-testing",
235
+ "name": "Accessibility Testing",
236
+ "description": "WCAG 2.2 compliance testing, screen reader validation, and inclusive design verification for ADA/Section 508 compliance.",
237
+ "category": "specialized-testing",
238
+ "priority": "medium",
239
+ "file": "accessibility-testing/SKILL.md",
240
+ "tokenEstimate": 2200,
241
+ "tags": ["accessibility", "wcag", "a11y", "compliance"],
242
+ "dependencies": ["agentic-quality-engineering"],
243
+ "agents": ["qe-quality-analyzer"]
244
+ },
245
+ "mobile-testing": {
246
+ "id": "mobile-testing",
247
+ "name": "Mobile Testing",
248
+ "description": "iOS/Android testing including gestures, sensors, permissions, device fragmentation, and performance across 1000+ device variants.",
249
+ "category": "specialized-testing",
250
+ "priority": "medium",
251
+ "file": "mobile-testing/SKILL.md",
252
+ "tokenEstimate": 2500,
253
+ "tags": ["mobile", "ios", "android", "device-testing"],
254
+ "dependencies": ["agentic-quality-engineering"],
255
+ "agents": ["qe-test-executor", "qe-performance-tester"]
256
+ },
257
+ "visual-testing-advanced": {
258
+ "id": "visual-testing-advanced",
259
+ "name": "Advanced Visual Testing",
260
+ "description": "Visual regression testing with AI-powered image comparison, pixel-perfect validation, and cross-browser consistency.",
261
+ "category": "specialized-testing",
262
+ "priority": "medium",
263
+ "file": "visual-testing-advanced/SKILL.md",
264
+ "tokenEstimate": 2100,
265
+ "tags": ["visual-testing", "regression", "ui-testing"],
266
+ "dependencies": ["agentic-quality-engineering"],
267
+ "agents": ["qe-visual-tester"]
268
+ },
269
+ "localization-testing": {
270
+ "id": "localization-testing",
271
+ "name": "Localization Testing",
272
+ "description": "Internationalization (i18n) and localization (l10n) testing for global products including translations, locale formats, RTL languages.",
273
+ "category": "specialized-testing",
274
+ "priority": "medium",
275
+ "file": "localization-testing/SKILL.md",
276
+ "tokenEstimate": 1800,
277
+ "tags": ["localization", "i18n", "l10n", "globalization"],
278
+ "dependencies": ["agentic-quality-engineering"],
279
+ "agents": ["qe-test-executor"]
280
+ },
281
+ "compatibility-testing": {
282
+ "id": "compatibility-testing",
283
+ "name": "Compatibility Testing",
284
+ "description": "Cross-browser, cross-platform, and cross-device compatibility testing ensuring consistent experience.",
285
+ "category": "specialized-testing",
286
+ "priority": "medium",
287
+ "file": "compatibility-testing/SKILL.md",
288
+ "tokenEstimate": 1700,
289
+ "tags": ["compatibility", "cross-browser", "cross-platform"],
290
+ "dependencies": ["agentic-quality-engineering"],
291
+ "agents": ["qe-test-executor"]
292
+ },
293
+ "compliance-testing": {
294
+ "id": "compliance-testing",
295
+ "name": "Compliance Testing",
296
+ "description": "Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, PCI-DSS and industry-specific regulations.",
297
+ "category": "specialized-testing",
298
+ "priority": "medium",
299
+ "file": "compliance-testing/SKILL.md",
300
+ "tokenEstimate": 2000,
301
+ "tags": ["compliance", "gdpr", "hipaa", "regulations"],
302
+ "dependencies": ["security-testing"],
303
+ "agents": ["qe-security-scanner", "qe-quality-gate"]
304
+ },
305
+ "database-testing": {
306
+ "id": "database-testing",
307
+ "name": "Database Testing",
308
+ "description": "Database schema validation, data integrity testing, migration testing, transaction isolation, and query performance.",
309
+ "category": "specialized-testing",
310
+ "priority": "medium",
311
+ "file": "database-testing/SKILL.md",
312
+ "tokenEstimate": 1900,
313
+ "tags": ["database", "sql", "data-integrity", "migrations"],
314
+ "dependencies": ["agentic-quality-engineering"],
315
+ "agents": ["qe-test-executor"]
316
+ },
317
+ "contract-testing": {
318
+ "id": "contract-testing",
319
+ "name": "Contract Testing",
320
+ "description": "Consumer-driven contract testing for microservices using Pact, schema validation, API versioning, and backward compatibility.",
321
+ "category": "specialized-testing",
322
+ "priority": "medium",
323
+ "file": "contract-testing/SKILL.md",
324
+ "tokenEstimate": 2100,
325
+ "tags": ["contract-testing", "pact", "microservices", "api"],
326
+ "dependencies": ["api-testing-patterns"],
327
+ "agents": ["qe-api-contract-validator"]
328
+ },
329
+ "chaos-engineering-resilience": {
330
+ "id": "chaos-engineering-resilience",
331
+ "name": "Chaos Engineering & Resilience",
332
+ "description": "Controlled failure injection, resilience testing, and system recovery validation for distributed systems.",
333
+ "category": "specialized-testing",
334
+ "priority": "medium",
335
+ "file": "chaos-engineering-resilience/SKILL.md",
336
+ "tokenEstimate": 2200,
337
+ "tags": ["chaos-engineering", "resilience", "fault-injection"],
338
+ "dependencies": ["performance-testing"],
339
+ "agents": ["qe-chaos-engineer"]
340
+ },
341
+ "mutation-testing": {
342
+ "id": "mutation-testing",
343
+ "name": "Mutation Testing",
344
+ "description": "Test quality validation through mutation testing, assessing test suite effectiveness by introducing code mutations.",
345
+ "category": "specialized-testing",
346
+ "priority": "medium",
347
+ "file": "mutation-testing/SKILL.md",
348
+ "tokenEstimate": 1800,
349
+ "tags": ["mutation-testing", "test-quality", "coverage"],
350
+ "dependencies": ["agentic-quality-engineering"],
351
+ "agents": ["qe-coverage-analyzer"]
352
+ },
353
+ "regression-testing": {
354
+ "id": "regression-testing",
355
+ "name": "Regression Testing",
356
+ "description": "Strategic regression testing with test selection, impact analysis, and continuous regression management.",
357
+ "category": "specialized-testing",
358
+ "priority": "medium",
359
+ "file": "regression-testing/SKILL.md",
360
+ "tokenEstimate": 1900,
361
+ "tags": ["regression", "test-selection", "impact-analysis"],
362
+ "dependencies": ["agentic-quality-engineering"],
363
+ "agents": ["qe-regression-risk-analyzer"]
364
+ },
365
+ "code-review-quality": {
366
+ "id": "code-review-quality",
367
+ "name": "Code Review Quality",
368
+ "description": "Context-driven code reviews focusing on quality, testability, and maintainability.",
369
+ "category": "analysis-review",
370
+ "priority": "medium",
371
+ "file": "code-review-quality/SKILL.md",
372
+ "tokenEstimate": 2000,
373
+ "tags": ["code-review", "quality", "maintainability"],
374
+ "dependencies": ["context-driven-testing"],
375
+ "agents": ["qe-quality-analyzer"]
376
+ },
377
+ "brutal-honesty-review": {
378
+ "id": "brutal-honesty-review",
379
+ "name": "Brutal Honesty Review",
380
+ "description": "Unvarnished technical criticism combining Linus Torvalds' precision, Gordon Ramsay's standards, and James Bach's BS-detection.",
381
+ "category": "analysis-review",
382
+ "priority": "medium",
383
+ "file": "brutal-honesty-review/SKILL.md",
384
+ "tokenEstimate": 2100,
385
+ "tags": ["review", "criticism", "quality-assessment"],
386
+ "dependencies": ["code-review-quality"],
387
+ "agents": ["qe-quality-analyzer"]
388
+ },
389
+ "sherlock-review": {
390
+ "id": "sherlock-review",
391
+ "name": "Sherlock Review",
392
+ "description": "Detective-style investigative code review using deductive reasoning, pattern recognition, and forensic analysis.",
393
+ "category": "analysis-review",
394
+ "priority": "medium",
395
+ "file": "sherlock-review/SKILL.md",
396
+ "tokenEstimate": 1800,
397
+ "tags": ["review", "investigation", "forensics"],
398
+ "dependencies": ["code-review-quality"],
399
+ "agents": ["qe-flaky-test-hunter", "qe-quality-analyzer"]
400
+ },
401
+ "six-thinking-hats": {
402
+ "id": "six-thinking-hats",
403
+ "name": "Six Thinking Hats",
404
+ "description": "Structured parallel thinking technique using six perspectives (facts, emotions, cautions, benefits, creativity, process).",
405
+ "category": "analysis-review",
406
+ "priority": "medium",
407
+ "file": "six-thinking-hats/SKILL.md",
408
+ "tokenEstimate": 2300,
409
+ "tags": ["thinking", "analysis", "perspectives", "decision-making"],
410
+ "dependencies": ["context-driven-testing"],
411
+ "agents": ["qe-requirements-validator", "qe-quality-gate"]
412
+ },
413
+ "quality-metrics": {
414
+ "id": "quality-metrics",
415
+ "name": "Quality Metrics",
416
+ "description": "Measure quality effectively with actionable metrics, dashboards, KPIs, and test effectiveness evaluation.",
417
+ "category": "analysis-review",
418
+ "priority": "medium",
419
+ "file": "quality-metrics/SKILL.md",
420
+ "tokenEstimate": 1900,
421
+ "tags": ["metrics", "kpi", "measurement", "dashboards"],
422
+ "dependencies": ["agentic-quality-engineering"],
423
+ "agents": ["qe-quality-analyzer", "qe-coverage-analyzer"]
424
+ },
425
+ "verification-quality": {
426
+ "id": "verification-quality",
427
+ "name": "Verification Quality",
428
+ "description": "Systematic verification approaches ensuring requirements are met and quality standards maintained.",
429
+ "category": "analysis-review",
430
+ "priority": "medium",
431
+ "file": "verification-quality/SKILL.md",
432
+ "tokenEstimate": 1700,
433
+ "tags": ["verification", "validation", "requirements"],
434
+ "dependencies": ["agentic-quality-engineering"],
435
+ "agents": ["qe-requirements-validator", "qe-quality-gate"]
436
+ },
437
+ "cicd-pipeline-qe-orchestrator": {
438
+ "id": "cicd-pipeline-qe-orchestrator",
439
+ "name": "CI/CD Pipeline QE Orchestrator",
440
+ "description": "Orchestrate comprehensive quality engineering across CI/CD phases by intelligently selecting QE skills and coordinating agents.",
441
+ "category": "infrastructure",
442
+ "priority": "high",
443
+ "file": "cicd-pipeline-qe-orchestrator/SKILL.md",
444
+ "tokenEstimate": 3200,
445
+ "tags": ["cicd", "pipeline", "orchestration", "automation"],
446
+ "dependencies": ["agentic-quality-engineering", "holistic-testing-pact"],
447
+ "agents": ["qe-fleet-commander", "qe-deployment-readiness"]
448
+ },
449
+ "shift-left-testing": {
450
+ "id": "shift-left-testing",
451
+ "name": "Shift-Left Testing",
452
+ "description": "Move testing earlier in development lifecycle with early validation, TDD, BDD, and continuous testing.",
453
+ "category": "infrastructure",
454
+ "priority": "high",
455
+ "file": "shift-left-testing/SKILL.md",
456
+ "tokenEstimate": 1700,
457
+ "tags": ["shift-left", "early-testing", "prevention"],
458
+ "dependencies": ["agentic-quality-engineering"],
459
+ "agents": ["qe-requirements-validator", "qe-test-generator"]
460
+ },
461
+ "shift-right-testing": {
462
+ "id": "shift-right-testing",
463
+ "name": "Shift-Right Testing",
464
+ "description": "Production monitoring, observability, feature flags, canary deployments, and production testing strategies.",
465
+ "category": "infrastructure",
466
+ "priority": "high",
467
+ "file": "shift-right-testing/SKILL.md",
468
+ "tokenEstimate": 1900,
469
+ "tags": ["shift-right", "production", "monitoring", "observability"],
470
+ "dependencies": ["shift-left-testing"],
471
+ "agents": ["qe-production-intelligence", "qe-deployment-readiness"]
472
+ },
473
+ "test-automation-strategy": {
474
+ "id": "test-automation-strategy",
475
+ "name": "Test Automation Strategy",
476
+ "description": "Strategic test automation planning, framework selection, test pyramid, and ROI optimization.",
477
+ "category": "infrastructure",
478
+ "priority": "high",
479
+ "file": "test-automation-strategy/SKILL.md",
480
+ "tokenEstimate": 2200,
481
+ "tags": ["automation", "strategy", "test-pyramid"],
482
+ "dependencies": ["agentic-quality-engineering"],
483
+ "agents": ["qe-test-generator", "qe-fleet-commander"]
484
+ },
485
+ "test-environment-management": {
486
+ "id": "test-environment-management",
487
+ "name": "Test Environment Management",
488
+ "description": "Manage test environments, infrastructure as code, containerization, and environment provisioning.",
489
+ "category": "infrastructure",
490
+ "priority": "medium",
491
+ "file": "test-environment-management/SKILL.md",
492
+ "tokenEstimate": 1800,
493
+ "tags": ["environment", "infrastructure", "docker", "kubernetes"],
494
+ "dependencies": ["test-automation-strategy"],
495
+ "agents": ["qe-test-executor"]
496
+ },
497
+ "test-reporting-analytics": {
498
+ "id": "test-reporting-analytics",
499
+ "name": "Test Reporting & Analytics",
500
+ "description": "Comprehensive test reporting, analytics dashboards, trend analysis, and stakeholder communication.",
501
+ "category": "infrastructure",
502
+ "priority": "medium",
503
+ "file": "test-reporting-analytics/SKILL.md",
504
+ "tokenEstimate": 1700,
505
+ "tags": ["reporting", "analytics", "dashboards"],
506
+ "dependencies": ["quality-metrics"],
507
+ "agents": ["qe-quality-analyzer"]
508
+ },
509
+ "xp-practices": {
510
+ "id": "xp-practices",
511
+ "name": "Extreme Programming (XP) Practices",
512
+ "description": "XP practices including pair programming, continuous integration, refactoring, and collective code ownership.",
513
+ "category": "development-practices",
514
+ "priority": "medium",
515
+ "file": "xp-practices/SKILL.md",
516
+ "tokenEstimate": 2000,
517
+ "tags": ["xp", "agile", "pair-programming", "tdd"],
518
+ "dependencies": ["tdd-london-chicago"],
519
+ "agents": ["qe-test-generator"]
520
+ },
521
+ "pair-programming": {
522
+ "id": "pair-programming",
523
+ "name": "AI-Assisted Pair Programming",
524
+ "description": "AI-assisted pair programming with driver/navigator modes, real-time verification, and quality monitoring.",
525
+ "category": "development-practices",
526
+ "priority": "medium",
527
+ "file": "pair-programming/SKILL.md",
528
+ "tokenEstimate": 2100,
529
+ "tags": ["pair-programming", "ai-assisted", "collaboration"],
530
+ "dependencies": ["xp-practices"],
531
+ "agents": []
532
+ },
533
+ "refactoring-patterns": {
534
+ "id": "refactoring-patterns",
535
+ "name": "Refactoring Patterns",
536
+ "description": "Safe refactoring patterns to improve code structure without changing behavior.",
537
+ "category": "development-practices",
538
+ "priority": "medium",
539
+ "file": "refactoring-patterns/SKILL.md",
540
+ "tokenEstimate": 1900,
541
+ "tags": ["refactoring", "code-quality", "patterns"],
542
+ "dependencies": ["tdd-london-chicago"],
543
+ "agents": []
544
+ },
545
+ "consultancy-practices": {
546
+ "id": "consultancy-practices",
547
+ "name": "Consultancy Practices",
548
+ "description": "Effective software quality consultancy practices, client engagement, and advisory workflows.",
549
+ "category": "development-practices",
550
+ "priority": "low",
551
+ "file": "consultancy-practices/SKILL.md",
552
+ "tokenEstimate": 1600,
553
+ "tags": ["consultancy", "advisory", "engagement"],
554
+ "dependencies": ["context-driven-testing"],
555
+ "agents": []
556
+ },
557
+ "technical-writing": {
558
+ "id": "technical-writing",
559
+ "name": "Technical Writing",
560
+ "description": "Clear technical documentation, API documentation, user guides, and knowledge base articles.",
561
+ "category": "development-practices",
562
+ "priority": "medium",
563
+ "file": "technical-writing/SKILL.md",
564
+ "tokenEstimate": 1700,
565
+ "tags": ["documentation", "writing", "communication"],
566
+ "dependencies": [],
567
+ "agents": ["qe-quality-analyzer"]
568
+ },
569
+ "bug-reporting-excellence": {
570
+ "id": "bug-reporting-excellence",
571
+ "name": "Bug Reporting Excellence",
572
+ "description": "Write high-quality bug reports that get fixed quickly with clear reproduction steps and context.",
573
+ "category": "bug-management",
574
+ "priority": "medium",
575
+ "file": "bug-reporting-excellence/SKILL.md",
576
+ "tokenEstimate": 1600,
577
+ "tags": ["bug-reporting", "communication", "quality"],
578
+ "dependencies": [],
579
+ "agents": ["qe-test-executor", "qe-flaky-test-hunter"]
580
+ }
581
+ },
582
+ "preloadRules": {
583
+ "always": ["agentic-quality-engineering"],
584
+ "byAgent": {
585
+ "qe-test-generator": ["tdd-london-chicago", "api-testing-patterns", "test-design-techniques", "test-automation-strategy", "shift-left-testing"],
586
+ "qe-test-executor": ["test-automation-strategy", "mobile-testing", "database-testing", "compatibility-testing"],
587
+ "qe-coverage-analyzer": ["holistic-testing-pact", "quality-metrics", "mutation-testing", "testability-scoring"],
588
+ "qe-quality-gate": ["holistic-testing-pact", "risk-based-testing", "context-driven-testing", "verification-quality"],
589
+ "qe-quality-analyzer": ["quality-metrics", "code-review-quality", "brutal-honesty-review", "testability-scoring"],
590
+ "qe-performance-tester": ["performance-testing"],
591
+ "qe-security-scanner": ["security-testing", "compliance-testing"],
592
+ "qe-requirements-validator": ["shift-left-testing", "context-driven-testing", "six-thinking-hats"],
593
+ "qe-production-intelligence": ["shift-right-testing", "exploratory-testing-advanced"],
594
+ "qe-fleet-commander": ["holistic-testing-pact", "cicd-pipeline-qe-orchestrator"],
595
+ "qe-deployment-readiness": ["risk-based-testing", "shift-right-testing"],
596
+ "qe-regression-risk-analyzer": ["regression-testing", "risk-based-testing"],
597
+ "qe-test-data-architect": ["test-data-management"],
598
+ "qe-api-contract-validator": ["api-testing-patterns", "contract-testing"],
599
+ "qe-flaky-test-hunter": ["exploratory-testing-advanced", "sherlock-review", "bug-reporting-excellence"],
600
+ "qe-visual-tester": ["visual-testing-advanced"],
601
+ "qe-chaos-engineer": ["chaos-engineering-resilience"]
602
+ },
603
+ "byTask": {
604
+ "test-generation": ["tdd-london-chicago", "api-testing-patterns", "test-design-techniques"],
605
+ "coverage-analysis": ["holistic-testing-pact", "quality-metrics", "testability-scoring"],
606
+ "security-testing": ["security-testing", "compliance-testing"],
607
+ "performance-testing": ["performance-testing"],
608
+ "code-review": ["code-review-quality", "brutal-honesty-review", "sherlock-review"],
609
+ "ci-cd-setup": ["cicd-pipeline-qe-orchestrator", "shift-left-testing", "shift-right-testing"],
610
+ "mobile-testing": ["mobile-testing", "accessibility-testing", "visual-testing-advanced"],
611
+ "api-testing": ["api-testing-patterns", "contract-testing"]
612
+ }
613
+ },
614
+ "metadata": {
615
+ "generatedBy": "Agentic QE Fleet",
616
+ "fleetVersion": "1.9.4",
617
+ "manifestVersion": "1.0.0",
618
+ "lastUpdated": "2025-12-01T20:00:00.000Z",
619
+ "contributors": [
620
+ {
621
+ "name": "@fndlalit",
622
+ "skill": "testability-scoring",
623
+ "url": "https://github.com/fndlalit"
624
+ }
625
+ ],
626
+ "notes": "This manifest contains only QE-focused skills. Claude Flow platform skills (agentdb, flow-nexus, github-*, swarm-*, hive-mind, etc.) are managed separately in the claude-flow package.",
627
+ "excludedCategories": {
628
+ "reason": "These are Claude Flow platform skills, not QE skills",
629
+ "categories": ["agentdb", "orchestration", "github-integration", "flow-nexus", "meta"]
630
+ }
631
+ }
632
+ }