agentic-qe 1.3.3 → 1.3.4

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 (122) hide show
  1. package/.claude/agents/qe-api-contract-validator.md +20 -0
  2. package/.claude/agents/qe-chaos-engineer.md +20 -0
  3. package/.claude/agents/qe-coverage-analyzer.md +21 -0
  4. package/.claude/agents/qe-deployment-readiness.md +20 -0
  5. package/.claude/agents/qe-flaky-test-hunter.md +20 -0
  6. package/.claude/agents/qe-fleet-commander.md +20 -0
  7. package/.claude/agents/qe-performance-tester.md +21 -0
  8. package/.claude/agents/qe-production-intelligence.md +20 -0
  9. package/.claude/agents/qe-quality-analyzer.md +20 -0
  10. package/.claude/agents/qe-quality-gate.md +20 -0
  11. package/.claude/agents/qe-regression-risk-analyzer.md +20 -0
  12. package/.claude/agents/qe-requirements-validator.md +20 -0
  13. package/.claude/agents/qe-security-scanner.md +21 -0
  14. package/.claude/agents/qe-test-data-architect.md +19 -0
  15. package/.claude/agents/qe-test-executor.md +20 -0
  16. package/.claude/agents/qe-test-generator.md +22 -0
  17. package/.claude/agents/qe-visual-tester.md +22 -0
  18. package/README.md +320 -1019
  19. package/README.md.backup-20251026 +1366 -0
  20. package/bin/aqe-mcp +1 -1
  21. package/dist/agents/BaseAgent.js +1 -1
  22. package/dist/agents/BaseAgent.js.map +1 -1
  23. package/dist/agents/CoverageAnalyzerAgent.js +16 -16
  24. package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
  25. package/dist/agents/FlakyTestHunterAgent.js +1 -1
  26. package/dist/agents/FlakyTestHunterAgent.js.map +1 -1
  27. package/dist/cli/commands/init.d.ts.map +1 -1
  28. package/dist/cli/commands/init.js +71 -37
  29. package/dist/cli/commands/init.js.map +1 -1
  30. package/dist/core/memory/EnhancedAgentDBService.d.ts +127 -0
  31. package/dist/core/memory/EnhancedAgentDBService.d.ts.map +1 -0
  32. package/dist/core/memory/EnhancedAgentDBService.js +298 -0
  33. package/dist/core/memory/EnhancedAgentDBService.js.map +1 -0
  34. package/dist/core/neural/NeuralTrainer.js +2 -2
  35. package/dist/core/neural/NeuralTrainer.js.map +1 -1
  36. package/dist/learning/FixRecommendationEngine.d.ts +68 -0
  37. package/dist/learning/FixRecommendationEngine.d.ts.map +1 -0
  38. package/dist/learning/FixRecommendationEngine.js +500 -0
  39. package/dist/learning/FixRecommendationEngine.js.map +1 -0
  40. package/dist/learning/FlakyTestDetector.d.ts +19 -0
  41. package/dist/learning/FlakyTestDetector.d.ts.map +1 -1
  42. package/dist/learning/FlakyTestDetector.js +121 -2
  43. package/dist/learning/FlakyTestDetector.js.map +1 -1
  44. package/dist/learning/index.d.ts +2 -0
  45. package/dist/learning/index.d.ts.map +1 -1
  46. package/dist/learning/index.js +5 -0
  47. package/dist/learning/index.js.map +1 -1
  48. package/dist/learning/types.d.ts +11 -0
  49. package/dist/learning/types.d.ts.map +1 -1
  50. package/dist/reasoning/PatternQualityScorer.d.ts +134 -0
  51. package/dist/reasoning/PatternQualityScorer.d.ts.map +1 -0
  52. package/dist/reasoning/PatternQualityScorer.js +340 -0
  53. package/dist/reasoning/PatternQualityScorer.js.map +1 -0
  54. package/dist/reasoning/QEReasoningBank.d.ts +51 -4
  55. package/dist/reasoning/QEReasoningBank.d.ts.map +1 -1
  56. package/dist/reasoning/QEReasoningBank.js +173 -11
  57. package/dist/reasoning/QEReasoningBank.js.map +1 -1
  58. package/dist/reasoning/VectorSimilarity.d.ts +131 -0
  59. package/dist/reasoning/VectorSimilarity.d.ts.map +1 -0
  60. package/dist/reasoning/VectorSimilarity.js +250 -0
  61. package/dist/reasoning/VectorSimilarity.js.map +1 -0
  62. package/dist/reasoning/index.d.ts +8 -1
  63. package/dist/reasoning/index.d.ts.map +1 -1
  64. package/dist/reasoning/index.js +13 -2
  65. package/dist/reasoning/index.js.map +1 -1
  66. package/dist/streaming/BaseStreamHandler.d.ts +89 -0
  67. package/dist/streaming/BaseStreamHandler.d.ts.map +1 -0
  68. package/dist/streaming/BaseStreamHandler.js +168 -0
  69. package/dist/streaming/BaseStreamHandler.js.map +1 -0
  70. package/dist/streaming/TestGenerateStreamHandler.d.ts +103 -0
  71. package/dist/streaming/TestGenerateStreamHandler.d.ts.map +1 -0
  72. package/dist/streaming/TestGenerateStreamHandler.js +321 -0
  73. package/dist/streaming/TestGenerateStreamHandler.js.map +1 -0
  74. package/dist/streaming/index.d.ts +16 -0
  75. package/dist/streaming/index.d.ts.map +1 -0
  76. package/dist/streaming/index.js +39 -0
  77. package/dist/streaming/index.js.map +1 -0
  78. package/dist/utils/__mocks__/Logger.d.ts +26 -0
  79. package/dist/utils/__mocks__/Logger.d.ts.map +1 -0
  80. package/dist/utils/__mocks__/Logger.js +42 -0
  81. package/dist/utils/__mocks__/Logger.js.map +1 -0
  82. package/package.json +15 -3
  83. package/dist/agents/mixins/NeuralCapableMixin.d.ts +0 -130
  84. package/dist/agents/mixins/NeuralCapableMixin.d.ts.map +0 -1
  85. package/dist/agents/mixins/NeuralCapableMixin.js +0 -358
  86. package/dist/agents/mixins/NeuralCapableMixin.js.map +0 -1
  87. package/dist/agents/mixins/QUICCapableMixin.d.ts +0 -34
  88. package/dist/agents/mixins/QUICCapableMixin.d.ts.map +0 -1
  89. package/dist/agents/mixins/QUICCapableMixin.js +0 -346
  90. package/dist/agents/mixins/QUICCapableMixin.js.map +0 -1
  91. package/dist/core/security/CertificateValidator.d.ts +0 -130
  92. package/dist/core/security/CertificateValidator.d.ts.map +0 -1
  93. package/dist/core/security/CertificateValidator.js +0 -376
  94. package/dist/core/security/CertificateValidator.js.map +0 -1
  95. package/dist/core/transport/QUICTransport.d.ts +0 -62
  96. package/dist/core/transport/QUICTransport.d.ts.map +0 -1
  97. package/dist/core/transport/QUICTransport.js +0 -381
  98. package/dist/core/transport/QUICTransport.js.map +0 -1
  99. package/dist/core/transport/SecureQUICTransport.d.ts +0 -71
  100. package/dist/core/transport/SecureQUICTransport.d.ts.map +0 -1
  101. package/dist/core/transport/SecureQUICTransport.js +0 -253
  102. package/dist/core/transport/SecureQUICTransport.js.map +0 -1
  103. package/dist/learning/AdvancedFeatureExtractor.d.ts +0 -123
  104. package/dist/learning/AdvancedFeatureExtractor.d.ts.map +0 -1
  105. package/dist/learning/AdvancedFeatureExtractor.js +0 -423
  106. package/dist/learning/AdvancedFeatureExtractor.js.map +0 -1
  107. package/dist/learning/NeuralPatternMatcher.d.ts +0 -184
  108. package/dist/learning/NeuralPatternMatcher.d.ts.map +0 -1
  109. package/dist/learning/NeuralPatternMatcher.js +0 -702
  110. package/dist/learning/NeuralPatternMatcher.js.map +0 -1
  111. package/dist/learning/NeuralTrainer.d.ts +0 -209
  112. package/dist/learning/NeuralTrainer.d.ts.map +0 -1
  113. package/dist/learning/NeuralTrainer.js +0 -478
  114. package/dist/learning/NeuralTrainer.js.map +0 -1
  115. package/dist/transport/QUICTransport.d.ts +0 -340
  116. package/dist/transport/QUICTransport.d.ts.map +0 -1
  117. package/dist/transport/QUICTransport.js +0 -814
  118. package/dist/transport/QUICTransport.js.map +0 -1
  119. package/dist/transport/UDPTransport.d.ts +0 -348
  120. package/dist/transport/UDPTransport.d.ts.map +0 -1
  121. package/dist/transport/UDPTransport.js +0 -820
  122. package/dist/transport/UDPTransport.js.map +0 -1
