From d7df852bb41274008d231f18a5718418e86f1818 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 11 Aug 2026 01:35:00 -0700 Subject: [PATCH] docs(onboard): fix non-interactive command examples (#121954) Align copyable onboarding commands with the mandatory risk acknowledgement and an explicit health disposition for config-only automation.\n\nRefs #121951. --- docs/cli/onboard.md | 26 ++++++++++------------- docs/platforms/windows.md | 2 +- docs/providers/arcee.md | 4 ++-- docs/providers/baseten.md | 2 +- docs/providers/cerebras.md | 4 ++-- docs/providers/cloudflare-ai-gateway.md | 2 +- docs/providers/cohere.md | 2 +- docs/providers/featherless.md | 2 +- docs/providers/fireworks.md | 2 +- docs/providers/google.md | 2 +- docs/providers/huggingface.md | 2 +- docs/providers/litellm.md | 2 +- docs/providers/lmstudio.md | 3 ++- docs/providers/longcat.md | 2 +- docs/providers/meta.md | 4 ++-- docs/providers/ollama.md | 5 ++--- docs/providers/tencent.md | 4 ++-- docs/providers/together.md | 2 +- docs/providers/venice.md | 2 +- docs/providers/vercel-ai-gateway.md | 2 +- docs/providers/vllm.md | 2 +- docs/providers/volcengine.md | 2 +- docs/reference/wizard.md | 2 +- docs/start/wizard-cli-automation.md | 28 +++++++++++++------------ docs/start/wizard-cli-reference.md | 2 +- 25 files changed, 55 insertions(+), 57 deletions(-) diff --git a/docs/cli/onboard.md b/docs/cli/onboard.md index 680d15ac4294..2a1ff1f0b6bd 100644 --- a/docs/cli/onboard.md +++ b/docs/cli/onboard.md @@ -220,7 +220,7 @@ OPENCLAW_LOCALE=en openclaw onboard # Explicit English override `--non-interactive` requires `--accept-risk` (acknowledges that agents are powerful and full system access is risky). `--mode` defaults to `local`. ```bash -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice custom-api-key \ --custom-base-url "https://llm.example.com/v1" \ --custom-model-id "foo-large" \ @@ -235,22 +235,20 @@ openclaw onboard --non-interactive --accept-risk \ LM Studio also has a provider-specific key flag: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice lmstudio \ --custom-base-url "http://localhost:1234/v1" \ --custom-model-id "qwen/qwen3.5-9b" \ - --lmstudio-api-key "$LM_API_TOKEN" \ - --accept-risk + --lmstudio-api-key "$LM_API_TOKEN" ``` Non-interactive Ollama: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice ollama \ --custom-base-url "http://ollama-host:11434" \ - --custom-model-id "qwen3.5:27b" \ - --accept-risk + --custom-model-id "qwen3.5:27b" ``` `--custom-base-url` defaults to `http://127.0.0.1:11434`. `--custom-model-id` is optional; if omitted, onboarding uses Ollama's suggested defaults. Cloud model IDs such as `kimi-k2.5:cloud` also work here. @@ -258,10 +256,9 @@ openclaw onboard --non-interactive \ Store provider keys as refs instead of plaintext: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice openai-api-key \ - --secret-input-mode ref \ - --accept-risk + --secret-input-mode ref ``` With `--secret-input-mode ref`, onboarding stores new credentials as env-backed refs instead of plaintext: auth profiles use `keyRef: { source: "env", provider: "default", id: }`, and custom providers use `models.providers..apiKey` (for example `{ source: "env", provider: "default", id: "CUSTOM_API_KEY" }`). Set the provider env var when adding a new credential; an inline key flag without its matching env var fails fast. Existing resolvable named auth profiles and their `env`, `file`, `exec`, or `store` references are reused unchanged, without a new `apiKey` or `keyRef` write or additional provider env var. Existing plaintext profile credentials are not migrated; run `openclaw secrets configure --apply`, then `openclaw secrets audit --check`. See [Secrets management](/gateway/secrets). @@ -279,13 +276,12 @@ With `--secret-input-mode ref`, onboarding stores new credentials as env-backed ```bash export OPENAI_API_KEY="your-provider-key" export OPENCLAW_GATEWAY_TOKEN="your-token" -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice openai-api-key \ --secret-input-mode ref \ --gateway-auth token \ - --gateway-token-ref-env OPENCLAW_GATEWAY_TOKEN \ - --accept-risk + --gateway-token-ref-env OPENCLAW_GATEWAY_TOKEN ``` ### Local gateway health @@ -309,7 +305,7 @@ openclaw onboard --non-interactive \ ```bash # Promptless endpoint selection -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice zai-coding-global \ --zai-api-key "$ZAI_API_KEY" @@ -319,7 +315,7 @@ openclaw onboard --non-interactive --accept-risk \ Mistral: ```bash -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice mistral-api-key \ --mistral-api-key "$MISTRAL_API_KEY" ``` diff --git a/docs/platforms/windows.md b/docs/platforms/windows.md index 49b36e1384ef..be49edf2dbae 100644 --- a/docs/platforms/windows.md +++ b/docs/platforms/windows.md @@ -148,7 +148,7 @@ openclaw gateway status --json For CLI-only use without a managed Gateway service: ```powershell -openclaw onboard --non-interactive --skip-health +openclaw onboard --non-interactive --accept-risk --skip-health openclaw gateway run ``` diff --git a/docs/providers/arcee.md b/docs/providers/arcee.md index f9ec106dca9d..7ce37228c3b2 100644 --- a/docs/providers/arcee.md +++ b/docs/providers/arcee.md @@ -84,7 +84,7 @@ openclaw gateway restart ```bash - openclaw onboard --non-interactive \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice arceeai-api-key \ --arceeai-api-key "$ARCEEAI_API_KEY" @@ -93,7 +93,7 @@ openclaw gateway restart ```bash - openclaw onboard --non-interactive \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice arceeai-openrouter \ --openrouter-api-key "$OPENROUTER_API_KEY" diff --git a/docs/providers/baseten.md b/docs/providers/baseten.md index dd8a2054818f..e53cd611301c 100644 --- a/docs/providers/baseten.md +++ b/docs/providers/baseten.md @@ -40,7 +40,7 @@ openclaw onboard --auth-choice baseten-api-key ``` ```bash Direct flag -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice baseten-api-key \ --baseten-api-key "$BASETEN_API_KEY" ``` diff --git a/docs/providers/cerebras.md b/docs/providers/cerebras.md index 666bf757f0f0..7e8dfcaa6292 100644 --- a/docs/providers/cerebras.md +++ b/docs/providers/cerebras.md @@ -40,7 +40,7 @@ openclaw onboard --auth-choice cerebras-api-key ``` ```bash Direct flag -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice cerebras-api-key \ --cerebras-api-key "$CEREBRAS_API_KEY" ``` @@ -65,7 +65,7 @@ export CEREBRAS_API_KEY=csk-... ## Non-interactive setup ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice cerebras-api-key \ --cerebras-api-key "$CEREBRAS_API_KEY" diff --git a/docs/providers/cloudflare-ai-gateway.md b/docs/providers/cloudflare-ai-gateway.md index 5f4276426df1..d65a15a651db 100644 --- a/docs/providers/cloudflare-ai-gateway.md +++ b/docs/providers/cloudflare-ai-gateway.md @@ -73,7 +73,7 @@ openclaw gateway restart For scripted or CI setups, pass all values on the command line: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice cloudflare-ai-gateway-api-key \ --cloudflare-ai-gateway-account-id "your-account-id" \ diff --git a/docs/providers/cohere.md b/docs/providers/cohere.md index b0387b83c3f0..10f0426037bc 100644 --- a/docs/providers/cohere.md +++ b/docs/providers/cohere.md @@ -45,7 +45,7 @@ openclaw gateway restart 3. Run onboarding: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice cohere-api-key \ --cohere-api-key "$COHERE_API_KEY" ``` diff --git a/docs/providers/featherless.md b/docs/providers/featherless.md index d5142235a5ae..b78f32fa32a6 100644 --- a/docs/providers/featherless.md +++ b/docs/providers/featherless.md @@ -40,7 +40,7 @@ openclaw onboard --auth-choice featherless-api-key For non-interactive setup: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice featherless-api-key \ --featherless-api-key "$FEATHERLESS_API_KEY" diff --git a/docs/providers/fireworks.md b/docs/providers/fireworks.md index fef3088e8fb8..cacf63175157 100644 --- a/docs/providers/fireworks.md +++ b/docs/providers/fireworks.md @@ -37,7 +37,7 @@ openclaw onboard --auth-choice fireworks-api-key ``` ```bash Direct flag -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice fireworks-api-key \ --fireworks-api-key "$FIREWORKS_API_KEY" ``` diff --git a/docs/providers/google.md b/docs/providers/google.md index c7be4f28c281..3b5b44040cb5 100644 --- a/docs/providers/google.md +++ b/docs/providers/google.md @@ -35,7 +35,7 @@ the Gateway already runs inside a managed Google Cloud environment. Or pass the key directly: ```bash - openclaw onboard --non-interactive \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice gemini-api-key \ --gemini-api-key "$GEMINI_API_KEY" diff --git a/docs/providers/huggingface.md b/docs/providers/huggingface.md index 76361f775b35..26688a43b392 100644 --- a/docs/providers/huggingface.md +++ b/docs/providers/huggingface.md @@ -59,7 +59,7 @@ title: "Hugging Face (inference)" ### Non-interactive setup ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice huggingface-api-key \ --huggingface-api-key "$HF_TOKEN" diff --git a/docs/providers/litellm.md b/docs/providers/litellm.md index 94c83cc4eaa3..a67be32dc571 100644 --- a/docs/providers/litellm.md +++ b/docs/providers/litellm.md @@ -21,7 +21,7 @@ spend limits, and backend failover without changing OpenClaw config. For non-interactive setup against a remote proxy, pass the proxy URL explicitly: ```bash - openclaw onboard --non-interactive --accept-risk --auth-choice litellm-api-key \ + openclaw onboard --non-interactive --accept-risk --skip-health --auth-choice litellm-api-key \ --litellm-api-key "$LITELLM_API_KEY" --custom-base-url "https://litellm.example/v1" ``` diff --git a/docs/providers/lmstudio.md b/docs/providers/lmstudio.md index bcb0403d577c..62faaa652289 100644 --- a/docs/providers/lmstudio.md +++ b/docs/providers/lmstudio.md @@ -73,7 +73,7 @@ curl http://localhost:1234/api/v1/models ## Non-interactive onboarding ```bash -openclaw onboard --non-interactive --accept-risk --auth-choice lmstudio +openclaw onboard --non-interactive --accept-risk --skip-health --auth-choice lmstudio ``` Or specify base URL, model, and API key explicitly: @@ -82,6 +82,7 @@ Or specify base URL, model, and API key explicitly: openclaw onboard \ --non-interactive \ --accept-risk \ + --skip-health \ --auth-choice lmstudio \ --custom-base-url http://localhost:1234/v1 \ --lmstudio-api-key "$LM_API_TOKEN" \ diff --git a/docs/providers/longcat.md b/docs/providers/longcat.md index 335b46f5c49e..07be5be83f9b 100644 --- a/docs/providers/longcat.md +++ b/docs/providers/longcat.md @@ -56,7 +56,7 @@ primary model is already configured. ### Non-interactive setup ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice longcat-api-key \ --longcat-api-key "$LONGCAT_API_KEY" diff --git a/docs/providers/meta.md b/docs/providers/meta.md index fa032a867644..025f618d7b24 100644 --- a/docs/providers/meta.md +++ b/docs/providers/meta.md @@ -39,7 +39,7 @@ openclaw onboard --auth-choice meta-api-key ``` ```bash Direct flag -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice meta-api-key \ --meta-api-key "$MODEL_API_KEY" ``` @@ -66,7 +66,7 @@ export MODEL_API_KEY= ## Non-interactive setup ```bash -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice meta-api-key \ --meta-api-key "$MODEL_API_KEY" diff --git a/docs/providers/ollama.md b/docs/providers/ollama.md index 5c9779705ea7..254487c4a186 100644 --- a/docs/providers/ollama.md +++ b/docs/providers/ollama.md @@ -86,11 +86,10 @@ OpenAI-SDK-style examples, but new config should use `baseUrl`. Non-interactive: ```bash - openclaw onboard --non-interactive \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice ollama \ --custom-base-url "http://ollama-host:11434" \ - --custom-model-id "qwen3.5:27b" \ - --accept-risk + --custom-model-id "qwen3.5:27b" ``` `--custom-base-url` and `--custom-model-id` are optional; omitting them uses the local default host and the `gemma4` suggested model. diff --git a/docs/providers/tencent.md b/docs/providers/tencent.md index d7143c48d45f..02aca7032a55 100644 --- a/docs/providers/tencent.md +++ b/docs/providers/tencent.md @@ -38,7 +38,7 @@ openclaw onboard --auth-choice tokenhub-api-key ``` ```bash TokenHub direct flag -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice tokenhub-api-key \ --tokenhub-api-key "$TOKENHUB_API_KEY" ``` @@ -48,7 +48,7 @@ openclaw onboard --auth-choice tokenplan-api-key ``` ```bash TokenPlan direct flag -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice tokenplan-api-key \ --tokenplan-api-key "$TOKENPLAN_API_KEY" ``` diff --git a/docs/providers/together.md b/docs/providers/together.md index f9f333678781..653655b35229 100644 --- a/docs/providers/together.md +++ b/docs/providers/together.md @@ -47,7 +47,7 @@ OpenClaw bundles it as the `together` provider. ### Non-interactive example ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice together-api-key \ --together-api-key "$TOGETHER_API_KEY" diff --git a/docs/providers/venice.md b/docs/providers/venice.md index 55b32897b60b..0671a068dfbc 100644 --- a/docs/providers/venice.md +++ b/docs/providers/venice.md @@ -50,7 +50,7 @@ Anonymized models are not fully private. Venice strips metadata before forwardin ```bash - openclaw onboard --non-interactive \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice venice-api-key \ --venice-api-key "vapi_xxxxxxxxxxxx" ``` diff --git a/docs/providers/vercel-ai-gateway.md b/docs/providers/vercel-ai-gateway.md index df464ef68535..36df4d6d5349 100644 --- a/docs/providers/vercel-ai-gateway.md +++ b/docs/providers/vercel-ai-gateway.md @@ -60,7 +60,7 @@ refs such as `vercel-ai-gateway/openai/gpt-5.5` and ## Non-interactive example ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice ai-gateway-api-key \ --ai-gateway-api-key "$AI_GATEWAY_API_KEY" diff --git a/docs/providers/vllm.md b/docs/providers/vllm.md index 8ff6338857fb..a13fddd614c9 100644 --- a/docs/providers/vllm.md +++ b/docs/providers/vllm.md @@ -60,7 +60,7 @@ vLLM serves open-source (and some custom) models through an **OpenAI-compatible* For non-interactive setup (CI, scripting), pass the base URL, key, and model directly: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice vllm \ --custom-base-url "http://127.0.0.1:8000/v1" \ diff --git a/docs/providers/volcengine.md b/docs/providers/volcengine.md index c62d56ed85ed..64e519eb8c42 100644 --- a/docs/providers/volcengine.md +++ b/docs/providers/volcengine.md @@ -58,7 +58,7 @@ The Volcengine provider gives access to Doubao models and third-party models hos For non-interactive setup (CI, scripting), pass the key directly: ```bash -openclaw onboard --non-interactive \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice volcengine-api-key \ --volcengine-api-key "$VOLCANO_ENGINE_API_KEY" diff --git a/docs/reference/wizard.md b/docs/reference/wizard.md index a535a3db9325..f85ba4ad6e8b 100644 --- a/docs/reference/wizard.md +++ b/docs/reference/wizard.md @@ -186,7 +186,7 @@ Gateway token SecretRef in non-interactive mode: ```bash export OPENCLAW_GATEWAY_TOKEN="your-token" -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice skip \ --gateway-auth token \ diff --git a/docs/start/wizard-cli-automation.md b/docs/start/wizard-cli-automation.md index f64a4873bb1b..8901305128b6 100644 --- a/docs/start/wizard-cli-automation.md +++ b/docs/start/wizard-cli-automation.md @@ -9,6 +9,8 @@ sidebarTitle: "CLI automation" Use `openclaw onboard --non-interactive` to script setup. It requires `--accept-risk`: non-interactive setup can write credentials and daemon config without a confirmation prompt, so the flag is the explicit risk acknowledgement. +Each command must install a managed Gateway with `--install-daemon`, use `--skip-health` for config-only setup, or run with an already-running compatible Gateway. + `--json` does not imply non-interactive mode. Pass `--non-interactive --accept-risk` explicitly for scripts. @@ -35,7 +37,7 @@ Add `--json` for a machine-readable summary. - `--secret-input-mode ref` stores new credentials as env-backed references (`{ source: "env", provider: "default", id: "" }`); set the provider env var when adding a credential or passing an inline key flag. Existing resolvable named profiles and their `env`, `file`, `exec`, or `store` references are reused unchanged, without a new credential write or additional provider env var. Existing plaintext is not migrated; run `openclaw secrets configure --apply`, then `openclaw secrets audit --check`. See [Secrets management](/gateway/secrets). ```bash -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice openai-api-key \ --secret-input-mode ref @@ -46,7 +48,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice apiKey \ --anthropic-api-key "$ANTHROPIC_API_KEY" \ @@ -55,7 +57,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice cloudflare-ai-gateway-api-key \ --cloudflare-ai-gateway-account-id "your-account-id" \ @@ -66,7 +68,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice gemini-api-key \ --gemini-api-key "$GEMINI_API_KEY" \ @@ -75,7 +77,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice mistral-api-key \ --mistral-api-key "$MISTRAL_API_KEY" \ @@ -84,7 +86,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice moonshot-api-key \ --moonshot-api-key "$MOONSHOT_API_KEY" \ @@ -93,7 +95,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice ollama \ --custom-model-id "qwen3.5:27b" \ @@ -102,7 +104,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice opencode-zen \ --opencode-zen-api-key "$OPENCODE_API_KEY" \ @@ -112,7 +114,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice synthetic-api-key \ --synthetic-api-key "$SYNTHETIC_API_KEY" \ @@ -121,7 +123,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice ai-gateway-api-key \ --ai-gateway-api-key "$AI_GATEWAY_API_KEY" \ @@ -130,7 +132,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice zai-api-key \ --zai-api-key "$ZAI_API_KEY" \ @@ -139,7 +141,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice custom-api-key \ --custom-base-url "https://llm.example.com/v1" \ @@ -159,7 +161,7 @@ openclaw onboard --non-interactive --accept-risk \ ```bash export CUSTOM_API_KEY="your-key" - openclaw onboard --non-interactive --accept-risk \ + openclaw onboard --non-interactive --accept-risk --skip-health \ --mode local \ --auth-choice custom-api-key \ --custom-base-url "https://llm.example.com/v1" \ diff --git a/docs/start/wizard-cli-reference.md b/docs/start/wizard-cli-reference.md index 5d9e2d2e1ea0..c5a0e9107de3 100644 --- a/docs/start/wizard-cli-reference.md +++ b/docs/start/wizard-cli-reference.md @@ -368,7 +368,7 @@ The results screen lists the detected applications and shows: "App names were ma powerful and full system access is risky): ```bash -openclaw onboard --non-interactive --accept-risk \ +openclaw onboard --non-interactive --accept-risk --skip-health \ --auth-choice apiKey \ --anthropic-api-key "$ANTHROPIC_API_KEY" ```