Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,33 @@ 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] [--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.
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 |
Loading