What problem does it solve? When console.log is not enough, this Skill lets you drive Node's built-in V8 inspector from the terminal to set real breakpoints, step through code, walk call stacks, dump local and closure scopes, and evaluate arbitrary expressions in paused frames. ## Core Features & Use Cases - Interactive REPL debugging: Use the built-in node inspect CLI to set breakpoints, step in/over/out, watch expressions, and drop into a scoped REPL. - Attach to running processes: Enable the inspector on a live process with SIGUSR1 and attach by PID or WebSocket URL, including Ink-based TUI apps and Vitest test runs. - Programmatic CDP automation: Script breakpoints, scope dumps, CPU profiles, and heap snapshots with chrome-remote-interface for non-interactive debugging. - 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 closure variables that console.log could not reach. ## Quick Start Ask the agent to debug a failing Node script by launching it with node --inspect-brk, attaching the inspector, and setting a breakpoint at the line you suspect.