From 7cdcc0390b44ac82bdbae75c1810d531a46e9cf9 Mon Sep 17 00:00:00 2001 From: Aaron Erickson Date: Sun, 29 Mar 2026 20:16:11 -0700 Subject: [PATCH 1/2] chore(docs): add debug and uninstall to commands reference check-docs.sh found 15 commands in --help but only 13 headings in docs/reference/commands.md. Add the missing nemoclaw debug and nemoclaw uninstall entries. --- docs/reference/commands.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/reference/commands.md b/docs/reference/commands.md index 82f92405f2f..9e7b2537322 100644 --- a/docs/reference/commands.md +++ b/docs/reference/commands.md @@ -180,3 +180,28 @@ After the fixes complete, the script prompts you to run `nemoclaw onboard` to co ```console $ sudo nemoclaw setup-spark ``` + +### `nemoclaw debug` + +Collect diagnostics for bug reports. +Gathers system info, Docker state, gateway logs, and sandbox status into a summary or tarball. + +```console +$ nemoclaw debug [--quick] +$ nemoclaw debug --output diagnostics.tar.gz +``` + +### `nemoclaw uninstall` + +Remove NemoClaw, destroying all sandboxes and the gateway. +Runs the bundled `uninstall.sh` if available, otherwise downloads it from GitHub. + +```console +$ nemoclaw uninstall [--yes] [--keep-openshell] [--delete-models] +``` + +| Flag | Description | +|------|-------------| +| `--yes` | Skip the confirmation prompt | +| `--keep-openshell` | Leave the openshell binary installed | +| `--delete-models` | Remove NemoClaw-pulled Ollama models | From fee0dfc7667dd5467c49d13e9d77334793cceb13 Mon Sep 17 00:00:00 2001 From: Aaron Erickson Date: Sun, 29 Mar 2026 20:18:50 -0700 Subject: [PATCH 2/2] chore(docs): add missing --sandbox flag to debug entry --- docs/reference/commands.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/reference/commands.md b/docs/reference/commands.md index 9e7b2537322..4fa19f52a3e 100644 --- a/docs/reference/commands.md +++ b/docs/reference/commands.md @@ -187,10 +187,15 @@ Collect diagnostics for bug reports. Gathers system info, Docker state, gateway logs, and sandbox status into a summary or tarball. ```console -$ nemoclaw debug [--quick] -$ nemoclaw debug --output diagnostics.tar.gz +$ nemoclaw debug [--quick] [--sandbox NAME] [--output PATH] ``` +| Flag | Description | +|------|-------------| +| `--quick` | Collect minimal diagnostics only | +| `--sandbox NAME` | Target a specific sandbox (default: auto-detect) | +| `--output PATH` | Write diagnostics tarball to the given path | + ### `nemoclaw uninstall` Remove NemoClaw, destroying all sandboxes and the gateway.