What problem does it solve? Verifying that code actually works requires building a full test pyramid — unit, integration, contract, e2e, and performance tests — plus wiring coverage and quality gates into CI, which is time-consuming and easy to get wrong. ## Core Features & Use Cases - Full Test Pyramid Generation: Writes unit tests with mocking, integration tests against real containers (PostgreSQL, Redis, Kafka), Pact contract tests, Playwright/Cypress e2e flows, and k6 load/stress/spike scripts. - Failing Quality Gates: Wires coverage thresholds, patch coverage, mutation testing (Stryker/mutmut/PIT), and Pact can-i-deploy into CI so builds fail on breach rather than reporting passively. - Determinism & Test Data Discipline: Enforces frozen clocks, seeded RNG, pinned image digests, hermetic networks, and synthetic PII-free fixtures with schema-per-worker isolation. - Use Case: After backend and frontend code is written, run this Skill to produce a traceability matrix from acceptance criteria, generate all test suites in parallel, and emit a machine-readable receipt that gates production readiness on real test results. ## Quick Start Ask the QA engineer to write and run tests verifying that the booking API and dashboard work, including unit, integration, e2e, and performance coverage.