From aj-geddes-useful-ai-prompts-4
Debug client-side issues using browser developer tools: inspect HTML/CSS, diagnose JavaScript errors, analyze network requests, and profile performance.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:browser-debuggingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Browser debugging tools help identify and fix client-side issues including JavaScript errors, layout problems, and performance issues.
Minimal working example:
Chrome DevTools Tabs:
Elements/Inspector:
- Inspect HTML structure
- Edit HTML/CSS in real-time
- View computed styles
- Check accessibility tree
- Modify DOM
Console:
- View JavaScript errors
- Execute JavaScript
- View console logs
- Monitor messages
- Clear errors
Sources/Debugger:
- Set breakpoints
- Step through code
- Watch variables
- Call stack view
- Conditional breakpoints
Network:
- View all requests
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Browser DevTools Fundamentals | Browser DevTools Fundamentals |
| Debugging Techniques | Debugging Techniques |
| Common Issues & Solutions | Common Issues & Solutions |
| Performance Debugging | Performance Debugging |
npx claudepluginhub aj-geddes/useful-ai-promptsUses Chrome DevTools MCP to inspect the DOM, capture console errors, analyze network requests, run JavaScript, and take screenshots for debugging browser UI.
Captures browser console, network, and performance logs using Chrome DevTools MCP for debugging web apps, errors, and page behavior. Auto-activates on browser issues.
Tests and debugs browser apps using Chrome DevTools MCP to inspect DOM, capture console errors, analyze network requests, profile performance, and verify visuals.