What problem does it solve? When console.log is not enough, this Skill gives you real breakpoints, step-through execution, call-stack inspection, and closure variable access for Node.js and TypeScript programs, all driven from the terminal without a GUI. ## Core Features & Use Cases - Interactive REPL Debugging: Launch node inspect to set breakpoints, step in/over/out, watch expressions, and evaluate arbitrary JavaScript in the paused frame. - Attach to Running Processes: Enable the inspector on a live process with SIGUSR1 and attach by PID or WebSocket URL, ideal for long-lived dev servers and TUI gateways. - Scriptable CDP Automation: Use chrome-remote-interface to programmatically set breakpoints, dump local and closure scopes, capture CPU profiles, and take heap snapshots. - Use Case: A Vitest test fails with unclear state. Run it under node --inspect-brk with --no-file-parallelism, attach the debugger, set a breakpoint at the suspect line, and inspect the actual variable values in the paused frame. ## Quick Start Ask the agent to run the failing Node script with --inspect-brk, attach node inspect, set a breakpoint at the suspect line, and print the local variables when it pauses.