What problem does it solve? Web applications need testing across many dimensions—unit logic, end-to-end flows, load capacity, security, accessibility, and visual consistency—but coordinating the right tools, configurations, and CI gates for each layer is complex and error-prone. ## Core Features & Use Cases - Multi-layer test execution: Run unit tests with Vitest, E2E tests with Playwright, load tests with k6, accessibility audits with axe-core, and performance checks with Lighthouse. - Project scaffolding and result analysis: Initialize a best-practice Playwright setup (config, fixtures, example tests) and parse Playwright/Vitest/JUnit results into a unified summary with pass-rate thresholds. - Strategy guidance: Choose between testing pyramid, trophy, or honeycomb models, with 20+ reference guides covering contract testing, database testing with Testcontainers, flakiness mitigation, mobile gestures, and OWASP security checks. - Use Case: Before a release, run unit tests as a fast-fail gate, shard E2E tests across CI workers, audit accessibility with axe-core, and verify Core Web Vitals budgets with Lighthouse CI. ## Quick Start Ask the agent to set up Playwright E2E testing for your web app and run the full test suite with accessibility and performance checks.