fix(docs): use canonical openclaw.ai domain instead of openclaw.bot

This commit is contained in:
Stefan Förster
2026-01-31 13:57:35 +01:00
committed by Gustavo Madeira Santana
parent 9297ea48e5
commit 7a2c4d3cf1
13 changed files with 34 additions and 34 deletions

View File

@@ -274,7 +274,7 @@ setup (PATH, services, permissions, auth files). Give them the **full source che
the hackable (git) install:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method git
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git
```
This installs OpenClaw **from a git checkout**, so the agent can read the code + docs and
@@ -313,7 +313,7 @@ Install docs: [Install](/install), [Installer flags](/install/installer), [Updat
The repo recommends running from source and using the onboarding wizard:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash
curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon
```
@@ -470,11 +470,11 @@ https://github.com/openclaw/openclaw/blob/main/CHANGELOG.md
Oneliners (macOS/Linux):
```bash
curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.bot/install.sh | bash -s -- --beta
curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash -s -- --beta
```
```bash
curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.bot/install.sh | bash -s -- --install-method git
curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash -s -- --install-method git
```
Windows installer (PowerShell):
@@ -507,7 +507,7 @@ This switches to the `main` branch and updates from source.
2. **Hackable install (from the installer site):**
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method git
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git
```
That gives you a local repo you can edit, then update via git.
@@ -529,19 +529,19 @@ Docs: [Update](/cli/update), [Development channels](/install/development-channel
Re-run the installer with **verbose output**:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --verbose
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --verbose
```
Beta install with verbose:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --beta --verbose
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --beta --verbose
```
For a hackable (git) install:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method git --verbose
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git --verbose
```
More options: [Installer flags](/install/installer).
@@ -574,7 +574,7 @@ Use the **hackable (git) install** so you have the full source and docs locally,
your bot (or Claude/Codex) _from that folder_ so it can read the repo and answer precisely.
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method git
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git
```
More detail: [Install](/install) and [Installer flags](/install/installer).

View File

@@ -39,13 +39,13 @@ Almost always a Node/npm PATH issue. Start here:
Re-run the installer in verbose mode to see the full trace and npm output:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --verbose
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --verbose
```
For beta installs:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --beta --verbose
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --beta --verbose
```
You can also set `OPENCLAW_VERBOSE=1` instead of the flag.