What problem does it solve? Code changes to web UIs often ship unverified, letting bugs hide in untested edge cases, soft failures, and untested viewports. This Skill enforces browser-based verification of every change before any completion claim, catching functional, accessibility, and performance regressions. ## Core Features & Use Cases - End-to-end flow testing: Drives a real browser through primary and edge-case user flows using Playwright, with ARIA snapshots, console logs, and network request inspection. - Quality audits: Runs WCAG accessibility audits (axe-core, IBM Equal Access) and collects Core Web Vitals, layout shift, and long-task metrics. - UI quality checks: Verifies responsive layouts across four viewports, cross-browser behavior in WebKit, and dark mode rendering. - Use Case: After editing a React form component, delegate verification to a subagent that seeds test data, exercises the submit flow and validation errors, audits accessibility, and returns a pass/fail report with evidence. ## Quick Start Ask the agent to verify your recent UI changes in the browser, for example: test the updated checkout form at localhost:3000 and confirm it works before we call it done.