@@ -33,6 +33,26 @@ metadata:
33
33
 
34
34
  The API Contract Validator agent **prevents breaking API changes** by validating contracts against consumer expectations, detecting backward compatibility issues, and ensuring semantic versioning compliance. Using contract-first testing, schema validation, and consumer-driven contracts, this agent catches 95% of integration issues before deployment. It transforms API evolution from a risky breaking-change minefield into a safe, predictable process with confidence in backward compatibility.
35
35
 
36
+ ## Skills Available
37
+
38
+ ### Core Testing Skills (Phase 1)
39
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
40
+ - **api-testing-patterns**: Comprehensive API testing patterns including contract testing, REST/GraphQL testing
41
+
42
+ ### Phase 2 Skills (NEW in v1.3.0)
43
+ - **contract-testing**: Consumer-driven contract testing for microservices using Pact and API versioning
44
+ - **regression-testing**: Strategic regression testing with test selection, impact analysis, and continuous regression management
45
+
46
+ Use these skills via:
47
+ ```bash
48
+ # Via CLI
49
+ aqe skills show contract-testing
50
+
51
+ # Via Skill tool in Claude Code
52
+ Skill("contract-testing")
53
+ Skill("regression-testing")
54
+ ```
55
+
36
56
  ## Core Capabilities
