agentic-qe 1.1.0 → 1.2.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.
- package/.claude/agents/qe-coverage-analyzer.md +8 -0
- package/.claude/agents/qe-flaky-test-hunter.md +9 -1
- package/.claude/agents/qe-test-generator.md +7 -0
- package/.claude/agents/reasoning/agent.md +816 -0
- package/.claude/agents/reasoning/goal-planner.md +73 -0
- package/.claude/settings.json +21 -20
- package/.claude/skills/README.md +124 -0
- package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
- package/.claude/skills/agentic-quality-engineering/SKILL.md +604 -0
- package/.claude/skills/api-testing-patterns/SKILL.md +686 -0
- package/.claude/skills/bug-reporting-excellence/SKILL.md +632 -0
- package/.claude/skills/code-review-quality/SKILL.md +683 -0
- package/.claude/skills/consultancy-practices/SKILL.md +540 -0
- package/.claude/skills/context-driven-testing/SKILL.md +466 -0
- package/.claude/skills/exploratory-testing-advanced/SKILL.md +676 -0
- package/.claude/skills/flow-nexus-neural/SKILL.md +738 -0
- package/.claude/skills/flow-nexus-platform/SKILL.md +1157 -0
- package/.claude/skills/flow-nexus-swarm/SKILL.md +610 -0
- package/.claude/skills/github-code-review/SKILL.md +1140 -0
- package/.claude/skills/github-multi-repo/SKILL.md +874 -0
- package/.claude/skills/github-project-management/SKILL.md +1277 -0
- package/.claude/skills/github-release-management/SKILL.md +1081 -0
- package/.claude/skills/github-workflow-automation/SKILL.md +1065 -0
- package/.claude/skills/hive-mind-advanced/SKILL.md +712 -0
- package/.claude/skills/holistic-testing-pact/SKILL.md +225 -0
- package/.claude/skills/hooks-automation/SKILL.md +1201 -0
- package/.claude/skills/pair-programming/SKILL.md +1202 -0
- package/.claude/skills/performance-analysis/SKILL.md +563 -0
- package/.claude/skills/performance-testing/SKILL.md +662 -0
- package/.claude/skills/quality-metrics/SKILL.md +592 -0
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
- package/.claude/skills/refactoring-patterns/SKILL.md +778 -0
- package/.claude/skills/risk-based-testing/SKILL.md +721 -0
- package/.claude/skills/security-testing/SKILL.md +651 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/.claude/skills/sparc-methodology/SKILL.md +1115 -0
- package/.claude/skills/stream-chain/SKILL.md +563 -0
- package/.claude/skills/swarm-advanced/SKILL.md +973 -0
- package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
- package/.claude/skills/tdd-london-chicago/SKILL.md +567 -0
- package/.claude/skills/technical-writing/SKILL.md +235 -0
- package/.claude/skills/test-automation-strategy/SKILL.md +842 -0
- package/.claude/skills/verification-quality/SKILL.md +649 -0
- package/.claude/skills/xp-practices/SKILL.md +671 -0
- package/.claude/statusline-command.sh +176 -0
- package/CHANGELOG.md +536 -1
- package/README.md +92 -3
- package/config/improvement-loop.config.ts +323 -0
- package/config/neural-agent.config.ts +197 -0
- package/dist/adapters/MemoryStoreAdapter.d.ts +16 -16
- package/dist/adapters/MemoryStoreAdapter.d.ts.map +1 -1
- package/dist/adapters/MemoryStoreAdapter.js +16 -16
- package/dist/adapters/MemoryStoreAdapter.js.map +1 -1
- package/dist/agents/BaseAgent.d.ts +69 -0
- package/dist/agents/BaseAgent.d.ts.map +1 -1
- package/dist/agents/BaseAgent.js +382 -1
- package/dist/agents/BaseAgent.js.map +1 -1
- package/dist/agents/CoverageAnalyzerAgent.d.ts +13 -2
- package/dist/agents/CoverageAnalyzerAgent.d.ts.map +1 -1
- package/dist/agents/CoverageAnalyzerAgent.js +105 -6
- package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
- package/dist/agents/DeploymentReadinessAgent.d.ts.map +1 -1
- package/dist/agents/DeploymentReadinessAgent.js +13 -13
- package/dist/agents/DeploymentReadinessAgent.js.map +1 -1
- package/dist/agents/FlakyTestHunterAgent.d.ts +28 -0
- package/dist/agents/FlakyTestHunterAgent.d.ts.map +1 -1
- package/dist/agents/FlakyTestHunterAgent.js +159 -4
- package/dist/agents/FlakyTestHunterAgent.js.map +1 -1
- package/dist/agents/FleetCommanderAgent.d.ts.map +1 -1
- package/dist/agents/FleetCommanderAgent.js +2 -2
- package/dist/agents/FleetCommanderAgent.js.map +1 -1
- package/dist/agents/LearningAgent.d.ts +14 -5
- package/dist/agents/LearningAgent.d.ts.map +1 -1
- package/dist/agents/LearningAgent.js +36 -16
- package/dist/agents/LearningAgent.js.map +1 -1
- package/dist/agents/NeuralAgentExtension.d.ts +117 -0
- package/dist/agents/NeuralAgentExtension.d.ts.map +1 -0
- package/dist/agents/NeuralAgentExtension.js +288 -0
- package/dist/agents/NeuralAgentExtension.js.map +1 -0
- package/dist/agents/PerformanceTesterAgent.d.ts.map +1 -1
- package/dist/agents/PerformanceTesterAgent.js +4 -3
- package/dist/agents/PerformanceTesterAgent.js.map +1 -1
- package/dist/agents/ProductionIntelligenceAgent.js +7 -7
- package/dist/agents/ProductionIntelligenceAgent.js.map +1 -1
- package/dist/agents/QualityAnalyzerAgent.d.ts.map +1 -1
- package/dist/agents/QualityAnalyzerAgent.js +2 -2
- package/dist/agents/QualityAnalyzerAgent.js.map +1 -1
- package/dist/agents/QualityGateAgent.js +5 -5
- package/dist/agents/QualityGateAgent.js.map +1 -1
- package/dist/agents/RegressionRiskAnalyzerAgent.js +7 -7
- package/dist/agents/RegressionRiskAnalyzerAgent.js.map +1 -1
- package/dist/agents/RequirementsValidatorAgent.d.ts.map +1 -1
- package/dist/agents/RequirementsValidatorAgent.js +1 -1
- package/dist/agents/RequirementsValidatorAgent.js.map +1 -1
- package/dist/agents/SecurityScannerAgent.js +6 -6
- package/dist/agents/SecurityScannerAgent.js.map +1 -1
- package/dist/agents/TestExecutorAgent.d.ts.map +1 -1
- package/dist/agents/TestExecutorAgent.js +1 -3
- package/dist/agents/TestExecutorAgent.js.map +1 -1
- package/dist/agents/TestGeneratorAgent.d.ts +15 -4
- package/dist/agents/TestGeneratorAgent.d.ts.map +1 -1
- package/dist/agents/TestGeneratorAgent.js +165 -43
- package/dist/agents/TestGeneratorAgent.js.map +1 -1
- package/dist/agents/mixins/NeuralCapableMixin.d.ts +130 -0
- package/dist/agents/mixins/NeuralCapableMixin.d.ts.map +1 -0
- package/dist/agents/mixins/NeuralCapableMixin.js +358 -0
- package/dist/agents/mixins/NeuralCapableMixin.js.map +1 -0
- package/dist/agents/mixins/QUICCapableMixin.d.ts +34 -0
- package/dist/agents/mixins/QUICCapableMixin.d.ts.map +1 -0
- package/dist/agents/mixins/QUICCapableMixin.js +346 -0
- package/dist/agents/mixins/QUICCapableMixin.js.map +1 -0
- package/dist/cli/commands/agent/index.d.ts +5 -0
- package/dist/cli/commands/agent/index.d.ts.map +1 -1
- package/dist/cli/commands/agent/index.js +11 -6
- package/dist/cli/commands/agent/index.js.map +1 -1
- package/dist/cli/commands/agent/kill.d.ts +13 -0
- package/dist/cli/commands/agent/kill.d.ts.map +1 -0
- package/dist/cli/commands/agent/kill.js +65 -0
- package/dist/cli/commands/agent/kill.js.map +1 -0
- package/dist/cli/commands/agent/list.d.ts +19 -0
- package/dist/cli/commands/agent/list.d.ts.map +1 -0
- package/dist/cli/commands/agent/list.js +92 -0
- package/dist/cli/commands/agent/list.js.map +1 -0
- package/dist/cli/commands/agent/logs.d.ts +14 -0
- package/dist/cli/commands/agent/logs.d.ts.map +1 -0
- package/dist/cli/commands/agent/logs.js +77 -0
- package/dist/cli/commands/agent/logs.js.map +1 -0
- package/dist/cli/commands/agent/metrics.d.ts +21 -0
- package/dist/cli/commands/agent/metrics.d.ts.map +1 -0
- package/dist/cli/commands/agent/metrics.js +87 -0
- package/dist/cli/commands/agent/metrics.js.map +1 -0
- package/dist/cli/commands/agent/spawn.d.ts +28 -0
- package/dist/cli/commands/agent/spawn.d.ts.map +1 -0
- package/dist/cli/commands/agent/spawn.js +83 -0
- package/dist/cli/commands/agent/spawn.js.map +1 -0
- package/dist/cli/commands/init.d.ts +24 -0
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +475 -7
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/skills/index.d.ts +51 -0
- package/dist/cli/commands/skills/index.d.ts.map +1 -0
- package/dist/cli/commands/skills/index.js +364 -0
- package/dist/cli/commands/skills/index.js.map +1 -0
- package/dist/cli/index.js +92 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/core/EventBus.d.ts +38 -0
- package/dist/core/EventBus.d.ts.map +1 -1
- package/dist/core/EventBus.js +176 -31
- package/dist/core/EventBus.js.map +1 -1
- package/dist/core/FleetManager.d.ts +35 -1
- package/dist/core/FleetManager.d.ts.map +1 -1
- package/dist/core/FleetManager.js +121 -45
- package/dist/core/FleetManager.js.map +1 -1
- package/dist/core/MemoryManager.d.ts +19 -1
- package/dist/core/MemoryManager.d.ts.map +1 -1
- package/dist/core/MemoryManager.js +25 -1
- package/dist/core/MemoryManager.js.map +1 -1
- package/dist/core/embeddings/EmbeddingCache.d.ts +134 -0
- package/dist/core/embeddings/EmbeddingCache.d.ts.map +1 -0
- package/dist/core/embeddings/EmbeddingCache.js +239 -0
- package/dist/core/embeddings/EmbeddingCache.js.map +1 -0
- package/dist/core/embeddings/EmbeddingGenerator.d.ts +224 -0
- package/dist/core/embeddings/EmbeddingGenerator.d.ts.map +1 -0
- package/dist/core/embeddings/EmbeddingGenerator.js +459 -0
- package/dist/core/embeddings/EmbeddingGenerator.js.map +1 -0
- package/dist/core/embeddings/index.d.ts +15 -0
- package/dist/core/embeddings/index.d.ts.map +1 -0
- package/dist/core/embeddings/index.js +22 -0
- package/dist/core/embeddings/index.js.map +1 -0
- package/dist/core/memory/AgentDBIntegration.d.ts +35 -0
- package/dist/core/memory/AgentDBIntegration.d.ts.map +1 -0
- package/dist/core/memory/AgentDBIntegration.js +75 -0
- package/dist/core/memory/AgentDBIntegration.js.map +1 -0
- package/dist/core/memory/AgentDBManager.d.ts +200 -0
- package/dist/core/memory/AgentDBManager.d.ts.map +1 -0
- package/dist/core/memory/AgentDBManager.js +263 -0
- package/dist/core/memory/AgentDBManager.js.map +1 -0
- package/dist/core/memory/AgentDBService.d.ts +160 -0
- package/dist/core/memory/AgentDBService.d.ts.map +1 -0
- package/dist/core/memory/AgentDBService.js +450 -0
- package/dist/core/memory/AgentDBService.js.map +1 -0
- package/dist/core/memory/RealAgentDBAdapter.d.ts +51 -0
- package/dist/core/memory/RealAgentDBAdapter.d.ts.map +1 -0
- package/dist/core/memory/RealAgentDBAdapter.js +230 -0
- package/dist/core/memory/RealAgentDBAdapter.js.map +1 -0
- package/dist/core/memory/ReasoningBankAdapter.d.ts +58 -0
- package/dist/core/memory/ReasoningBankAdapter.d.ts.map +1 -0
- package/dist/core/memory/ReasoningBankAdapter.js +80 -0
- package/dist/core/memory/ReasoningBankAdapter.js.map +1 -0
- package/dist/core/memory/SwarmMemoryManager.d.ts +75 -3
- package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
- package/dist/core/memory/SwarmMemoryManager.js +236 -52
- package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
- package/dist/core/memory/index.d.ts +4 -0
- package/dist/core/memory/index.d.ts.map +1 -1
- package/dist/core/memory/index.js +9 -1
- package/dist/core/memory/index.js.map +1 -1
- package/dist/core/neural/NeuralTrainer.d.ts +137 -0
- package/dist/core/neural/NeuralTrainer.d.ts.map +1 -0
- package/dist/core/neural/NeuralTrainer.js +543 -0
- package/dist/core/neural/NeuralTrainer.js.map +1 -0
- package/dist/core/neural/index.d.ts +8 -0
- package/dist/core/neural/index.d.ts.map +1 -0
- package/dist/core/neural/index.js +24 -0
- package/dist/core/neural/index.js.map +1 -0
- package/dist/core/neural/types.d.ts +216 -0
- package/dist/core/neural/types.d.ts.map +1 -0
- package/dist/core/neural/types.js +8 -0
- package/dist/core/neural/types.js.map +1 -0
- package/dist/core/security/CertificateValidator.d.ts +130 -0
- package/dist/core/security/CertificateValidator.d.ts.map +1 -0
- package/dist/core/security/CertificateValidator.js +376 -0
- package/dist/core/security/CertificateValidator.js.map +1 -0
- package/dist/core/transport/QUICTransport.d.ts +62 -0
- package/dist/core/transport/QUICTransport.d.ts.map +1 -0
- package/dist/core/transport/QUICTransport.js +381 -0
- package/dist/core/transport/QUICTransport.js.map +1 -0
- package/dist/core/transport/SecureQUICTransport.d.ts +71 -0
- package/dist/core/transport/SecureQUICTransport.d.ts.map +1 -0
- package/dist/core/transport/SecureQUICTransport.js +253 -0
- package/dist/core/transport/SecureQUICTransport.js.map +1 -0
- package/dist/learning/AdvancedFeatureExtractor.d.ts +123 -0
- package/dist/learning/AdvancedFeatureExtractor.d.ts.map +1 -0
- package/dist/learning/AdvancedFeatureExtractor.js +423 -0
- package/dist/learning/AdvancedFeatureExtractor.js.map +1 -0
- package/dist/learning/FlakyPredictionModel.d.ts +11 -1
- package/dist/learning/FlakyPredictionModel.d.ts.map +1 -1
- package/dist/learning/FlakyPredictionModel.js +82 -35
- package/dist/learning/FlakyPredictionModel.js.map +1 -1
- package/dist/learning/FlakyTestDetector.d.ts +9 -0
- package/dist/learning/FlakyTestDetector.d.ts.map +1 -1
- package/dist/learning/FlakyTestDetector.js +28 -6
- package/dist/learning/FlakyTestDetector.js.map +1 -1
- package/dist/learning/ImprovementLoop.d.ts +16 -2
- package/dist/learning/ImprovementLoop.d.ts.map +1 -1
- package/dist/learning/ImprovementLoop.js +67 -8
- package/dist/learning/ImprovementLoop.js.map +1 -1
- package/dist/learning/ImprovementWorker.d.ts +83 -0
- package/dist/learning/ImprovementWorker.d.ts.map +1 -0
- package/dist/learning/ImprovementWorker.js +164 -0
- package/dist/learning/ImprovementWorker.js.map +1 -0
- package/dist/learning/NeuralPatternMatcher.d.ts +184 -0
- package/dist/learning/NeuralPatternMatcher.d.ts.map +1 -0
- package/dist/learning/NeuralPatternMatcher.js +702 -0
- package/dist/learning/NeuralPatternMatcher.js.map +1 -0
- package/dist/learning/NeuralTrainer.d.ts +209 -0
- package/dist/learning/NeuralTrainer.d.ts.map +1 -0
- package/dist/learning/NeuralTrainer.js +478 -0
- package/dist/learning/NeuralTrainer.js.map +1 -0
- package/dist/learning/index.d.ts +13 -7
- package/dist/learning/index.d.ts.map +1 -1
- package/dist/learning/index.js +27 -11
- package/dist/learning/index.js.map +1 -1
- package/dist/learning/types.d.ts +1 -0
- package/dist/learning/types.d.ts.map +1 -1
- package/dist/learning/types.js +16 -0
- package/dist/learning/types.js.map +1 -1
- package/dist/mcp/MCPToolRegistry.d.ts +34 -0
- package/dist/mcp/MCPToolRegistry.d.ts.map +1 -0
- package/dist/mcp/MCPToolRegistry.js +48 -0
- package/dist/mcp/MCPToolRegistry.js.map +1 -0
- package/dist/mcp/server.d.ts +4 -4
- package/dist/mcp/services/AgentRegistry.d.ts.map +1 -1
- package/dist/mcp/services/AgentRegistry.js +7 -1
- package/dist/mcp/services/AgentRegistry.js.map +1 -1
- package/dist/transport/QUICTransport.d.ts +340 -0
- package/dist/transport/QUICTransport.d.ts.map +1 -0
- package/dist/transport/QUICTransport.js +814 -0
- package/dist/transport/QUICTransport.js.map +1 -0
- package/dist/transport/UDPTransport.d.ts +348 -0
- package/dist/transport/UDPTransport.d.ts.map +1 -0
- package/dist/transport/UDPTransport.js +820 -0
- package/dist/transport/UDPTransport.js.map +1 -0
- package/dist/types/errors.d.ts +1 -1
- package/dist/types/index.d.ts +37 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/quic.d.ts +339 -0
- package/dist/types/quic.d.ts.map +1 -0
- package/dist/types/quic.js +48 -0
- package/dist/types/quic.js.map +1 -0
- package/dist/utils/Config.js +1 -1
- package/dist/utils/Config.js.map +1 -1
- package/dist/utils/Database.d.ts +14 -0
- package/dist/utils/Database.d.ts.map +1 -1
- package/dist/utils/Database.js +51 -4
- package/dist/utils/Database.js.map +1 -1
- package/dist/utils/Logger.d.ts.map +1 -1
- package/dist/utils/Logger.js +111 -26
- package/dist/utils/Logger.js.map +1 -1
- package/package.json +30 -7
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic-quality-engineering
|
|
3
|
+
description: Using AI agents as force multipliers in quality work. Use when designing autonomous testing systems, implementing PACT principles, or scaling quality engineering with intelligent agents. Core skill for all QE agents in the fleet.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
category: quality-engineering
|
|
6
|
+
tags: [ai-agents, pact-principles, autonomous-testing, multi-agent-systems, test-automation, quality-engineering]
|
|
7
|
+
difficulty: advanced
|
|
8
|
+
estimated_time: 4-6 hours
|
|
9
|
+
author: user
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Agentic Quality Engineering
|
|
13
|
+
|
|
14
|
+
## Overview
|
|
15
|
+
|
|
16
|
+
Agentic Quality Engineering transforms traditional QE by deploying AI agents as force multipliers - amplifying human judgment through intelligent automation, adaptive testing, and autonomous quality analysis.
|
|
17
|
+
|
|
18
|
+
**This is the foundational skill for all 17 QE Fleet agents.**
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## What Is Agentic Quality Engineering?
|
|
23
|
+
|
|
24
|
+
### The Evolution of Quality Engineering
|
|
25
|
+
|
|
26
|
+
**Traditional QE:** Human does everything manually
|
|
27
|
+
- Manual test execution
|
|
28
|
+
- Manual log analysis
|
|
29
|
+
- Manual risk assessment
|
|
30
|
+
- Human bottleneck at every stage
|
|
31
|
+
|
|
32
|
+
**Automation QE:** Scripts handle repetitive tasks
|
|
33
|
+
- Automated regression tests
|
|
34
|
+
- Scripted checks
|
|
35
|
+
- Fixed test scenarios
|
|
36
|
+
- Still requires human orchestration
|
|
37
|
+
|
|
38
|
+
**Agentic QE:** AI agents collaborate with humans
|
|
39
|
+
- Agents analyze code changes and generate tests
|
|
40
|
+
- Agents detect patterns and anomalies autonomously
|
|
41
|
+
- Agents adapt strategies based on feedback
|
|
42
|
+
- Humans focus on context, risk, and judgment
|
|
43
|
+
|
|
44
|
+
### Core Premise
|
|
45
|
+
|
|
46
|
+
**Agents amplify human expertise, not replace it.**
|
|
47
|
+
|
|
48
|
+
The goal: More effective quality engineers who can:
|
|
49
|
+
- Scale across 10x more code
|
|
50
|
+
- Find patterns hidden in data volumes
|
|
51
|
+
- Adapt testing strategy in real-time
|
|
52
|
+
- Focus on high-value activities (exploratory testing, risk analysis, architecture review)
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## The Agentic QE Architecture
|
|
57
|
+
|
|
58
|
+
### Multi-Agent Fleet (17 Specialized Agents)
|
|
59
|
+
|
|
60
|
+
**Core Testing Agents (5):**
|
|
61
|
+
- `qe-test-generator` - AI-powered test generation with sublinear optimization
|
|
62
|
+
- `qe-test-executor` - Multi-framework parallel test execution
|
|
63
|
+
- `qe-coverage-analyzer` - Real-time gap detection with O(log n) algorithms
|
|
64
|
+
- `qe-quality-gate` - Intelligent quality gate with risk assessment
|
|
65
|
+
- `qe-quality-analyzer` - Comprehensive quality metrics analysis
|
|
66
|
+
|
|
67
|
+
**Performance & Security (2):**
|
|
68
|
+
- `qe-performance-tester` - Load testing with k6/JMeter/Gatling
|
|
69
|
+
- `qe-security-scanner` - SAST/DAST multi-layer scanning
|
|
70
|
+
|
|
71
|
+
**Strategic Planning (3):**
|
|
72
|
+
- `qe-requirements-validator` - INVEST criteria + BDD generation
|
|
73
|
+
- `qe-production-intelligence` - Production data to test scenarios
|
|
74
|
+
- `qe-fleet-commander` - Hierarchical fleet coordination (50+ agents)
|
|
75
|
+
|
|
76
|
+
**Deployment (1):**
|
|
77
|
+
- `qe-deployment-readiness` - Multi-factor risk assessment
|
|
78
|
+
|
|
79
|
+
**Advanced Testing (4):**
|
|
80
|
+
- `qe-regression-risk-analyzer` - ML-driven test selection
|
|
81
|
+
- `qe-test-data-architect` - High-speed realistic data (10k+ records/sec)
|
|
82
|
+
- `qe-api-contract-validator` - Breaking change detection
|
|
83
|
+
- `qe-flaky-test-hunter` - Statistical flakiness detection + auto-fix
|
|
84
|
+
|
|
85
|
+
**Specialized (2):**
|
|
86
|
+
- `qe-visual-tester` - Visual regression with AI comparison
|
|
87
|
+
- `qe-chaos-engineer` - Controlled fault injection
|
|
88
|
+
|
|
89
|
+
### Agent Coordination Patterns
|
|
90
|
+
|
|
91
|
+
**Hierarchical:**
|
|
92
|
+
```
|
|
93
|
+
qe-fleet-commander
|
|
94
|
+
├── qe-test-generator → qe-test-executor → qe-coverage-analyzer
|
|
95
|
+
├── qe-security-scanner + qe-performance-tester (parallel)
|
|
96
|
+
└── qe-quality-gate (final validation)
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**Mesh (Peer-to-Peer):**
|
|
100
|
+
```
|
|
101
|
+
qe-test-generator ↔ qe-coverage-analyzer ↔ qe-quality-analyzer
|
|
102
|
+
↕ ↕ ↕
|
|
103
|
+
qe-requirements-validator ↔ qe-test-executor ↔ qe-quality-gate
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**Sequential (Pipeline):**
|
|
107
|
+
```
|
|
108
|
+
Code Change → qe-regression-risk-analyzer → qe-test-generator →
|
|
109
|
+
qe-test-executor → qe-coverage-analyzer → qe-quality-gate → Deploy
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## Key Capabilities
|
|
115
|
+
|
|
116
|
+
### 1. Intelligent Test Generation
|
|
117
|
+
|
|
118
|
+
**What agents do:**
|
|
119
|
+
- Analyze code changes (git diff)
|
|
120
|
+
- Identify changed functions and dependencies
|
|
121
|
+
- Generate relevant test scenarios
|
|
122
|
+
- Prioritize based on risk and coverage gaps
|
|
123
|
+
|
|
124
|
+
**Example:**
|
|
125
|
+
```typescript
|
|
126
|
+
// Agent detects new payment method
|
|
127
|
+
async function processStripePayment(amount: number, token: string) {
|
|
128
|
+
// New code
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// Agent generates:
|
|
132
|
+
// ✓ Happy path test
|
|
133
|
+
// ✓ Invalid token test
|
|
134
|
+
// ✓ Zero/negative amount test
|
|
135
|
+
// ✓ Network timeout test
|
|
136
|
+
// ✓ Idempotency test
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
**Human role:** Review generated tests, add domain-specific edge cases, validate test quality
|
|
140
|
+
|
|
141
|
+
### 2. Pattern Detection in Logs
|
|
142
|
+
|
|
143
|
+
**What agents do:**
|
|
144
|
+
- Scan thousands of log lines in seconds
|
|
145
|
+
- Identify anomaly patterns
|
|
146
|
+
- Correlate errors across services
|
|
147
|
+
- Detect performance degradation trends
|
|
148
|
+
|
|
149
|
+
**Example:**
|
|
150
|
+
```
|
|
151
|
+
Agent finds pattern:
|
|
152
|
+
2025-10-20T10:15:32 [ERROR] Payment timeout (customer_123)
|
|
153
|
+
2025-10-20T10:16:01 [ERROR] Payment timeout (customer_456)
|
|
154
|
+
2025-10-20T10:16:18 [ERROR] Payment timeout (customer_789)
|
|
155
|
+
|
|
156
|
+
Agent analysis:
|
|
157
|
+
→ 15 payment timeouts in 5 minutes
|
|
158
|
+
→ All timeouts to Stripe gateway
|
|
159
|
+
→ Started after deploy at 10:14:00
|
|
160
|
+
→ Recommendation: Rollback deployment
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
**Human role:** Validate analysis, make rollback decision, fix root cause
|
|
164
|
+
|
|
165
|
+
### 3. Adaptive Test Strategy
|
|
166
|
+
|
|
167
|
+
**What agents do:**
|
|
168
|
+
- Monitor test results and production incidents
|
|
169
|
+
- Adjust test focus based on risk signals
|
|
170
|
+
- Re-prioritize test execution
|
|
171
|
+
- Recommend new test coverage
|
|
172
|
+
|
|
173
|
+
**Example:**
|
|
174
|
+
```
|
|
175
|
+
Agent detects:
|
|
176
|
+
- 5 production incidents in checkout (last 7 days)
|
|
177
|
+
- Current test coverage: 60%
|
|
178
|
+
- Flaky test rate: 8%
|
|
179
|
+
|
|
180
|
+
Agent adapts:
|
|
181
|
+
→ Increase checkout test coverage to 90%
|
|
182
|
+
→ Add chaos testing for payment gateway
|
|
183
|
+
→ Fix/quarantine flaky tests
|
|
184
|
+
→ Run checkout tests on every commit
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
**Human role:** Approve strategy changes, validate risk assessment, set guardrails
|
|
188
|
+
|
|
189
|
+
### 4. Root Cause Analysis
|
|
190
|
+
|
|
191
|
+
**What agents do:**
|
|
192
|
+
- Correlate test failures across test suites
|
|
193
|
+
- Link failures to code changes
|
|
194
|
+
- Identify affected components
|
|
195
|
+
- Suggest likely root causes
|
|
196
|
+
|
|
197
|
+
**Example:**
|
|
198
|
+
```
|
|
199
|
+
Test failure: "API returns 500 on POST /orders"
|
|
200
|
+
|
|
201
|
+
Agent analysis:
|
|
202
|
+
→ 12 tests failing (all order-related)
|
|
203
|
+
→ Started after commit abc123
|
|
204
|
+
→ Changed file: order-service.ts
|
|
205
|
+
→ Root cause: Missing null check on line 45
|
|
206
|
+
→ Confidence: 95%
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
**Human role:** Verify root cause, implement fix, validate solution
|
|
210
|
+
|
|
211
|
+
### 5. Documentation Generation
|
|
212
|
+
|
|
213
|
+
**What agents do:**
|
|
214
|
+
- Generate test reports
|
|
215
|
+
- Create API documentation from code
|
|
216
|
+
- Build quality dashboards
|
|
217
|
+
- Write test summaries
|
|
218
|
+
|
|
219
|
+
**Example:**
|
|
220
|
+
```markdown
|
|
221
|
+
# Sprint 42 Quality Report (Agent-Generated)
|
|
222
|
+
|
|
223
|
+
## Test Coverage
|
|
224
|
+
- Unit: 85% (↑ 3% from last sprint)
|
|
225
|
+
- Integration: 72% (↑ 5%)
|
|
226
|
+
- E2E: Critical paths at 100%
|
|
227
|
+
|
|
228
|
+
## Bugs Found
|
|
229
|
+
- Critical: 2 (fixed)
|
|
230
|
+
- High: 5 (4 fixed, 1 in progress)
|
|
231
|
+
- Medium: 12 (triaged)
|
|
232
|
+
|
|
233
|
+
## Risk Assessment
|
|
234
|
+
🔴 Payment gateway timeout (production incident)
|
|
235
|
+
🟡 Checkout flow performance degrading
|
|
236
|
+
🟢 Authentication stable
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
**Human role:** Review report, add context, present to stakeholders
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
## PACT Principles for Agentic QE
|
|
244
|
+
|
|
245
|
+
### Proactive
|
|
246
|
+
**Agents act before problems occur:**
|
|
247
|
+
- Analyze code changes pre-merge
|
|
248
|
+
- Predict high-risk areas
|
|
249
|
+
- Generate tests for new code
|
|
250
|
+
- Monitor trends in real-time
|
|
251
|
+
|
|
252
|
+
**Example:** Agent detects increasing error rate and generates alerts before customer impact
|
|
253
|
+
|
|
254
|
+
### Autonomous
|
|
255
|
+
**Agents work independently:**
|
|
256
|
+
- Execute tests without human trigger
|
|
257
|
+
- Prioritize test execution
|
|
258
|
+
- Generate test data
|
|
259
|
+
- Fix flaky tests automatically
|
|
260
|
+
|
|
261
|
+
**Example:** Agent detects flaky test, identifies root cause (timing issue), applies fix, creates PR
|
|
262
|
+
|
|
263
|
+
### Collaborative
|
|
264
|
+
**Agents work with humans and other agents:**
|
|
265
|
+
- Multi-agent coordination (test-gen → test-exec → coverage)
|
|
266
|
+
- Human-in-the-loop for critical decisions
|
|
267
|
+
- Share insights across team
|
|
268
|
+
- Learn from human feedback
|
|
269
|
+
|
|
270
|
+
**Example:** Agent generates tests, human reviews and adds domain knowledge, agent learns patterns
|
|
271
|
+
|
|
272
|
+
### Targeted
|
|
273
|
+
**Agents focus on high-value work:**
|
|
274
|
+
- Risk-based test prioritization
|
|
275
|
+
- Coverage of critical paths
|
|
276
|
+
- Ignore low-risk areas
|
|
277
|
+
- Optimize for impact
|
|
278
|
+
|
|
279
|
+
**Example:** Agent focuses 80% of testing on payment and auth (high risk) vs 20% on admin panel (low risk)
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
## Using with QE Agents
|
|
284
|
+
|
|
285
|
+
### Agent Assignment by Skill
|
|
286
|
+
|
|
287
|
+
Each of the 17 QE agents uses this foundational skill plus specialized skills:
|
|
288
|
+
|
|
289
|
+
**qe-test-generator:**
|
|
290
|
+
- `agentic-quality-engineering` (core)
|
|
291
|
+
- `api-testing-patterns`
|
|
292
|
+
- `tdd-london-chicago`
|
|
293
|
+
- `test-automation-strategy`
|
|
294
|
+
|
|
295
|
+
**qe-coverage-analyzer:**
|
|
296
|
+
- `agentic-quality-engineering` (core)
|
|
297
|
+
- `quality-metrics`
|
|
298
|
+
- `risk-based-testing`
|
|
299
|
+
|
|
300
|
+
**qe-flaky-test-hunter:**
|
|
301
|
+
- `agentic-quality-engineering` (core)
|
|
302
|
+
- `exploratory-testing-advanced`
|
|
303
|
+
- `risk-based-testing`
|
|
304
|
+
|
|
305
|
+
**qe-security-scanner:**
|
|
306
|
+
- `agentic-quality-engineering` (core)
|
|
307
|
+
- `security-testing`
|
|
308
|
+
- `risk-based-testing`
|
|
309
|
+
|
|
310
|
+
*See `.claude/agents/` for complete agent definitions and skill mappings.*
|
|
311
|
+
|
|
312
|
+
### Agent Coordination Examples
|
|
313
|
+
|
|
314
|
+
**Example 1: PR Quality Gate**
|
|
315
|
+
```typescript
|
|
316
|
+
// 1. qe-regression-risk-analyzer scans PR
|
|
317
|
+
const riskAreas = await agent.analyzeRisk(prDiff);
|
|
318
|
+
|
|
319
|
+
// 2. qe-test-generator creates targeted tests
|
|
320
|
+
const newTests = await agent.generateTests(riskAreas);
|
|
321
|
+
|
|
322
|
+
// 3. qe-test-executor runs test suite
|
|
323
|
+
const results = await agent.executeTests(newTests);
|
|
324
|
+
|
|
325
|
+
// 4. qe-coverage-analyzer checks gaps
|
|
326
|
+
const gaps = await agent.analyzeCoverage(results);
|
|
327
|
+
|
|
328
|
+
// 5. qe-quality-gate makes decision
|
|
329
|
+
const decision = await agent.evaluateQuality(results, gaps);
|
|
330
|
+
// → PASS: All critical tests passed, coverage > 85%
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
**Example 2: Production Intelligence Loop**
|
|
334
|
+
```typescript
|
|
335
|
+
// 1. qe-production-intelligence monitors production
|
|
336
|
+
const incidents = await agent.monitorProduction();
|
|
337
|
+
|
|
338
|
+
// 2. Agent converts incident to test scenario
|
|
339
|
+
const testScenario = await agent.incidentToTest(incidents[0]);
|
|
340
|
+
|
|
341
|
+
// 3. qe-test-generator implements test
|
|
342
|
+
const test = await agent.generateTest(testScenario);
|
|
343
|
+
|
|
344
|
+
// 4. qe-test-executor validates fix
|
|
345
|
+
const result = await agent.executeTest(test);
|
|
346
|
+
// → Test now prevents regression
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
---
|
|
350
|
+
|
|
351
|
+
## Practical Implementation Guide
|
|
352
|
+
|
|
353
|
+
### Phase 1: Experiment (Weeks 1-4)
|
|
354
|
+
|
|
355
|
+
**Goal:** Validate value with one use case
|
|
356
|
+
|
|
357
|
+
**Pick one agent + one use case:**
|
|
358
|
+
- `qe-test-generator` for PR test generation
|
|
359
|
+
- `qe-coverage-analyzer` for gap detection
|
|
360
|
+
- `qe-quality-gate` for automated quality checks
|
|
361
|
+
|
|
362
|
+
**Measure:**
|
|
363
|
+
- Tests generated per PR
|
|
364
|
+
- Coverage improvements
|
|
365
|
+
- Bugs caught before production
|
|
366
|
+
- Time saved
|
|
367
|
+
|
|
368
|
+
**Example:**
|
|
369
|
+
```bash
|
|
370
|
+
# Week 1: Deploy qe-test-generator
|
|
371
|
+
aqe agent spawn qe-test-generator
|
|
372
|
+
|
|
373
|
+
# Week 2-3: Generate tests for 10 PRs
|
|
374
|
+
# Track: How many bugs found, test quality, human review time
|
|
375
|
+
|
|
376
|
+
# Week 4: Measure impact
|
|
377
|
+
aqe agent metrics qe-test-generator
|
|
378
|
+
# Result: 150 tests generated, 12 bugs found, 8 hours saved
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
### Phase 2: Integrate (Months 2-3)
|
|
382
|
+
|
|
383
|
+
**Goal:** Build into CI/CD pipeline
|
|
384
|
+
|
|
385
|
+
**Add agents to workflow:**
|
|
386
|
+
```yaml
|
|
387
|
+
# .github/workflows/quality-gate.yml
|
|
388
|
+
name: Agentic Quality Gate
|
|
389
|
+
|
|
390
|
+
on: [pull_request]
|
|
391
|
+
|
|
392
|
+
jobs:
|
|
393
|
+
quality-check:
|
|
394
|
+
runs-on: ubuntu-latest
|
|
395
|
+
steps:
|
|
396
|
+
- name: Analyze Risk
|
|
397
|
+
run: aqe agent run qe-regression-risk-analyzer
|
|
398
|
+
|
|
399
|
+
- name: Generate Tests
|
|
400
|
+
run: aqe agent run qe-test-generator
|
|
401
|
+
|
|
402
|
+
- name: Execute Tests
|
|
403
|
+
run: aqe agent run qe-test-executor
|
|
404
|
+
|
|
405
|
+
- name: Check Coverage
|
|
406
|
+
run: aqe agent run qe-coverage-analyzer
|
|
407
|
+
|
|
408
|
+
- name: Quality Gate
|
|
409
|
+
run: aqe agent run qe-quality-gate
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
**Create feedback loops:**
|
|
413
|
+
- Agents learn from which tests find bugs
|
|
414
|
+
- Humans label false positives
|
|
415
|
+
- System adapts over time
|
|
416
|
+
|
|
417
|
+
### Phase 3: Scale (Months 4-6)
|
|
418
|
+
|
|
419
|
+
**Goal:** Expand to multiple use cases
|
|
420
|
+
|
|
421
|
+
**Add more agents:**
|
|
422
|
+
- Performance testing (`qe-performance-tester`)
|
|
423
|
+
- Security scanning (`qe-security-scanner`)
|
|
424
|
+
- Flaky test detection (`qe-flaky-test-hunter`)
|
|
425
|
+
|
|
426
|
+
**Coordinate agents:**
|
|
427
|
+
```typescript
|
|
428
|
+
// Fleet coordination
|
|
429
|
+
const fleet = await FleetManager.init({
|
|
430
|
+
topology: 'hierarchical',
|
|
431
|
+
agents: [
|
|
432
|
+
'qe-fleet-commander',
|
|
433
|
+
'qe-test-generator',
|
|
434
|
+
'qe-test-executor',
|
|
435
|
+
'qe-coverage-analyzer',
|
|
436
|
+
'qe-security-scanner',
|
|
437
|
+
'qe-quality-gate'
|
|
438
|
+
]
|
|
439
|
+
});
|
|
440
|
+
|
|
441
|
+
// Commander orchestrates all agents
|
|
442
|
+
await fleet.commander.orchestrate(pullRequest);
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
### Phase 4: Evolve (Ongoing)
|
|
446
|
+
|
|
447
|
+
**Goal:** Continuous improvement through learning
|
|
448
|
+
|
|
449
|
+
**Agent learning:**
|
|
450
|
+
- Track success rates
|
|
451
|
+
- Learn from human corrections
|
|
452
|
+
- Adapt to codebase patterns
|
|
453
|
+
- Improve over time
|
|
454
|
+
|
|
455
|
+
**Metrics:**
|
|
456
|
+
```bash
|
|
457
|
+
aqe learn status --agent test-generator
|
|
458
|
+
# Shows: Learning progress, pattern recognition, success rate
|
|
459
|
+
```
|
|
460
|
+
|
|
461
|
+
---
|
|
462
|
+
|
|
463
|
+
## Challenges and Limitations
|
|
464
|
+
|
|
465
|
+
### What Agents Can't Do (Yet)
|
|
466
|
+
|
|
467
|
+
**Business Context:**
|
|
468
|
+
- Agents don't understand "why" features exist
|
|
469
|
+
- Can't prioritize based on business value without guidance
|
|
470
|
+
- Need humans to explain domain constraints
|
|
471
|
+
|
|
472
|
+
**Ethical Judgment:**
|
|
473
|
+
- Agents can't make ethical decisions
|
|
474
|
+
- Can't balance competing priorities (speed vs quality)
|
|
475
|
+
- Need human oversight for critical decisions
|
|
476
|
+
|
|
477
|
+
**Creative Exploration:**
|
|
478
|
+
- Agents follow patterns, humans explore unknown unknowns
|
|
479
|
+
- Humans excel at "what if" scenarios
|
|
480
|
+
- Agents need structured problems
|
|
481
|
+
|
|
482
|
+
**Domain Expertise:**
|
|
483
|
+
- Agents lack deep domain knowledge (healthcare, finance, legal)
|
|
484
|
+
- Can't replace subject matter experts
|
|
485
|
+
- Need human context for specialized systems
|
|
486
|
+
|
|
487
|
+
### What Agents Excel At
|
|
488
|
+
|
|
489
|
+
**Data Volume:**
|
|
490
|
+
- Scan thousands of log lines in seconds
|
|
491
|
+
- Analyze entire codebases
|
|
492
|
+
- Process metrics from hundreds of services
|
|
493
|
+
|
|
494
|
+
**Pattern Detection:**
|
|
495
|
+
- Find correlations humans would miss
|
|
496
|
+
- Detect subtle anomalies
|
|
497
|
+
- Identify trends over time
|
|
498
|
+
|
|
499
|
+
**Tireless Repetition:**
|
|
500
|
+
- Run tests 24/7
|
|
501
|
+
- Monitor systems continuously
|
|
502
|
+
- Never get bored or tired
|
|
503
|
+
|
|
504
|
+
**Rapid Feedback:**
|
|
505
|
+
- Instant analysis of code changes
|
|
506
|
+
- Real-time test generation
|
|
507
|
+
- Immediate coverage feedback
|
|
508
|
+
|
|
509
|
+
---
|
|
510
|
+
|
|
511
|
+
## Best Practices
|
|
512
|
+
|
|
513
|
+
### 1. Start Small
|
|
514
|
+
```
|
|
515
|
+
✅ Deploy one agent for one use case
|
|
516
|
+
❌ Deploy all 17 agents at once
|
|
517
|
+
|
|
518
|
+
✅ Measure impact before scaling
|
|
519
|
+
❌ Assume agents will work perfectly
|
|
520
|
+
|
|
521
|
+
✅ Build feedback loops early
|
|
522
|
+
❌ Deploy and forget
|
|
523
|
+
```
|
|
524
|
+
|
|
525
|
+
### 2. Human-Agent Collaboration
|
|
526
|
+
```
|
|
527
|
+
✅ Agent generates tests → Human reviews → Agent learns
|
|
528
|
+
❌ Agent generates tests → Auto-merge without review
|
|
529
|
+
|
|
530
|
+
✅ Agent flags risk → Human investigates → Agent refines
|
|
531
|
+
❌ Agent decides to block deployment autonomously
|
|
532
|
+
|
|
533
|
+
✅ Agent detects anomaly → Human confirms → Agent adapts
|
|
534
|
+
❌ Agent takes action without human validation
|
|
535
|
+
```
|
|
536
|
+
|
|
537
|
+
### 3. Measure Value
|
|
538
|
+
```
|
|
539
|
+
Track:
|
|
540
|
+
- Time saved (manual testing → agent testing)
|
|
541
|
+
- Bugs caught (pre-production vs production)
|
|
542
|
+
- Coverage improvement (before vs after)
|
|
543
|
+
- Developer confidence (survey)
|
|
544
|
+
|
|
545
|
+
Don't track:
|
|
546
|
+
- Number of tests generated (vanity metric)
|
|
547
|
+
- Agent uptime (not meaningful)
|
|
548
|
+
- Lines of code analyzed (doesn't show value)
|
|
549
|
+
```
|
|
550
|
+
|
|
551
|
+
### 4. Build Trust Gradually
|
|
552
|
+
```
|
|
553
|
+
Month 1: Agent suggests, human decides
|
|
554
|
+
Month 2: Agent acts, human reviews after
|
|
555
|
+
Month 3: Agent acts autonomously on low-risk tasks
|
|
556
|
+
Month 4: Agent handles critical tasks with human oversight
|
|
557
|
+
```
|
|
558
|
+
|
|
559
|
+
---
|
|
560
|
+
|
|
561
|
+
## Related Skills
|
|
562
|
+
|
|
563
|
+
**Core Quality Practices:**
|
|
564
|
+
- [holistic-testing-pact](../holistic-testing-pact/) - PACT principles for agentic systems
|
|
565
|
+
- [context-driven-testing](../context-driven-testing/) - Adapt testing to context
|
|
566
|
+
- [risk-based-testing](../risk-based-testing/) - Focus agents on high-risk areas
|
|
567
|
+
|
|
568
|
+
**Testing Specializations:**
|
|
569
|
+
- [api-testing-patterns](../api-testing-patterns/) - API testing with agents
|
|
570
|
+
- [performance-testing](../performance-testing/) - Load testing automation
|
|
571
|
+
- [security-testing](../security-testing/) - Security scanning agents
|
|
572
|
+
- [test-automation-strategy](../test-automation-strategy/) - Automation best practices
|
|
573
|
+
|
|
574
|
+
**Development Practices:**
|
|
575
|
+
- [tdd-london-chicago](../tdd-london-chicago/) - TDD with agent assistance
|
|
576
|
+
- [xp-practices](../xp-practices/) - Pair programming with agents
|
|
577
|
+
|
|
578
|
+
**Communication:**
|
|
579
|
+
- [technical-writing](../technical-writing/) - Agent-generated documentation
|
|
580
|
+
- [quality-metrics](../quality-metrics/) - Metrics for agent effectiveness
|
|
581
|
+
|
|
582
|
+
---
|
|
583
|
+
|
|
584
|
+
## Resources
|
|
585
|
+
|
|
586
|
+
**Documentation:**
|
|
587
|
+
- [AQE Fleet Original Requirements](../../../docs/Agentic-QE-Framework.md)
|
|
588
|
+
- [Agent Definitions](../../../.claude/agents/)
|
|
589
|
+
- [CLI Reference](../../../src/cli/)
|
|
590
|
+
|
|
591
|
+
**Learning:**
|
|
592
|
+
- Start with `qe-test-generator` for immediate value
|
|
593
|
+
- Use `aqe agent --help` for CLI commands
|
|
594
|
+
- Read agent-specific docs in `.claude/agents/`
|
|
595
|
+
|
|
596
|
+
**Community:**
|
|
597
|
+
- [GitHub Discussions](https://github.com/proffesor-for-testing/agentic-qe-cf/discussions)
|
|
598
|
+
- [Issue Tracker](https://github.com/proffesor-for-testing/agentic-qe-cf/issues)
|
|
599
|
+
|
|
600
|
+
---
|
|
601
|
+
|
|
602
|
+
**Remember:** Agentic QE amplifies human expertise, it doesn't replace it. The goal is more effective quality engineers who can scale their impact 10x through intelligent agent collaboration.
|
|
603
|
+
|
|
604
|
+
**Success Metric:** Can your QE team confidently deploy 10x more frequently with the same or better quality? If yes, agentic QE is working.
|