Chrome DevTools Debugging
SKILL.md
Use chrome-devtools for deep technical inspection. Unlike agent-browser, this tool interacts with the browser's internal engine.
Core workflow:
inspect_dom- Analyze the HTML/CSS structure to find root causes of UI issues.get_console_logs- Check for JavaScript errors or warnings that aren't visible on the UI.get_network_requests- Monitor API calls, status codes, and payload data.evaluate_javascript- Execute JS directly in the browser context to test fixes or extract data.
Combine with agent-browser when you need to navigate first, then debug the resulting state.