What problem does it solve? When console.log is not enough, this Skill gives you real breakpoints, step-through execution, call-stack inspection, and scope dumps for Node.js applications using the built-in V8 inspector and Chrome DevTools Protocol. ## Core Features & Use Cases - Interactive CLI Debugging: Use the built-in node inspect REPL to set breakpoints, step in/over/out, watch expressions, and evaluate code in the paused frame. - Programmatic CDP Automation: Script breakpoint management, scope capture, and expression evaluation with chrome-remote-interface for non-interactive debugging from an agent loop. - Profiling & Snapshots: Capture CPU profiles and heap snapshots from running processes for performance analysis in Chrome DevTools. - Use Case: A Vitest test fails with unclear state. Launch it with node --inspect-brk, attach the debugger, set a breakpoint at the suspect line, and inspect local and closure variables directly. ## Quick Start Ask the agent to debug a failing Node.js script by launching it with node --inspect-brk, attaching the inspector, and setting a breakpoint at the line you suspect.