37
57
 
38
58
  ### 1. Schema Validation
@@ -37,6 +37,26 @@ metadata:
37
37
  7. **Rollback Automation**: Automatically abort and rollback failed experiments
38
38
  8. **Observability Integration**: Correlate chaos events with system metrics
39
39
 
40
+ ## Skills Available
41
+
42
+ ### Core Testing Skills (Phase 1)
43
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
44
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
45
+
46
+ ### Phase 2 Skills (NEW in v1.3.0)
47
+ - **chaos-engineering-resilience**: Chaos engineering principles, controlled failure injection, and resilience testing
48
+ - **shift-right-testing**: Testing in production with feature flags, canary deployments, synthetic monitoring, and chaos engineering
49
+
50
+ Use these skills via:
51
+ ```bash
52
+ # Via CLI
53
+ aqe skills show chaos-engineering-resilience
54
+
55
+ # Via Skill tool in Claude Code
56
+ Skill("chaos-engineering-resilience")
57
+ Skill("shift-right-testing")
58
+ ```
59
+
40
60
  ## Analysis Workflow
41
61
 
42
62
  ### Phase 1: Experiment Planning
@@ -44,6 +44,27 @@ Specialized agent for intelligent test coverage analysis and optimization using
44
44
  - **Coverage Trend Analysis**: Track coverage patterns across test runs with temporal modeling
45
45
  - **Multi-framework Support**: Unified analysis across Jest, Mocha, Pytest, JUnit
46
46
 
47
+ ## Skills Available
48
+
49
+ ### Core Testing Skills (Phase 1)
50
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
51
+ - **quality-metrics**: Measure quality effectively with actionable metrics and KPIs
52
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
53
+
54
+ ### Phase 2 Skills (NEW in v1.3.0)
55
+ - **regression-testing**: Strategic regression testing with test selection, impact analysis, and continuous regression management
56
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
57
+
58
+ Use these skills via:
59
+ ```bash
60
+ # Via CLI
61
+ aqe skills show regression-testing
62
+
63
+ # Via Skill tool in Claude Code
64
+ Skill("regression-testing")
65
+ Skill("test-reporting-analytics")
66
+ ```
67
+
47
68
  ### 2. Sublinear Algorithm Integration
48
69
  - **Matrix Optimization**: Apply spectral sparsification to coverage matrices
49
70
  - **Dimensionality Reduction**: JL-transform for large codebases (>10k LOC)
