refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -1,12 +1,12 @@
---
summary: "Windows (WSL2) support + companion app status"
read_when:
- Installing Moltbot on Windows
- Installing OpenClaw on Windows
- Looking for Windows companion app status
---
# Windows (WSL2)
Moltbot on Windows is recommended **via WSL2** (Ubuntu recommended). The
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.
@@ -27,19 +27,19 @@ Native Windows companion apps are planned.
Inside WSL2:
```
moltbot onboard --install-daemon
openclaw onboard --install-daemon
```
Or:
```
moltbot gateway install
openclaw gateway install
```
Or:
```
moltbot configure
openclaw configure
```
Select **Gateway service** when prompted.
@@ -47,7 +47,7 @@ Select **Gateway service** when prompted.
Repair/migrate:
```
moltbot doctor
openclaw doctor
```
## Advanced: expose WSL services over LAN (portproxy)
@@ -89,7 +89,7 @@ netsh interface portproxy add v4tov4 listenport=$ListenPort listenaddress=0.0.0.
Notes:
- SSH from another machine targets the **Windows host IP** (example: `ssh user@windows-host -p 2222`).
- Remote nodes must point at a **reachable** Gateway URL (not `127.0.0.1`); use
`moltbot status --all` to confirm.
`openclaw status --all` to confirm.
- Use `listenaddress=0.0.0.0` for LAN access; `127.0.0.1` keeps it local only.
- If you want this automatic, register a Scheduled Task to run the refresh
step at login.
@@ -132,17 +132,17 @@ Re-open Ubuntu, then verify:
systemctl --user status
```
### 3) Install Moltbot (inside WSL)
### 3) Install OpenClaw (inside WSL)
Follow the Linux Getting Started flow inside WSL:
```bash
git clone https://github.com/moltbot/moltbot.git
cd moltbot
git clone https://github.com/openclaw/openclaw.git
cd openclaw
pnpm install
pnpm ui:build # auto-installs UI deps on first run
pnpm build
moltbot onboard
openclaw onboard
```
Full guide: [Getting Started](/start/getting-started)