fix: friendlier Windows onboarding message (#6242)

Co-authored-by: CLAWDINATOR <clawdinator@openclaw.ai>
Co-authored-by: Scott Hanselman <scott@hanselman.com>
This commit is contained in:
clawdinator[bot]
2026-02-01 12:55:22 +00:00
committed by GitHub
parent a1e89afcc1
commit b897389b87
2 changed files with 5 additions and 3 deletions

View File

@@ -11,7 +11,8 @@ title: "Windows (WSL2)"
OpenClaw on Windows is recommended **via WSL2** (Ubuntu recommended). The
CLI + Gateway run inside Linux, which keeps the runtime consistent and makes
tooling far more compatible (Node/Bun/pnpm, Linux binaries, skills). Native
Windows installs are untested and more problematic.
Windows might be trickier. WSL2 gives you the full Linux experience — one command
to install: `wsl --install`.
Native Windows companion apps are planned.

View File

@@ -63,8 +63,9 @@ export async function onboardCommand(opts: OnboardOptions, runtime: RuntimeEnv =
if (process.platform === "win32") {
runtime.log(
[
"Windows detected.",
"WSL2 is strongly recommended; native Windows is untested and more problematic.",
"Windows detected — OpenClaw runs great on WSL2!",
"Native Windows might be trickier.",
"Quick setup: wsl --install (one command, one reboot)",
"Guide: https://docs.openclaw.ai/windows",
].join("\n"),
);