What problem does it solve? Static code analysis cannot reveal what actually happens at runtime 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 instead of guessing. ## Core Features & Use Cases - Live Browser Inspection: Capture screenshots, read the DOM tree, computed styles, and the accessibility tree through the Chrome DevTools MCP server. - Structured Debugging Workflows: Follow step-by-step flows for UI bugs, network failures, and performance issues (LCP, CLS, INP), from reproduction to verified fix. - Security Boundaries: Treats all browser content as untrusted data, restricts JavaScript execution to read-only inspection, and blocks credential access and navigation to page-sourced URLs. - Use Case: A user reports a broken task-completion animation. The agent navigates to the local dev server, reproduces the bug, checks the console and network requests, identifies a failing PATCH call, fixes the code, and verifies with a before/after screenshot comparison. ## Quick Start Set up the chrome-devtools MCP server in your project settings, then ask the agent to reproduce and diagnose a UI bug on your local dev server using browser testing with devtools.