node-inspect-debugger

Automate Node.js debugging via CDP from the command line.

Updated May 4, 2026
One-click install
npx skills add https://github.com/Plaidmustache/hermes-nulab --skill node-inspect-debugger-plaidmustache
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: node-inspect-debugger
Source: https://github.com/Plaidmustache/hermes-nulab/tree/main/skills/software-development/node-inspect-debugger
Command: npx skills add https://github.com/Plaidmustache/hermes-nulab --skill node-inspect-debugger-plaidmustache

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Driving Node.js debugging from the terminal can be tedious when you need breakpoints, scope inspection, and automated CDP interactions. Node's built-in inspector exposes a rich debugging surface, but using it programmatically from the command line speeds reproduction and automation for complex tasks.

Core Features & Use Cases

  • Direct CLI debugging: Use node inspect for quick, interactive debugging with familiar commands.
  • CDP scripting: Leverage chrome-remote-interface to script breakpoints, evaluate expressions, and walk call stacks across runs.
  • Attach & automate: Attach to running Node processes via --inspect and automate workflows in agent loops or CI-like environments.

Quick Start

Launch the inspector on your Node.js process and start debugging from the terminal.

Frequently Asked Questions about node-inspect-debugger

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I debug Node.js from the command line using the built-in inspector?

Node.js debugging from the CLI uses the built-in inspector and node inspect command to enable interactive breakpoints, step execution, and scope inspection directly within your terminal.

Can I attach to a running Node.js process to automate debugging workflows?

Yes, you can attach to running Node.js processes via the --inspect flag to automate debugging workflows in agent loops or CI-like environments using the Chrome DevTools Protocol.

What is the Chrome DevTools Protocol used for in Node.js debugging?

The Chrome DevTools Protocol (CDP) in Node.js debugging exposes a rich surface for programmatically scripting breakpoints, evaluating expressions, and walking call stacks from the command line.

Does chrome-remote-interface work for scripting CDP interactions in Node.js?

Yes, chrome-remote-interface is leveraged to script CDP interactions in Node.js, allowing you to automate breakpoints, evaluate expressions, and walk call stacks across multiple debugging runs.

What's the best way to debug long-running Node.js services programmatically?

The best way to debug long-running Node.js services programmatically is attaching to the running process via --inspect and using CDP scripting to safely and deterministically automate breakpoint workflows.