Version 2.7.4 | Changelog | Contributors | Issues | Discussions
AI-powered test automation that learns from every task, switches between 300+ AI models on-the-fly, scores code testability, visualizes agent activity in real-time, and improves autonomously overnight β with built-in safety guardrails and full observability.
π¨ Real-Time Visualization | π Testability Scoring | π§ QE Agent Learning | π QUIC Transport | π Constitution System | π 46 QE Skills | π― Flaky Detection | π° Multi-Model Router | π n8n Workflow Testing
# Install globally
npm install -g agentic-qe
# Initialize your project
cd your-project
aqe init
# Add MCP server to Claude Code (optional)
claude mcp add agentic-qe npx aqe-mcp
# Verify connection
claude mcp listAsk Claude to use AQE agents directly from your terminal:
# Generate comprehensive tests
claude "Use qe-test-generator to create tests for src/services/user-service.ts with 95% coverage"
# Run quality pipeline
claude "Initialize AQE fleet: generate tests, execute them, analyze coverage, and run quality gate"
# Detect flaky tests
claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify flaky tests"What gets initialized:
- β Real-time Visualization: Dashboards, interactive graphs, WebSocket streaming
- β Observability Stack: OpenTelemetry, Event Store, Constitution System
- β HybridRouter: Intelligent LLM routing with 70-81% cost savings
- β Self-Learning System: Agents improve with every task (20% target)
- β Pattern Bank: Cross-project pattern reuse (85%+ matching)
- β ML Flaky Detection: 90%+ accuracy with root cause analysis
- β 21 QE Agents: Including Code Intelligence (80% token reduction)
- β 15 n8n Agents: Workflow testing by @fndlalit
- β 11 TDD Subagents: RED/GREEN/REFACTOR phases
- β 46 QE Skills: Including testability-scoring by @fndlalit
- β 8 Slash Commands: Quick access to common workflows
Optional Configuration (.env):
# Enable advanced features (see .env.example)
LLM_MODE=hybrid # Cost-optimized routing
AQE_RUVECTOR_ENABLED=true # Self-learning with PostgreSQL| 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 (90%+ accuracy) with root cause analysis and fix recommendations |
| AI testing tools are expensive | Multi-model routing cuts costs by up to 70-81% by matching task complexity to model |
| No memory between test runsβevery analysis starts from scratch | Self-learning system remembers patterns, strategies, and what works for your codebase |
| Agents waste tokens reading irrelevant code | Code Intelligence provides 80% token reduction with semantic search and knowledge graphs |
| Tools don't understand your testing frameworks | Works with Jest, Cypress, Playwright, Vitest, Mocha, Jasmine, AVA |
Unlike traditional testing tools that start from scratch every run, AQE agents build institutional knowledge for your codebase:
| What Gets Learned | Benefit |
|---|---|
| Test patterns that work for your framework | 85%+ pattern reuse across projects |
| Optimal strategies for your codebase structure | Faster, more relevant test generation |
| Failure patterns and how to prevent them | Proactive defect prevention |
| Cost-effective routing decisions | Automatic budget optimization |
4 Reinforcement Learning Algorithms: Q-Learning (default), SARSA, Actor-Critic (A2C), PPO
# Check what your agents have learned
aqe learn status --agent qe-test-generator
aqe patterns list --framework jestHybridRouter automatically matches task complexity to the right model:
| Task Type | Model Selected | Cost |
|---|---|---|
| Simple (formatting, syntax) | Claude Haiku / GPT-3.5 | $0.25/M |
| Moderate (unit tests, refactoring) | Claude Sonnet / GPT-4 Turbo | $3/M |
| Complex (architecture, security) | Claude Opus 4.5 / GPT-5 | $15/M |
| Reasoning-heavy | DeepSeek R1 / o1-preview | Varies |
25+ December 2025 models including Claude Opus 4.5, DeepSeek R1 (671B), GPT-5, Gemini 2.5 Pro
| Category | Agents | Highlights |
|---|---|---|
| Core QE | 21 agents | Test generation, coverage, security, performance, accessibility |
| TDD Workflow | 11 subagents | RED/GREEN/REFACTOR phases with coordination |
| n8n Workflow Testing | 15 agents | Chaos, compliance, security, BDD scenarios |
| Base | 1 template | Create custom agents |
Zero external dependencies - Native hooks system runs 100-500x faster than external coordination
90%+ accuracy with automated root cause analysis:
- Statistical pattern detection across test runs
- Timing analysis and race condition identification
- Auto-fix recommendations with code suggestions
- Integration with CI/CD for continuous monitoring
claude "Use qe-flaky-test-hunter to analyze the last 100 test runs"Stop wasting tokens on irrelevant code. Semantic search + knowledge graphs deliver only what matters:
- Tree-sitter parsing for TypeScript, Python, Go, Rust, JavaScript
- Hybrid search: BM25 + vector similarity with <10ms latency
- RAG context building for LLM queries
- Mermaid visualization of code relationships
aqe kg index src/ # Index your codebase
aqe kg search "auth flow" # Semantic searchSee your agents work with live dashboards:
- MindMap: 1000+ nodes, <500ms render, WebSocket updates
- Quality Radar: 7-dimension chart (coverage, security, performance)
- Timeline: Virtual scrolling for 1000+ events
- Grafana: Executive, Developer, and QA dashboards
Performance: 185 events/sec throughput, <1ms query latency
95%+ coverage of modern QE practices - agents automatically apply relevant skills:
View All 46 Skills
Core Testing & Methodologies
- agentic-quality-engineering, holistic-testing-pact, context-driven-testing
- tdd-london-chicago, xp-practices, risk-based-testing, test-automation-strategy
Specialized Testing
- accessibility-testing, mobile-testing, database-testing, contract-testing
- chaos-engineering-resilience, visual-testing-advanced, compliance-testing
Strategic & Communication
- six-thinking-hats, brutal-honesty-review, sherlock-review
- cicd-pipeline-qe-orchestrator, bug-reporting-excellence
n8n Workflow Testing (contributed by @fndlalit)
- n8n-workflow-testing, n8n-expression-testing, n8n-security-testing
Unique Skills
- testability-scoring - Score code testability before writing tests
- qx-partner - QA + UX collaboration for quality experience
Works with your existing tools:
| Category | Supported |
|---|---|
| Unit Testing | Jest, Mocha, Vitest, Jasmine, AVA |
| E2E Testing | Cypress, Playwright |
| Performance | k6, JMeter, Gatling |
| Code Quality | ESLint, SonarQube, Lighthouse |
Parallel execution: 10,000+ concurrent tests with intelligent orchestration
Ask Claude to use a specific agent:
claude "Use the qe-test-generator agent to create comprehensive tests for src/services/user-service.ts with 95% coverage"What happens:
- Claude Code spawns qe-test-generator via Task tool
- Agent analyzes the source file
- Generates tests with pattern matching (Phase 2 feature)
- Stores results in memory at
aqe/test-plan/generated
Output:
Generated 42 tests
Pattern hit rate: 67%
Time saved: 2.3s
Quality score: 96%
Coordinate multiple agents at once:
claude "Initialize the AQE fleet:
1. Use qe-test-generator to create tests for src/services/*.ts
2. Use qe-test-executor to run all tests in parallel
3. Use qe-coverage-analyzer to find gaps with sublinear algorithms
4. Use qe-quality-gate to validate against 95% threshold"What happens:
- Claude spawns 4 agents concurrently in a single message
- Agents coordinate through
aqe/*memory namespace - Pipeline: test generator β executor β analyzer β gate
- Real-time streaming progress updates
Memory namespaces:
aqe/test-plan/*- Test planning and requirementsaqe/coverage/*- Coverage analysis resultsaqe/performance/*- Performance test dataaqe/quality/*- Quality metrics
Agents automatically leverage skills:
claude "Use qe-test-generator with shift-left-testing and test-design-techniques skills to create tests before implementing the new payment feature"Available skills (agents auto-select from 40):
- TDD, API testing, performance, security
- Accessibility, mobile, chaos engineering, visual testing
- Regression, shift-left/right, compliance, verification
- Six thinking hats, brutal honesty reviews, CI/CD orchestration
- XP practices, technical writing, refactoring patterns
End-to-end quality workflow:
claude "Run the full AQE quality pipeline:
1. qe-requirements-validator - validate requirements are testable
2. qe-test-generator - generate comprehensive test suite
3. qe-test-executor - run tests with parallel execution
4. qe-coverage-analyzer - analyze gaps using O(log n) algorithms
5. qe-flaky-test-hunter - detect flaky tests with ML-powered analysis
6. qe-security-scanner - run SAST/DAST scans
7. qe-performance-tester - load test critical paths
8. qe-quality-gate - validate all quality criteria met
9. qe-deployment-readiness - assess deployment risk"# API contract validation
claude "Use qe-api-contract-validator to check if the new API changes break any existing contracts"
# Visual regression testing
claude "Use qe-visual-tester to compare screenshots of the updated dashboard against baseline"
# Chaos engineering
claude "Use qe-chaos-engineer to inject random failures and validate system resilience"
# Flaky test detection with ML
claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify flaky tests with ML-powered root cause analysis"
# Code complexity analysis
claude "Use qe-code-complexity to analyze src/ directory and get refactoring recommendations for complex code"# Coordinate 50+ agents for large projects
claude "Use qe-fleet-commander to coordinate parallel testing across 8 microservices with 50 agents total"You can also use agents through MCP tools:
# Check MCP connection
claude mcp list
# Direct MCP tool usage (in Claude Code)
# Generate tests
mcp__agentic_qe__test_generate({
type: "unit",
framework: "jest",
targetFile: "src/user-service.ts"
})
# Execute tests
mcp__agentic_qe__test_execute({
parallel: true,
coverage: true
})
# Analyze coverage
mcp__agentic_qe__coverage_analyze({
threshold: 95
})All 92 MCP Tools Available:
- Fleet Management (9 tools): init, spawn, status, coordinate, orchestrate
- Test Generation (2 tools): generate enhanced, execute
- Test Execution (3 tools): execute, parallel, stream
- Coverage Analysis (4 tools): analyze with risk scoring, detect gaps ML, trends, recommendations
- Quality Gates (3 tools): execute, validate metrics, generate report
- Flaky Test Detection (2 tools): detect statistical, analyze patterns
- Performance Testing (3 tools): benchmark, analyze bottlenecks, generate a report
- Security Scanning (2 tools): comprehensive scan, detect vulnerabilities
- Visual Testing (3 tools): compare screenshots, accessibility validation, regression detection
- API Contract Testing (3 tools): validate, breaking changes, versioning
- Test Data Management (3 tools): generate, mask, analyze schema
- Code Quality (2 tools): complexity analysis, metrics
- Memory & Collaboration (5 tools): store, retrieve, query, share, backup
- Blackboard System (2 tools): post, read
- Consensus Mechanisms (2 tools): propose, vote
- Workflow Management (4 tools): create, execute, checkpoint, resume
- Event System (2 tools): emit, subscribe
- Regression Analysis (2 tools): analyze risk, select tests
- Production Monitoring (2 tools): incident replay, RUM analysis
- Mutation Testing (1 tool): execute
- Deployment Readiness (1 tool): check
- Artifact Management (1 tool): manifest
- Task Management (1 tool): status
- Learning System (4 tools): store experience, store Q-value, store pattern, query
# Generate tests
aqe test src/services/user-service.ts
# Analyze coverage
aqe coverage --threshold 95
# Run quality gate
aqe quality
# View fleet status
aqe status --verbose
# Enable multi-model router (70-81% cost savings)
aqe routing enable
# Start learning system
aqe learn enable --all# Agents learn from execution
claude "Use qe-test-generator with learning enabled to create tests, then analyze improvement over time"
# Check learning metrics
aqe learn status --agent test-generatorExample Output:
π LEARNING STATUS
Agent: test-generator
Status: ENABLED β
Total Experiences: 247
Exploration Rate: 15.3%
Performance:
ββ Average Reward: 1.23
ββ Success Rate: 87.5%
ββ Improvement Rate: 18.7% (β target: 20%)
Top Strategies:
1. property-based (confidence: 92%, success: 95%)
2. mutation-based (confidence: 85%, success: 88%)
3. example-based (confidence: 78%, success: 82%)
# Extract and reuse patterns
claude "Use qe-test-generator to extract test patterns from existing tests, then apply them to new modules"
# List patterns
aqe patterns list --framework jestExample Output:
π¦ PATTERN LIBRARY (247 patterns)
ID | Name | Framework | Quality | Uses
-----------|---------------------------|-----------|---------|-----
pattern-001| Null Parameter Check | jest | 92% | 142
pattern-002| Empty Array Handling | jest | 89% | 98
pattern-003| API Timeout Test | cypress | 95% | 87
# Enable intelligent model routing
aqe routing enable
# View savings
claude "Check routing status and show cost savings"
aqe routing dashboardExample Output:
β
Multi-Model Router Status
Cost Summary (Last 30 Days):
Total Cost: $127.50
Baseline Cost: $545.00
Savings: $417.50 (76.6%)
Budget Status: ON TRACK β
Model Usage:
ββ gpt-3.5-turbo: 42% (simple tasks)
ββ claude-haiku: 31% (medium tasks)
ββ claude-sonnet-4.5: 20% (complex tasks)
ββ gpt-4: 7% (critical tasks)
- Batch agent operations: Always spawn multiple agents in one Claude message for parallel execution
- Use memory namespace: Agents coordinate through
aqe/*memory keys - Enable learning: Add
--enable-learningto agent commands for continuous improvement - Check agent status: Use
aqe statusto see active agents and coordination - Review agent output: Agents store detailed results in
.agentic-qe/logs/
Core Testing Agents (6 agents)
| Agent | Purpose | Key Features | Phase 2 Enhancements |
|---|---|---|---|
| test-generator | AI-powered test creation | Property-based testing, edge case detection | β Pattern matching, Learning |
| test-executor | Multi-framework execution | Parallel processing, retry logic, reporting | - |
| coverage-analyzer | Real-time gap analysis | O(log n) algorithms, trend tracking | β Learning, Pattern recommendations |
| quality-gate | Intelligent validation | ML-driven decisions, risk assessment | β Flaky test metrics |
| quality-analyzer | Metrics analysis | ESLint, SonarQube, Lighthouse integration | - |
| code-complexity | Complexity analysis | Cyclomatic/cognitive metrics, refactoring recommendations | β Educational agent |
Performance & Security (2 agents)
| Agent | Purpose | Key Features |
|---|---|---|
| performance-tester | Load & stress testing | k6, JMeter, Gatling, bottleneck detection |
| security-scanner | Vulnerability detection | SAST, DAST, dependency scanning |
Strategic Planning (3 agents)
| Agent | Purpose | Key Features |
|---|---|---|
| requirements-validator | Testability analysis | INVEST criteria, BDD generation |
| production-intelligence | Incident replay | RUM analysis, anomaly detection |
| fleet-commander | Hierarchical coordination | 50+ agent orchestration |
Advanced Testing (4 agents)
| Agent | Purpose | Key Features | Phase 2 Enhancements |
|---|---|---|---|
| regression-risk-analyzer | Smart test selection | ML patterns, AST analysis | β Pattern matching |
| test-data-architect | Realistic data generation | 10k+ records/sec, GDPR compliant | - |
| api-contract-validator | Breaking change detection | OpenAPI, GraphQL, gRPC | - |
| flaky-test-hunter | Stability analysis | Statistical detection, auto-fix | β 90%+ accuracy ML detection |
Specialized (4 agents)
| Agent | Purpose | Key Features |
|---|---|---|
| deployment-readiness | Release validation | Multi-factor risk scoring |
| visual-tester | UI regression | AI-powered comparison |
| chaos-engineer | Resilience testing | Fault injection, blast radius |
| a11y-ally | Accessibility testing | WCAG 2.2, AI video analysis, EU compliance |
General Purpose (1 agent)
| Agent | Purpose | Key Features |
|---|---|---|
| base-template-generator | Agent templates | General-purpose agent creation |
Total: 31 Agents (20 main agents + 11 TDD subagents)
Test-Driven Development Subagents
The test generator orchestrates a complete TDD workflow through specialized subagents:
| Subagent | Phase | Purpose | Key Features |
|---|---|---|---|
| qe-test-writer | RED | Write failing tests | Behavior specification, boundary analysis, assertion definition |
| qe-test-implementer | GREEN | Make tests pass | Minimal implementation, test-driven coding, incremental development |
| qe-test-refactorer | REFACTOR | Improve code quality | Code refactoring, design patterns, quality improvement |
| qe-code-reviewer | REVIEW | Quality validation | Standards enforcement, linting, complexity checking, security |
| qe-integration-tester | INTEGRATION | Component testing | API testing, database testing, service integration |
| qe-data-generator | GENERATION | Test data creation | Realistic data generation, constraint satisfaction, edge cases |
| qe-performance-validator | VALIDATION | Performance checks | SLA validation, benchmark comparison, threshold enforcement |
| qe-security-auditor | AUDIT | Security validation | Vulnerability detection, compliance checking, threat modeling |
| qe-flaky-investigator | ANALYSIS | Flaky test detection | Pattern detection, timing analysis, stabilization fixes |
| qe-coverage-gap-analyzer | ANALYSIS | Coverage gaps | Risk scoring, gap detection, test recommendations |
| qe-test-data-architect-sub | GENERATION | High-volume data | Schema-aware generation, relationship preservation |
Coordination Protocol:
All subagents use a unified coordination protocol with cycle-based memory namespaces (aqe/tdd/cycle-{id}/*) ensuring tests written in RED are the same tests validated in GREEN and refactored in REFACTOR. See Coordination Guide.
Usage Example:
claude "Use qe-test-generator to run the complete TDD workflow for src/services/payment.ts"The test generator automatically delegates to subagents for a complete RED-GREEN-REFACTOR-REVIEW cycle.
AQE supports multiple LLM providers for maximum flexibility and cost optimization:
| Provider | Type | Cost | Setup Time | Best For |
|---|---|---|---|---|
| Ollama | Local | FREE | 10 min | Privacy, offline, no budget |
| OpenRouter | Cloud | Paid/Free | 2 min | 300+ models, flexibility |
| Groq | Cloud | FREE | 1 min | High-speed, 14,400 req/day |
| GitHub Models | Cloud | FREE | 0 min | Codespaces, auto-detected |
| Claude API | Cloud | Paid | 2 min | Highest quality |
| Google AI | Cloud | FREE | 2 min | Gemini models, 1,500 req/day |
# 1. Get free API key from https://console.groq.com/
export GROQ_API_KEY="gsk_..."
# 2. Install AQE
npm install -g agentic-qe
aqe init
# 3. Start using
claude "Use qe-test-generator to create tests for UserService"# 1. Install Ollama
curl -fsSL https://ollama.com/install.sh | sh
# 2. Download model
ollama pull qwen3-coder:30b
# 3. Start server
ollama serve
# 4. Install AQE
npm install -g agentic-qe
aqe initimport { LLMProviderFactory } from 'agentic-qe';
const factory = new LLMProviderFactory({
defaultProvider: 'auto', // Auto-detect best provider
enableFallback: true, // Automatic failover
// Free tier cloud (primary)
openrouter: {
apiKey: process.env.OPENROUTER_API_KEY,
defaultModel: 'mistralai/devstral-2512:free' // FREE 123B model
},
// Local backup (unlimited)
ruvllm: {
defaultModel: 'qwen3-coder:30b'
}
});
await factory.initialize();FREE Tier:
- Best Quality:
mistralai/devstral-2512:free(123B, OpenRouter) - High Speed:
llama-3.3-70b-versatile(Groq, 14,400 req/day) - Local Privacy:
qwen3-coder:30b(Ollama, unlimited)
Paid Tier (Cost-Effective):
- Cheapest:
mistralai/devstral-small-2505($0.06/$0.12 per M) - Balanced:
qwen/qwen-2.5-coder-32b-instruct($0.18/$0.18 per M) - Premium:
claude-sonnet-4($3/$15 per M)
Monitor and manage LLM providers with built-in health checks and automatic failover:
# View provider health dashboard
aqe providers status
# Detailed metrics with circuit breaker states
aqe providers status --detailed
# Test specific provider connectivity
aqe providers test groq
# Check quota usage
aqe providers quotaFeatures:
- Circuit Breaker Pattern: Automatic detection of unhealthy providers (closed β half-open β open)
- Health-Aware Routing: Requests automatically route to healthy providers
- Quota Management: Per-provider rate limit tracking with alerts
- Fallback Chains: Graceful degradation when primary provider fails
- LLM Providers Guide - Complete provider overview
- Ollama Setup Guide - Local inference setup
- Free Tier Guide - Zero-cost deployment
- Config Schema - Full configuration reference
- Quick Start Guide - Get started in 5 minutes
- User Guide - Comprehensive workflows and examples
- MCP Integration - Claude Code integration
- Configuration Guide - Complete configuration reference
- Troubleshooting Guide - Common issues and solutions
Phase 2 Features (v1.1.0)
- Learning System User Guide - Q-learning and continuous improvement
- Pattern Management User Guide - Cross-project pattern sharing
- ML Flaky Detection Guide - 100% accurate flaky detection
- Performance Improvement Guide - A/B testing and optimization
Phase 1 Features (v1.0.5)
- Multi-Model Router Guide - Save 70% on AI costs
- Streaming API Tutorial - Real-time progress updates
- Cost Optimization Best Practices - Maximize ROI
- Test Generation - AI-powered test creation
- Coverage Analysis - O(log n) gap detection
- Quality Gates - Intelligent validation
- Performance Testing - Load and stress testing
- Test Execution - Parallel orchestration
- API Reference - Complete API documentation
- Agent Development - Create custom agents
- Agent Types Overview - Complete agent reference
- AQE Hooks Guide - Native coordination system
- Best Practices - Security and quality
- AQE Commands Overview - All CLI commands
- Command Specifications - Slash command reference
- Hooks Architecture - Coordination architecture
- Learning System Examples - Learning code examples
- Pattern Examples - Pattern usage examples
- Flaky Detection Examples - ML detection examples
- Routing Examples - Cost optimization examples
For detailed performance benchmarks and metrics, see docs/PERFORMANCE.md.
- Test Generation: Pattern-based with cross-project reuse
- Parallel Execution: Multi-framework concurrent tests
- Coverage Analysis: O(log n) sublinear algorithms
- Data Generation: 10,000+ records/second with GDPR compliance
- Agent Spawning: <100ms per agent
- Flaky Detection: 90%+ accuracy with ML-powered root cause analysis
# Clone repository
git clone https://github.com/proffesor-for-testing/agentic-qe.git
cd agentic-qe
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test| Script | Description |
|---|---|
npm run build |
Compile TypeScript to JavaScript |
npm run dev |
Development mode with hot reload |
npm test |
Run all test suites |
npm run test:unit |
Unit tests only |
npm run test:integration |
Integration tests |
npm run test:coverage |
Generate coverage report |
npm run lint |
ESLint code checking |
npm run lint:fix |
Auto-fix linting issues |
npm run typecheck |
TypeScript type checking |
agentic-qe/
βββ src/
β βββ agents/ # Agent implementation classes
β βββ core/ # Core fleet management
β βββ learning/ # Phase 2: Learning system
β βββ reasoning/ # Phase 2: Pattern bank
β βββ cli/ # Command-line interface
β βββ mcp/ # Model Context Protocol server
β βββ types/ # TypeScript type definitions
β βββ utils/ # Shared utilities
βββ tests/ # Comprehensive test suites
βββ examples/ # Usage examples
βββ docs/ # Documentation
βββ .claude/ # Agent & command definitions
β βββ agents/ # 19 main agent definitions
β β βββ subagents/ # 11 TDD subagent definitions
β βββ skills/ # 40 QE skill definitions
β βββ commands/ # 8 AQE slash commands
βββ config/ # Configuration files
We welcome contributions! Please see CONTRIBUTING.md for details.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes
- Add tests for new functionality
- Ensure all tests pass (
npm test) - Commit your changes (
git commit -m 'feat: add amazing feature') - Push to your branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Follow the existing code style
- Write comprehensive tests
- Update documentation
- Use conventional commits
- Ensure TypeScript types are accurate
- Documentation: docs/
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Email: [email protected]
This project is licensed under the MIT License - see the LICENSE file for details.
Thanks to all the amazing people who have contributed to Agentic QE Fleet!
![]() @proffesor-for-testing Project Lead |
![]() @fndlalit QX Partner, Testability |
![]() @shaal Core Development |
![]() @mondweep Architecture |
|---|
View all contributors | Become a contributor
If you find Agentic QE Fleet valuable, consider supporting its development:
| Monthly | Annual (Save $10) | |
|---|---|---|
| Price | $5/month | $50/year |
| Benefits | Sponsor recognition, Priority support | All monthly + Featured in README, Roadmap input |
| Subscribe | Monthly | Annual |
- Built with TypeScript, Node.js, and better-sqlite3
- Inspired by autonomous agent architectures and swarm intelligence
- Integrates with Jest, Cypress, Playwright, k6, SonarQube, and more
- Compatible with Claude Code via Model Context Protocol (MCP)
Made with β€οΈ by the Agentic QE Team



