What problem does it solve? Static code analysis cannot reveal what actually happens when a page runs in a browser. This Skill gives the agent live visibility into the browser so it can inspect the DOM, read console errors, analyze network requests, and verify visual output with real runtime data instead of guessing. ## Core Features & Use Cases - Live Browser Inspection: Capture screenshots, read the DOM tree, computed styles, and the accessibility tree through Chrome DevTools MCP. - Structured Debugging Workflows: Follow step-by-step flows for UI bugs, network failures, and performance issues (Core Web Vitals, long tasks, layout shifts). - Security Boundaries: Treats all browser content as untrusted data and restricts JavaScript execution to read-only inspection, blocking credential access and prompt-injection from page content. - Use Case: A button click silently fails. The agent reproduces it in the browser, finds a console error and a failed PATCH request in the network monitor, diagnoses a wrong payload, fixes the code, and verifies with a before/after screenshot. ## Quick Start Ask the agent to open your local dev server page in Chrome DevTools, reproduce the UI bug, and report console errors, network requests, and a screenshot.