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 with zero installation. - Programmatic CDP Automation: Script debugging sessions with chrome-remote-interface to automate many breakpoints, capture scope state across runs, and collect CPU profiles or heap snapshots non-interactively. - Attach to Running Processes: Enable the inspector on live processes with SIGUSR1 and attach by PID or WebSocket URL, including TypeScript via tsx and Vitest test runs. - Use Case: A Vitest test fails and you need intermediate state — launch it with --inspect-brk, attach node inspect, set a breakpoint on the suspect line, and inspect locals in the paused frame. ## Quick Start Ask the agent to run your Node script with --inspect-brk, attach the node inspect debugger, set a breakpoint at the failing line, and print the local variables when it pauses.