proffesor-for-testing/agentic-qe
Agentic QE Fleet is an open-source AI-powered quality engineering platform designed for use with Claude Code, featuring specialized agents and skills to support testing activities for a product at any stage of the SDLC. Free to use, fork, build, and contribute. Based on the Agentic QE Framework created by Dragan Spiridonov.
npx skills add proffesor-for-testing/agentic-qeREADME
Agentic Quality Engineering Fleet
V3 (Main) | V2 Documentation | Changelog | Contributors | Issues | Discussions
V3 brings Domain-Driven Design architecture, 12 bounded contexts, 51 specialized QE agents, TinyDancer intelligent model routing, ReasoningBank learning with Dream cycles, HNSW vector search, mathematical Coherence verification (v3.3.0), and deep integration with Claude Flow and Agentic Flow.
ποΈ DDD Architecture | π§ ReasoningBank + Dream Cycles | π― TinyDancer Model Routing | π HNSW Vector Search | π Queen Coordinator | π O(log n) Coverage | π Claude Flow Integration | π― 12 Bounded Contexts | π 61 QE Skills | 𧬠Coherence Verification
β‘ Quick Start
Install & Initialize
# Install globally
npm install -g agentic-qe
# Initialize your project
cd your-project
aqe init --wizard
# Or with auto-configuration
aqe init --auto
# Add MCP server to Claude Code (pick one)
# Option 1: Global install (recommended after npm install -g)
claude mcp add aqe -- aqe-mcp
# Option 2: Via npx (no global install needed)
claude mcp add aqe -- npx agentic-qe mcp
# Verify connection
claude mcp list
Use from Claude Code CLI
Ask Claude to use QE agents directly from your terminal:
# Generate comprehensive tests with learning
claude "Use qe-test-architect to create tests for src/services/user-service.ts with 95% coverage"
# Run full quality pipeline with Queen coordination
claude "Use qe-queen-coordinator to orchestrate: test generation, coverage analysis, security scan, and quality gate"
# Detect flaky tests with root cause analysis
claude "Use qe-flaky-hunter to analyze the last 100 test runs and stabilize flaky tests"
What V3 provides:
- β 12 DDD Bounded Contexts: Organized by business domain (test-generation, coverage-analysis, security-compliance, etc.)
- β 51 QE Agents: Including Queen Coordinator for hierarchical orchestration (44 main + 7 TDD subagents)
- β TinyDancer Model Routing: 3-tier intelligent routing (Haiku/Sonnet/Opus) for cost optimization
- β ReasoningBank Learning: HNSW-indexed pattern storage with experience replay
- β O(log n) Coverage Analysis: Sublinear algorithms for efficient gap detection
- β Claude Flow Integration: Deep integration with MCP tools and swarm orchestration
- β
Memory Coordination: Cross-agent communication via
aqe/v3/*namespaces - β Coherence Verification (v3.3.0): Mathematical proof of belief consistency using WASM engines
- β V2 Backward Compatibility: All V2 agents map to V3 equivalents
- β 61 QE Skills: Domain-specific skills for testing, security, accessibility, and more
π― Why AQE?
| Problem | AQE Solution |
|---|---|
| Writing comprehensive tests is tedious and time-consuming | AI agents generate tests automatically with pattern reuse across projects |
| Test suites become slow and expensive at scale | Sublinear O(log n) algorithms for coverage analysis and intelligent test selection |
| Flaky tests waste developer time debugging false failures | ML-powered detection with root cause analysis and fix recommendations |
| AI testing tools are expensive | TinyDancer 3-tier model routing reduces costs by matching task complexity to appropriate model |
| No memory between test runsβevery analysis starts from scratch | ReasoningBank remembers patterns, strategies, and what works for your codebase |
| Agents waste tokens reading irrelevant code | Code Intelligence provides token reduction with semantic search and knowledge graphs |
| Quality engineering requires complex coordination | Queen Coordinator orchestrates 51 agents across 12 domains with consensus and MinCut topology |
| Tools don't understand your testing frameworks | Works with Jest, Cypress, Playwright, Vitest, Mocha, Jasmine, AVA |
β¨ V3 Features
ποΈ Domain-Driven Design Architecture
V3 is built on 12 DDD Bounded Contexts, each with dedicated agents and clear responsibilities:
| Domain | Purpose | Key Agents |
|---|---|---|
| test-generation | AI-powered test creation | qe-test-architect, qe-tdd-s |
...