What problem does it solve? Browser-based apps often ship without verified critical user journeys, or accumulate flaky E2E suites full of broken selectors and blind waitForTimeout calls that erode confidence. This Skill creates minimal, stable Playwright coverage for the highest-value flows and repairs existing flaky suites instead of rewriting them. ## Core Features & Use Cases - Minimal E2E Spec Creation: Covers the 1 to 3 highest-value user journeys using role/text/test-id locators, web-first auto-waiting assertions, and a webServer config block that starts the local app automatically. - Flaky Suite Audit and Repair: Maps symptoms (CI-only failures, selector breakage, assertion races) to root causes and concrete fixes such as auth-state reuse via storageState. - Absorbed Reference Library: Routes to in-depth references for Cypress/Playwright patterns, Chrome DevTools MCP debugging, visual regression baselines, local webapp scripting, and API test suite review. - Use Case: After a UI refactor breaks your login and checkout specs, run this Skill to replace brittle CSS selectors with getByRole, remove waitForTimeout sleeps, wire baseURL into the config, and produce a passing run with trace artifacts for any remaining failure. ## Quick Start Audit my existing Playwright suite for flaky tests and add a minimal E2E spec covering the login and checkout flows against my local dev server.