What problem does it solve? Frontend PRs often ship with subtle bugs like slug mismatches, undeclared hook variables, and broken test selectors that only surface when the app runs live. This Skill automates the full visual verification loop so regressions are caught and fixed before merge. ## Core Features & Use Cases - Before/After Screenshot Capture: Spins up the feature branch in Docker and captures baseline (main) and feature screenshots with Playwright for visual diffing. - Automated Bug Audit: Scans the branch diff for five known bug patterns including slug/name mismatches, undeclared variables in hook dependency arrays, E2E selector drift, viewport overflow, and off-viewport footer elements. - Fix Implementation and Verification: Applies fixes in structural order, then validates with backend tests, yarn test-all, and isolated Playwright spec runs. - Use Case: A developer opens a PR adding a new navigation mega menu. Run this Skill to capture screenshots on both branches, detect that the component never renders due to a slug mismatch, fix it, and verify the E2E suite passes. ## Quick Start Run a visual audit on the current frontend PR branch, capture before and after screenshots, and fix any bugs found.