proffesor-for-testing · agentic-qe
Quality is
the product.
Agentic QE Fleet is a free, open-source AI-powered quality engineering platform. It deploys 60 specialized agents and 75 skills that generate tests, find coverage gaps, detect flaky tests, and learn your codebase patterns — across 11 coding agent platforms.
View on GitHub →
01
Why it was built
The problem every team hits: tests that don’t keep up with code.
Every team ships faster than their tests can follow. New features land daily; test suites fall behind. Coverage gaps hide in the cracks. Flaky tests erode trust until the team stops reading CI results.
Dragan Spiridonov built Agentic QE because existing solutions attacked one slice of the problem — generation or coverage or flakiness — but never the whole surface. A coordinated fleet of AI agents, each a specialist in one QE domain, can cover the full lifecycle: generate, analyze, execute, learn, and gate.
The project is open-source (MIT), free to use, fork, and contribute to. It is based on the Agentic QE Framework created by Dragan Spiridonov.
View the source → github.com/proffesor-for-testing/agentic-qe
02
What problem it solves
Tests fall behind, coverage rots, flaky tests erode trust.
Modern codebases grow faster than any human team can test. Agentic QE attacks the full quality surface at once, not just one slice. Each problem above maps to a dedicated agent domain with specialists trained for that exact task.
03
Why now
Coding agents exist — now QE needs agents too.
Coding agents like Claude Code, Cursor, and Copilot accelerate development. Code output has increased 10x for many teams. But quality engineering hasn’t kept pace. The Model Context Protocol (MCP) standard now lets AI tools share context, and free local models make routine test generation cost $0.
AQE plugs into all three: one aqe init --auto and your
coding agent has 60 QE specialists on call. No new IDE, no new
workflow. It meets developers where they already work.
04
How it works
A fleet of 60 specialized agents, coordinated by a Queen.
| Domain | Agents | What they do |
|---|---|---|
| Test Generation | 4 | Generate tests, test-driven development (TDD) workflows, mutation testing, property testing |
| Test Execution | 3 | Run tests in parallel, handle retries, integration testing |
| Coverage Analysis | 2 | Find untested code, prioritize by risk |
| Quality Assessment | 4 | Go/no-go gates, risk scoring, adversarial review |
| Defect Intelligence | 4 | Predict bugs, find root causes, fix flaky tests |
| Requirements | 2 | Validate testability, generate behavior-driven scenarios |
| Code Intelligence | 4 | Knowledge graphs, semantic search, change impact |
| Security | 3 | Static & dynamic security analysis, compliance audits, exploit validation |
| Contracts | 2 | API contracts, GraphQL schema testing |
| Visual & Accessibility | 3 | Visual regression, accessibility compliance, viewport testing |
| Chaos & Performance | 3 | Fault injection, load testing, performance validation |
| Learning | 4 | Cross-project learning, pattern discovery, metrics |
| Enterprise | 7 | SAP systems, legacy web services, message queues (Kafka, RabbitMQ), enterprise integrations |
05
What solved looks like
Ask for tests and get them — generated, validated, gated.
75 Skills, Trust-Tiered
06
Platform support
One server, 11 coding agent platforms.
# Set up all platforms at once
aqe init --auto --with-all-platforms
# Or add a platform later
aqe platform setup cursor
aqe platform list # show install status
aqe platform verify cursor # validate config
LLM Providers
AQE’s HybridRouter auto-detects available providers. Set one or more API keys and it picks the best route:
- Claude (
ANTHROPIC_API_KEY) — default - OpenAI (
OPENAI_API_KEY) - Gemini (
GOOGLE_AI_API_KEY) — free tier available - OpenRouter (
OPENROUTER_API_KEY) — 300+ models - Ollama — local, free, offline
- Azure OpenAI, Bedrock
07
How to start
Three commands and you’re running.
Quick Start
# Install globally from npm (public, free)
npm install -g agentic-qe
# Initialize your project (auto-detects your tech stack and connects to your coding agent)
cd your-project && aqe init --auto
# That's it — 60 QE agents are available immediately in Claude Code
All packages are public on npm: npmjs.com/package/agentic-qe
Alternative: Claude Code Plugin
# From a local checkout
git clone https://github.com/proffesor-for-testing/agentic-qe.git
claude --plugin-dir ./agentic-qe/plugins/agentic-qe-fleet
Development Setup
git clone https://github.com/proffesor-for-testing/agentic-qe.git
cd agentic-qe && npm install && npm run build && npm test -- --run
Full source on GitHub → github.com/proffesor-for-testing/agentic-qe
08
Use cases
From test generation to chaos engineering to security audits.
Generate a full test suite
qe-test-architect generates unit, integration,
property-based, and behavior-driven tests across 15+ frameworks.
"Create tests for PaymentService with 95% coverage"
Find coverage gaps by risk
qe-coverage-specialist finds untested code and
ranks it by risk, not line count.
"Find coverage gaps in src/ and prioritize"
Hunt and fix flaky tests
qe-flaky-hunter uses ML detection, root-cause
analysis, and stabilization fixes.
"Stabilize flaky tests in tests/integration/"
Security audit
qe-security-scanner: static and dynamic security
analysis, dependency scanning, API security, and chaos testing.
"Run security scan on the auth module"
Red-Green-Refactor
qe-tdd-specialist coordinates 5 subagents through
the full TDD cycle.
"Implement UserAuth with full TDD cycle"
Fault injection
qe-chaos-engineer injects network partitions,
latency spikes, resource exhaustion.
"Inject network partitions into order flow"
09
Get it
All links are public. No login, no paywall, no lock-in.
Everything about Agentic QE is publicly available. No Vercel login, no gated downloads, no auth walls. Every link below goes to a public URL you can access right now.
GitHub Repository
Full source, issues, discussions, and contribution guide.
github.com/proffesor-for-testing/agentic-qe
Package
npm Package
Install with npm i -g agentic-qe. Public, free.
npmjs.com/package/agentic-qe
Latest Release
v3.11.1
Benchmark-driven cheap-first test generation.
GitHub Releases
Docs
Platform Setup Guide
Per-platform config for all 11 coding agents.
docs/platform-setup-guide.md
Community
Issues & Discussions
Report bugs, request features, ask questions.
Issues · Discussions
Team
Contributors
See who builds Agentic QE.
Contributors graph
Command-Line Reference
aqe init [--auto] # Initialize project
aqe agent list # List available agents
aqe fleet status # Fleet health
aqe learning stats # Learning statistics
aqe brain export/import # Portable intelligence
aqe platform list/setup/verify # Manage platforms
aqe health # System health
aqe code index src/ # Index codebase
aqe code search "auth" # Semantic search