What problem does it solve? Writing E2E tests that match a project's established conventions is slow and error-prone: you must learn the intercept patterns, page object structure, and wait strategies before writing a single assertion. This Skill loads those conventions automatically and produces tests that fit the existing suite. ## Core Features & Use Cases - Convention Loading: Reads repo-specific E2E patterns (intercepts, page objects, wait strategy) via a test-context step before writing any test. - Pattern-Consistent Test Generation: Searches existing Cypress specs, reuses page objects, and enforces rules like network-based waits instead of arbitrary timeouts. - Verification Loop: Runs the new spec headlessly, diagnoses failures from screenshots and DOM comparison, and writes a structured coverage report. - Use Case: After shipping a new checkout flow, ask for E2E coverage and receive a passing Cypress spec with intercepts, page objects, and happy-path plus error-state cases. ## Quick Start Ask the assistant to write E2E tests for a specific user flow, describing the start state, actions, and expected end state.