Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ By default, the onboard menu shows NVIDIA cloud inference options only. To enabl
$ NEMOCLAW_EXPERIMENTAL=1 nemoclaw onboard
```

To bypass interactive prompts entirely, use the `--non-interactive` flag or set the `NEMOCLAW_NON_INTERACTIVE=1` environment variable. When using this mode, you must provide all required configuration via environment variables (e.g., `NEMOCLAW_ENDPOINT`, `NEMOCLAW_MODEL`, and `NEMOCLAW_API_KEY`).

```console
$ NEMOCLAW_NON_INTERACTIVE=1 NEMOCLAW_ENDPOINT=ollama NEMOCLAW_MODEL=nvidia/nemotron-3-nano-30b-a3b nemoclaw onboard
```

### `nemoclaw list`

List all registered sandboxes with their model, provider, and policy presets.
Expand Down
23 changes: 21 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,14 @@ verify_nemoclaw() {
# 5. Onboard
# ---------------------------------------------------------------------------
run_onboard() {
info "Running nemoclaw onboard…"
nemoclaw onboard
local onboard_cmd=(nemoclaw onboard)

if [[ "${NON_INTERACTIVE:-0}" == "1" || "${NEMOCLAW_NON_INTERACTIVE:-0}" == "1" ]]; then
onboard_cmd+=("--non-interactive")
fi

info "Running ${onboard_cmd[*]}…"
"${onboard_cmd[@]}"
}

# ---------------------------------------------------------------------------
Expand Down Expand Up @@ -286,6 +292,19 @@ post_install_message() {
# Main
# ---------------------------------------------------------------------------
main() {
NON_INTERACTIVE=0
for arg in "$@"; do
case $arg in
--non-interactive)
NON_INTERACTIVE=1
shift
;;
*)
shift
;;
esac
done

info "=== NemoClaw Installer ==="

install_nodejs
Expand Down
2 changes: 1 addition & 1 deletion nemoclaw/dist/cli.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions nemoclaw/dist/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nemoclaw/dist/cli.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions nemoclaw/dist/commands/onboard.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export interface OnboardOptions {
ncpPartner?: string;
endpointUrl?: string;
model?: string;
nonInteractive?: boolean;
logger: PluginLogger;
pluginConfig: NemoClawConfig;
}
Expand Down
2 changes: 1 addition & 1 deletion nemoclaw/dist/commands/onboard.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 62 additions & 27 deletions nemoclaw/dist/commands/onboard.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading