Quality Team
Spawn a 3-agent QA gate (Test Writer + Code Reviewer + Coverage Analyst) for pre-release quality assurance and coverage remediation.
How It Works
- QA gate / coverage check: Pre-release quality assurance or coverage remediation
- Preflight baseline: Run suite with coverage — record %, failures, uncovered modules
- Spawn 3 agents
- Synthesize and act: Apply P0/P1 fixes · re-run tests · re-measure coverage delta
- QA gate: Coverage held · all P0/P1 resolved · explicit counts
- QA gate summary: Coverage before/after · findings by severity · dead code list
Invocation Triggers
/quality-teamQA gatecoverage checkpre-release QAtest coverageUse Cases
- Run a comprehensive QA gate before a major release
- Remediate test coverage gaps in an existing codebase
- Get a code review + test audit in parallel
The Problem
Running quality checks after the fact is reactive. By the time CI tells you about a coverage gap, the code is in review. By the time a security issue surfaces, it is in production. Quality Team runs before merge — not as a formality, but as a blocking gate with three agents each focused on a different failure mode.
What It Does
- 1Preflight — run baseline coverage
Runs the full test suite with coverage before spawning any agents. Establishes the baseline so the delta is measurable.
- 2Spawn 3 agents in parallel
Test Writer, Code Reviewer, and Coverage Analyst are dispatched simultaneously. Each has a distinct mandate — no overlap, no diffusion.
- 3Test Writer fills gaps
Identifies modules with < 80% coverage or no tests. Writes new test files prioritizing critical business logic. >= 3 real assertions per file. Runs tests to confirm all pass.
- 4Code Reviewer fixes security issues
Reviews recent changes for OWASP Top 10, hardcoded secrets, missing input validation, and injection risks. P0/P1 issues are fixed directly — not documented for later.
- 5Coverage Analyst maps risk
Identifies the 10 riskiest uncovered paths, flags dead code candidates, and assesses whether integration tests hit real dependencies or mock everything.
What You Get / What It Doesn't Do
- Coverage delta — before and after, in percentage points
- P0 and P1 security issues found and fixed inline
- Top 10 riskiest uncovered paths ranked by failure impact
- Dead code candidates identified for removal
- Gate verdict: PASS or FAIL with specifics
- Replace manual code review — it augments, not replaces
- Write behavioral or E2E tests — unit and integration only
- Run in production environments or against live data
- Fix architectural or design issues — those need your judgment
Tips
95% coverage with trivial assertions is worse than 70% with real behavior tests. The Coverage Analyst grades on scenario coverage, not line count.
Never ship with an unresolved P0. If the Code Reviewer finds one and cannot fix it autonomously, the gate fails — full stop.
Not just releases. The earlier you catch a gap, the cheaper it is to fill.
Get the Skill
Unlock the full Quality Team SKILL.md — drop it into ~/.claude/skills/ and trigger it by name.
- Coverage delta — before and after, in percentage points
- P0 and P1 security issues found and fixed inline
- Top 10 riskiest uncovered paths ranked by failure impact
- Dead code candidates identified for removal
Commonly Used With
29 more production skills ready to install.