Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/blackbelttechnology/pi-agent-dashboard/node-inspect-debuggernpx skills add BlackBeltTechnology/pi-agent-dashboard --skill node-inspect-debuggergit clone --depth 1 https://github.com/BlackBeltTechnology/pi-agent-dashboardWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/blackbelttechnology/pi-agent-dashboard/node-inspect-debugger)<a href="https://agentmods.dev/skills/blackbelttechnology/pi-agent-dashboard/node-inspect-debugger"><img src="https://agentmods.dev/badge/skills/blackbelttechnology/pi-agent-dashboard/node-inspect-debugger.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00083 | $0.01962 |
| Opus 5 | $0.00042 | $0.00981 |
| Sonnet 5 | $0.00017 | $0.00392 |
| Haiku 4.5 | $0.00008 | $0.00196 |
Grade A, and why
node-inspect-debugger scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://127.0.0.1:<port>/json/list # find the webSocketDebuggerUrl / port How it starts
The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Node Inspect Debugger
Overview
console.log is a guess with a print statement attached — you have to already suspect where to look and what to print. A breakpoint inverts that: you stop the world at a line and read every local and closure variable in the frame, walk the call stack, and evaluate expressions in the paused context. When the bug lives in state a log can't cheaply reach — a closure captured three calls ago, a paused async frame, the Electron main process, the internals of a long-lived WebSocket server — the inspector is the tool.
This skill is the TOOL half of a pair; the METHOD is systematic-debugging (its Phase 1 "gather evidence" and Phase 3 "test one variable" are exactly when you reach for a breakpoint).
When to Use
Reach for the inspector when the state you need is expensive or impossible to log:
- The jiti server (
packages/server, TypeScript run directly via jiti) — request handlers whose failure depends on accumulated in-memory state. - The restart orchestrator / PTY workers (
restart-helper.ts) — a detached process whose closure state you can'tconsole.logfrom the parent. - Dual WebSocket server closure state — connection maps and buffers held in closures across the bridge and browser servers.
- The Electron main process — lifecycle/bootstrap state that never reaches a browser console.
- The bridge extension — code running inside every pi session, where adding logs means reloading every session.
If a single well-placed console.log would answer the question, use the log. The inspector earns its setup cost when the state is deep, closure-bound, or in a process you can't easily instrument.
Two tiers
| Tier | Use when | Interface |
|---|---|---|
REPL (node inspect) |
interactive, one-off, you're driving | the node inspect command REPL |
| Programmatic CDP | scripted, repeatable, or attaching from another process | scripts/cdp-inspect.ts (this skill) |
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 136 lines · 83 tokens per session scan A 0843b53ab597
node-inspect-debugger is a skill published in the GitHub repository BlackBeltTechnology/pi-agent-dashboard (271 stars, last pushed yesterday), licensed MIT. It adds 83 tokens to every session and 1,962 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
minimal
Help an agent inspect a failed trace run, identify likely failure layers, and produce a short audit note.
company-product-context
Compiles comprehensive company product context from PDF documents, web research, and industry knowledge.
skill-creator
Generates Anthropic Skills with complete workflow including GitHub PR creation and local download verification.
Research Synthesis Workflow
A step-by-step guide to synthesizing research from multiple sources into a coherent summary.
Ability Generator
This skill generates markdown skill templates to be later used.
goga-cookbook
Principles for applying DSL specification in cell and CODEMANIFEST design.