What problem does it solve? When E2E testing uncovers UI bugs, developers need a systematic way to reproduce, diagnose, fix, and verify each bug without losing track of evidence or introducing regressions. This Skill automates that entire bug-fix loop using Playwright MCP. ## Core Features & Use Cases - Guided Bug Fix Workflow: Loads the bug report, reproduces the bug with Playwright MCP, analyzes the root cause, implements a minimal fix, and verifies it in the browser. - Automatic Regression Tests: Generates a Playwright test that would fail before the fix and pass after, placed according to your playwright.config.ts settings. - Bilingual Documentation: Produces Korean and English fix summaries and updates the bug report status. - Use Case: After running E2E tests and finding that Test 3's checkout button does nothing, run the fix workflow to reproduce the click failure, trace it to a missing event handler, patch the component, verify the fix in a live browser, and commit a regression test. ## Quick Start Fix the bug documented in Test 3's bug report and verify it with Playwright MCP.