@@ -33,6 +33,26 @@ metadata:
33
33
 
34
34
  The Deployment Readiness agent is the **final guardian before production**. It aggregates quality signals from all testing stages, calculates comprehensive risk scores, and provides data-driven go/no-go deployment decisions. By analyzing code quality, test coverage, performance benchmarks, security scans, and historical deployment patterns, this agent prevents 90% of production incidents and reduces MTTR by 65%. It transforms deployment from a high-stress gamble into a confident, predictable process backed by quantitative evidence.
35
35
 
36
+ ## Skills Available
37
+
38
+ ### Core Testing Skills (Phase 1)
39
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
40
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
41
+
42
+ ### Phase 2 Skills (NEW in v1.3.0)
43
+ - **shift-right-testing**: Testing in production with feature flags, canary deployments, synthetic monitoring, and chaos engineering
44
+ - **compliance-testing**: Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, and PCI-DSS
45
+
46
+ Use these skills via:
47
+ ```bash
48
+ # Via CLI
49
+ aqe skills show shift-right-testing
50
+
51
+ # Via Skill tool in Claude Code
52
+ Skill("shift-right-testing")
53
+ Skill("compliance-testing")
54
+ ```
55
+
36
56
  ## Core Capabilities
37
57
 
38
58
  ### 1. Risk Scoring
@@ -41,6 +41,26 @@ metadata:
41
41
 
42
42
  The Flaky Test Hunter agent **eliminates test flakiness** through intelligent detection, root cause analysis, and automated stabilization. Using statistical analysis, pattern recognition, and ML-powered prediction, this agent identifies flaky tests with 98% accuracy, diagnoses root causes, and auto-remediates common flakiness patterns. It transforms unreliable test suites into rock-solid confidence builders, achieving 95%+ test reliability and eliminating the "just rerun it" anti-pattern.
43
43
 
44
+ ## Skills Available
45
+
46
+ ### Core Testing Skills (Phase 1)
47
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
48
+ - **exploratory-testing-advanced**: Advanced exploratory testing techniques with Session-Based Test Management (SBTM)
49
+
50
+ ### Phase 2 Skills (NEW in v1.3.0)
51
+ - **mutation-testing**: Test quality validation through mutation testing and measuring test suite effectiveness
52
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
53
+
54
+ Use these skills via:
55
+ ```bash
56
+ # Via CLI
57
+ aqe skills show mutation-testing
58
+
59
+ # Via Skill tool in Claude Code
60
+ Skill("mutation-testing")
61
+ Skill("test-reporting-analytics")
62
+ ```
63
+
44
64
  ## Core Capabilities
45
65
 
46
66
  ### 1. Flaky Detection
@@ -37,6 +37,26 @@ metadata:
37
37
  7. **Scaling Orchestration**: Auto-scale agent pools based on demand and performance metrics
38
38
  8. **Performance Monitoring**: Track fleet-wide metrics and optimize coordination patterns
39
39
 
40
+ ## Skills Available
41
+
42
+ ### Core Testing Skills (Phase 1)
43
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
44
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
45
+
46
+ ### Phase 2 Skills (NEW in v1.3.0)
47
+ - **test-environment-management**: Manage test environments, infrastructure as code, and environment provisioning
48
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
49
+
50
+ Use these skills via:
51
+ ```bash
52
+ # Via CLI
53
+ aqe skills show test-environment-management
54
+
55
+ # Via Skill tool in Claude Code
56
+ Skill("test-environment-management")
57
+ Skill("test-reporting-analytics")
58
+ ```
59
+
40
60
  ## Analysis Workflow
41
61
 
42
62
  ### Phase 1: Fleet Initialization
@@ -62,6 +62,27 @@ description: "Multi-tool performance testing with load orchestration, bottleneck
62
62
 
63
63
  **Role**: Performance validation specialist focused on load testing, bottleneck detection, and SLA validation for quality engineering workflows.
64
64
 
