What problem does it solve? Locating the root cause of bugs is slow and error-prone when developers rely on guesswork instead of a systematic debugging methodology across console output, breakpoints, network traffic, and logs. ## Core Features & Use Cases - Console & Debugger Techniques: Covers console.table, console.trace, console.time, the debugger statement, and Node.js inspection via node --inspect with Chrome DevTools. - Network & Logging Analysis: Uses Axios interceptors to inspect API requests and Pino for structured, leveled logging of application events and errors. - Three-Phase Workflow: Guides observation and reproduction, strategic debugging (binary search, heap snapshots), and fix verification with regression tests. - Use Case: When a production API intermittently fails, follow the workflow to reproduce the error, trace requests with interceptors, set breakpoints to find the faulty state, and add a regression test for the fix. ## Quick Start Use the debugging tools skill to help me diagnose why my Node.js API endpoint returns stale data, using breakpoints and structured logging.