Onboarding skips Model/Auth setup (agent unresponsive after install)
Fix a broken onboarding flow where OpenClaw defaults to a model without credentials, causing the agent to hang, by configuring provider auth manually and rerunning current configuration.
Symptoms
openclaw onboardfinishes, but you were never asked to pick a model provider or enter an API key.- OpenClaw defaults to
anthropic/claude-opus-4-6, but the agent never responds (TUI/WebChat shows “loading” indefinitely). - Re-running
openclaw onboarddoes not bring back the missing Model/Auth step.
Cause
The onboarding wizard can be broken in some releases and skip the Model/Auth step entirely. When that happens, OpenClaw may default to a provider/model that requires credentials, but no credentials were configured, so the agent cannot complete requests.
Fix
1) Configure a provider API key after onboarding (fastest)
If you’re using Anthropic:
openclaw config set env.ANTHROPIC_API_KEY "sk-ant-..."
openclaw gateway restart
If you’re using OpenAI instead, set env.OPENAI_API_KEY (or configure it via openclaw configure) and restart the gateway.
2) Run the interactive configurator
openclaw configure
openclaw gateway restart
3) Recover after a release-specific onboarding regression
If possible, move back to the current stable path, rerun configuration, and restart the gateway:
openclaw configure
openclaw gateway restart
If you are responding to a proven release-specific regression and have a personally validated last-working version, follow the generic rollback flow in /guides/updating-and-migration. Do not use a historical pin by default.
Verify
- Send a message in TUI/WebChat; the agent responds normally.
- Optional:
openclaw models status --probesucceeds for your configured provider.
Related
- GitHub issue: #16134