65
+ ## Skills Available
66
+
67
+ ### Core Testing Skills (Phase 1)
68
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
69
+ - **performance-testing**: Test application performance, scalability, and resilience with load testing
70
+ - **quality-metrics**: Measure quality effectively with actionable metrics and KPIs
71
+
72
+ ### Phase 2 Skills (NEW in v1.3.0)
73
+ - **shift-right-testing**: Testing in production with feature flags, canary deployments, synthetic monitoring, and chaos engineering
74
+ - **test-environment-management**: Manage test environments, infrastructure as code, and environment provisioning
75
+
76
+ Use these skills via:
77
+ ```bash
78
+ # Via CLI
79
+ aqe skills show shift-right-testing
80
+
81
+ # Via Skill tool in Claude Code
82
+ Skill("shift-right-testing")
83
+ Skill("test-environment-management")
84
+ ```
85
+
65
86
  ## Core Capabilities
66
87
 
67
88
  ### 🚀 Load Testing Orchestration
@@ -33,6 +33,26 @@ metadata:
33
33
 
34
34
  The Production Intelligence agent creates a **continuous feedback loop** from production to testing by converting real user behavior, incidents, and anomalies into comprehensive test scenarios. By analyzing RUM (Real User Monitoring) data, replaying incidents, and mining error patterns, this agent eliminates the 80% of bugs that only appear in production. It ensures that testing environments accurately reflect real-world usage, transforming production into the ultimate source of truth for test case generation and validation.
35
35
 
36
+ ## Skills Available
37
+
38
+ ### Core Testing Skills (Phase 1)
39
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
40
+ - **exploratory-testing-advanced**: Advanced exploratory testing techniques with Session-Based Test Management (SBTM)
41
+
42
+ ### Phase 2 Skills (NEW in v1.3.0)
43
+ - **shift-right-testing**: Testing in production with feature flags, canary deployments, synthetic monitoring, and chaos engineering
44
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
45
+
46
+ Use these skills via:
47
+ ```bash
48
+ # Via CLI
49
+ aqe skills show shift-right-testing
50
+
51
+ # Via Skill tool in Claude Code
52
+ Skill("shift-right-testing")
53
+ Skill("test-reporting-analytics")
54
+ ```
55
+
36
56
  ## Core Capabilities
37
57
 
38
58
  ### 1. Incident Replay
@@ -35,6 +35,26 @@ integration_points:
35
35
 
36
36
  # Quality Analyzer Agent
37
37
 
38
+ ## Skills Available
39
+
40
+ ### Core Testing Skills (Phase 1)
41
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
42
+ - **quality-metrics**: Measure quality effectively with actionable metrics and KPIs
43
+
44
+ ### Phase 2 Skills (NEW in v1.3.0)
45
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
46
+ - **compliance-testing**: Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, and PCI-DSS
47
+
48
+ Use these skills via:
49
+ ```bash
50
+ # Via CLI
51
+ aqe skills show test-reporting-analytics
52
+
53
+ # Via Skill tool in Claude Code
54
+ Skill("test-reporting-analytics")
55
+ Skill("compliance-testing")
56
+ ```
57
+
38
58
  ## Core Responsibilities
39
59
 
40
60
  ### Primary Functions
@@ -35,6 +35,26 @@ integration_points:
35
35
 
36
36
  # Quality Gate Agent
37
37
 
38
+ ## Skills Available
39
+
40
+ ### Core Testing Skills (Phase 1)
41
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
42
+ - **quality-metrics**: Measure quality effectively with actionable metrics and KPIs
43
+
44
+ ### Phase 2 Skills (NEW in v1.3.0)
45
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
46
+ - **compliance-testing**: Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, and PCI-DSS
47
+
48
+ Use these skills via:
49
+ ```bash
50
+ # Via CLI
51
+ aqe skills show test-reporting-analytics
52
+
53
+ # Via Skill tool in Claude Code
54
+ Skill("test-reporting-analytics")
55
+ Skill("compliance-testing")
56
+ ```
57
+
38
58
  ## Core Responsibilities
39
59
 
40
60
  ### Primary Functions
@@ -33,6 +33,26 @@ metadata:
33
33
 
34
34
  The Regression Risk Analyzer agent revolutionizes CI/CD efficiency by **intelligently selecting the minimal set of tests** required to validate code changes. Using static analysis, dynamic dependency tracking, and ML-powered historical pattern learning, this agent reduces CI execution time by 90% while maintaining 95% defect detection rate. It transforms regression testing from "run everything" to "run exactly what matters," enabling 10x faster feedback loops without sacrificing quality.
35
35
 
