### node platform (enabled)
- **Use for**: Node.js runtime-debug scenarios (V8 inspector probes / logs).
- Scenario **scripts** call this platform's tools via `callTool('<bare-tool>', {...})` — discover
  the available `ndt_*` tool names from your connected MCP tool schemas; don't guess.

**What to test & how — capture the SAME evidence the verifier would** (a scenario runs FOR
verification, so its script must collect what the node cycle collects). In the script:
1. **Connect** — `ndt_debug_connect` (one of `pid` / `processName` / `containerName` /
   `inspectorPort` / `wsUrl`).
2. Pick an **evidence path** for the changed code path:
   - **Probe path** (proves the code path executed) — set a probe at the changed location
     (`ndt_debug_put-tracepoint` / `ndt_debug_put-logpoint` / `ndt_debug_put-exceptionpoint`),
     **exercise the path** (drive it via a request / CLI / another platform's call — without this the
     probe never fires), then read `ndt_debug_get-probe-snapshots`; at least one probe must come back
     `triggered: true`.
   - **Log path** (proves no errors during execution) — exercise the path, then `ndt_debug_get-logs`
     filtered to the error level (no ERROR-level entries = pass).
   - **Network path** (proves the expected outbound call happened) — `ndt_o11y_get-http-requests`
     once to install the capture agent (forward-looking), exercise the path, then read it again and
     assert the expected request(s) / status.

`return` the probe snapshots / logs / captured flows (read them with `returnOutput: true` so their data reaches the
script's `return`) **plus explicit pass/fail assertions** so a later verify run can judge them.
**The node platform (`ndt_*`) is
Node.js ONLY** — never author `ndt_*` scenarios for Java / Python / Go / Rust / Ruby / .NET / PHP
backends; use the **python** platform for Python and the **backend** platform for the rest.
