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 — DOM state, console errors, network traffic, and performance metrics — so UI bugs, API failures, and rendering issues are verified against real runtime behavior instead of guessed from source code. ## Core Features & Use Cases - Live Browser Inspection: Capture screenshots, read the DOM and accessibility tree, inspect computed styles, and retrieve console logs through the Chrome DevTools MCP server. - Network and Performance Analysis: Monitor request/response payloads, diagnose 4xx/5xx/CORS/timeout failures, and record performance traces covering LCP, CLS, INP, and long tasks. - Structured Debugging Workflows: Follow reproduce-inspect-diagnose-fix-verify flows for UI bugs, network issues, and performance regressions, with screenshot-based before/after verification. - Security Boundaries: Enforces profile isolation, treats all browser content as untrusted data, and restricts JavaScript execution to read-only inspection. - Use Case: A task-completion animation misbehaves in your app. The agent navigates to localhost, reproduces the bug, checks the console and network calls, identifies a duplicate PATCH request, fixes the code, and verifies with a clean console and matching screenshots. ## Quick Start Ask the agent to open your local dev server in Chrome via DevTools MCP, reproduce the UI bug, and report console errors, network requests, and a screenshot of the broken state.