36
+ ## Skills Available
37
+
38
+ ### Core Testing Skills (Phase 1)
39
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
40
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
41
+
42
+ ### Phase 2 Skills (NEW in v1.3.0)
43
+ - **regression-testing**: Strategic regression testing with test selection, impact analysis, and continuous regression management
44
+ - **test-design-techniques**: Advanced test design using equivalence partitioning, boundary value analysis, and decision tables
45
+
46
+ Use these skills via:
47
+ ```bash
48
+ # Via CLI
49
+ aqe skills show regression-testing
50
+
51
+ # Via Skill tool in Claude Code
52
+ Skill("regression-testing")
53
+ Skill("test-design-techniques")
54
+ ```
55
+
36
56
  ## Core Capabilities
37
57
 
38
58
  ### 1. Change Impact Analysis
@@ -33,6 +33,26 @@ metadata:
33
33
 
34
34
  The Requirements Validator agent is the **first line of defense** in the quality engineering process. It validates requirements for testability, completeness, and clarity BEFORE any code is written. By converting ambiguous requirements into concrete BDD scenarios and identifying missing acceptance criteria, this agent prevents 70% of late-stage defects and reduces rework by 60%. It ensures that every requirement is measurable, testable, and traceable from conception to deployment.
35
35
 
36
+ ## Skills Available
37
+
38
+ ### Core Testing Skills (Phase 1)
39
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
40
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
41
+
42
+ ### Phase 2 Skills (NEW in v1.3.0)
43
+ - **shift-left-testing**: Move testing activities earlier in development lifecycle with TDD, BDD, and design for testability
44
+ - **test-design-techniques**: Advanced test design using equivalence partitioning, boundary value analysis, and decision tables
45
+
46
+ Use these skills via:
47
+ ```bash
48
+ # Via CLI
49
+ aqe skills show shift-left-testing
50
+
51
+ # Via Skill tool in Claude Code
52
+ Skill("shift-left-testing")
53
+ Skill("test-design-techniques")
54
+ ```
55
+
36
56
  ## Core Capabilities
37
57
 
38
58
  ### 1. Testability Analysis
@@ -67,6 +67,27 @@ description: "Multi-layer security scanning with SAST/DAST, vulnerability detect
67
67
 
68
68
  **Role**: Security validation specialist focused on SAST/DAST scanning, vulnerability detection, and compliance validation for comprehensive security testing.
69
69
 
70
+ ## Skills Available
71
+
72
+ ### Core Testing Skills (Phase 1)
73
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
74
+ - **security-testing**: Test for security vulnerabilities using OWASP principles and security testing techniques
75
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment
76
+
77
+ ### Phase 2 Skills (NEW in v1.3.0)
78
+ - **compliance-testing**: Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, and PCI-DSS
79
+ - **shift-left-testing**: Move testing activities earlier in development lifecycle with TDD, BDD, and design for testability
80
+
81
+ Use these skills via:
82
+ ```bash
83
+ # Via CLI
84
+ aqe skills show compliance-testing
85
+
86
+ # Via Skill tool in Claude Code
87
+ Skill("compliance-testing")
88
+ Skill("shift-left-testing")
89
+ ```
90
+
70
91
  ## Core Capabilities
71
92
 
72
93
  ### 🔒 Static Application Security Testing (SAST)
@@ -32,6 +32,25 @@ metadata:
32
32
 
33
33
  The Test Data Architect agent **eliminates manual test data creation** by generating realistic, schema-aware test data that preserves relationships, satisfies constraints, and covers edge cases. Using schema analysis, production data patterns, and intelligent faker libraries, this agent creates comprehensive test datasets in seconds instead of hours. It ensures data privacy through anonymization, maintains referential integrity, and generates both common and edge-case scenarios, enabling thorough testing without the burden of manual data management.
34
34
 
35
+ ## Skills Available
36
+
37
+ ### Core Testing Skills (Phase 1)
38
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
39
+
40
+ ### Phase 2 Skills (NEW in v1.3.0)
41
+ - **test-data-management**: Realistic test data generation, GDPR compliance, and data masking strategies
42
+ - **database-testing**: Database schema validation, data integrity testing, migration testing, and query performance
43
+
44
+ Use these skills via:
45
+ ```bash
46
+ # Via CLI
47
+ aqe skills show test-data-management
48
+
49
+ # Via Skill tool in Claude Code
50
+ Skill("test-data-management")
51
+ Skill("database-testing")
52
+ ```
53
+
35
54
  ## Core Capabilities
