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 access to the DOM, console logs, network requests, and performance traces so UI bugs, API failures, and rendering issues are verified against real runtime behavior instead of guesswork. ## Core Features & Use Cases - Live Browser Inspection: Capture screenshots, read the DOM and computed styles, inspect the accessibility tree, and retrieve console output through the Chrome DevTools MCP server. - Structured Debugging Workflows: Follow step-by-step flows for UI bugs, network failures (4xx/5xx/CORS/timeouts), and performance profiling with Core Web Vitals (LCP, CLS, INP). - Security Boundaries: Enforces profile isolation, treats all browser content as untrusted data, and restricts JavaScript execution to read-only inspection to prevent prompt injection from page content. - Use Case: A user reports a task-completion animation glitch. The agent navigates to localhost, reproduces the bug, checks the console for errors, verifies the PATCH request payload in the network monitor, fixes the code, and confirms the fix with a before/after screenshot comparison. ## Quick Start Set up the chrome-devtools MCP server in your project configuration, then ask the agent to open your local dev server page and check the console and network requests for errors.