36
55
 
37
56
  ### 1. Schema-Aware Generation
@@ -36,6 +36,26 @@ The Test Executor Agent orchestrates parallel test execution across multiple fra
36
36
  - **Resource Optimization**: Dynamically allocate workers based on system capacity
37
37
  - **Progress Monitoring**: Provide real-time test execution status and metrics
38
38
 
39
+ ## Skills Available
40
+
41
+ ### Core Testing Skills (Phase 1)
42
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
43
+ - **test-automation-strategy**: Design and implement comprehensive test automation strategies
44
+
45
+ ### Phase 2 Skills (NEW in v1.3.0)
46
+ - **test-environment-management**: Manage test environments, infrastructure as code, and environment provisioning
47
+ - **test-reporting-analytics**: Comprehensive test reporting with metrics, trends, and actionable insights
48
+
49
+ Use these skills via:
50
+ ```bash
51
+ # Via CLI
52
+ aqe skills show test-environment-management
53
+
54
+ # Via Skill tool in Claude Code
55
+ Skill("test-environment-management")
56
+ Skill("test-reporting-analytics")
57
+ ```
58
+
39
59
  ## Execution Workflow
40
60
 
41
61
  ### 1. Pre-Execution Phase
@@ -39,6 +39,28 @@ metadata:
39
39
  4. **Framework Integration**: Support multiple testing frameworks with adaptive generation
40
40
  5. **Quality Assurance**: Ensure generated tests meet quality standards and best practices
41
41
 
42
+ ## Skills Available
43
+
44
+ ### Core Testing Skills (Phase 1)
45
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
46
+ - **api-testing-patterns**: Comprehensive API testing patterns including contract testing, REST/GraphQL testing
47
+ - **tdd-london-chicago**: Apply both London and Chicago school TDD approaches
48
+
49
+ ### Phase 2 Skills (NEW in v1.3.0)
50
+ - **shift-left-testing**: Move testing activities earlier in development lifecycle with TDD, BDD, and design for testability
51
+ - **test-design-techniques**: Advanced test design using equivalence partitioning, boundary value analysis, and decision tables
52
+ - **test-data-management**: Realistic test data generation, GDPR compliance, and data masking strategies
53
+
54
+ Use these skills via:
55
+ ```bash
56
+ # Via CLI
57
+ aqe skills show shift-left-testing
58
+
59
+ # Via Skill tool in Claude Code
60
+ Skill("shift-left-testing")
61
+ Skill("test-design-techniques")
62
+ ```
63
+
42
64
  ## Analysis Workflow
43
65
 
44
66
  ### Phase 1: Code Analysis
@@ -37,6 +37,28 @@ metadata:
37
37
  7. **Color Contrast Validation**: Ensure sufficient color contrast ratios
38
38
  8. **Performance Monitoring**: Track visual rendering performance metrics
39
39
 
40
+ ## Skills Available
41
+
42
+ ### Core Testing Skills (Phase 1)
43
+ - **agentic-quality-engineering**: Using AI agents as force multipliers in quality work
44
+ - **exploratory-testing-advanced**: Advanced exploratory testing techniques with Session-Based Test Management (SBTM)
45
+
46
+ ### Phase 2 Skills (NEW in v1.3.0)
47
+ - **visual-testing-advanced**: Advanced visual regression testing with AI-powered screenshot comparison and UI validation
48
+ - **accessibility-testing**: WCAG 2.2 compliance testing, screen reader validation, and inclusive design verification
49
+ - **compatibility-testing**: Cross-browser, cross-platform, and cross-device compatibility testing
50
+
51
+ Use these skills via:
52
+ ```bash
53
+ # Via CLI
54
+ aqe skills show visual-testing-advanced
55
+
56
+ # Via Skill tool in Claude Code
57
+ Skill("visual-testing-advanced")
58
+ Skill("accessibility-testing")
59
+ Skill("compatibility-testing")
60
+ ```
61
+
40
62
  ## Analysis Workflow
41
63
 
42
64
  ### Phase 1: Baseline Capture