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

@@ -13,7 +13,7 @@ Use the installer unless you have a reason not to. It sets up the CLI and runs o
## Quick install (recommended)
```bash
curl -fsSL https://openclaw.bot/install.sh | bash
curl -fsSL https://openclaw.ai/install.sh | bash
```
Windows (PowerShell):
@@ -41,13 +41,13 @@ openclaw onboard --install-daemon
Installs `openclaw` globally via npm and runs onboarding.
```bash
curl -fsSL https://openclaw.bot/install.sh | bash
curl -fsSL https://openclaw.ai/install.sh | bash
```
Installer flags:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --help
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --help
```
Details: [Installer internals](/install/installer).
@@ -55,7 +55,7 @@ Details: [Installer internals](/install/installer).
Non-interactive (skip onboarding):
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --no-onboard
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --no-onboard
```
### 2) Global install (manual)
@@ -124,10 +124,10 @@ The installer supports two methods:
```bash
# Explicit npm
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method npm
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method npm
# Install from GitHub (source checkout)
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method git
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git
```
Common flags:

View File

@@ -1,7 +1,7 @@
---
summary: "How the installer scripts work (install.sh + install-cli.sh), flags, and automation"
read_when:
- You want to understand `openclaw.bot/install.sh`
- You want to understand `openclaw.ai/install.sh`
- You want to automate installs (CI / headless)
- You want to install from a GitHub checkout
title: "Installer Internals"
@@ -11,14 +11,14 @@ title: "Installer Internals"
OpenClaw ships two installer scripts (served from `openclaw.ai`):
- `https://openclaw.bot/install.sh` — “recommended” installer (global npm install by default; can also install from a GitHub checkout)
- `https://openclaw.bot/install-cli.sh` — non-root-friendly CLI installer (installs into a prefix with its own Node)
- `https://openclaw.ai/install.sh` — “recommended” installer (global npm install by default; can also install from a GitHub checkout)
- `https://openclaw.ai/install-cli.sh` — non-root-friendly CLI installer (installs into a prefix with its own Node)
- `https://openclaw.ai/install.ps1` — Windows PowerShell installer (npm by default; optional git install)
To see the current flags/behavior, run:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --help
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --help
```
Windows (PowerShell) help:
@@ -46,7 +46,7 @@ What it does (high level):
If you _want_ `sharp` to link against a globally-installed libvips (or youre debugging), set:
```bash
SHARP_IGNORE_GLOBAL_LIBVIPS=0 curl -fsSL https://openclaw.bot/install.sh | bash
SHARP_IGNORE_GLOBAL_LIBVIPS=0 curl -fsSL https://openclaw.ai/install.sh | bash
```
### Discoverability / “git install” prompt
@@ -79,7 +79,7 @@ This script installs `openclaw` into a prefix (default: `~/.openclaw`) and also
Help:
```bash
curl -fsSL https://openclaw.bot/install-cli.sh | bash -s -- --help
curl -fsSL https://openclaw.ai/install-cli.sh | bash -s -- --help
```
## install.ps1 (Windows PowerShell)

View File

@@ -116,7 +116,7 @@ If you used a profile, delete the matching task name and `~\.openclaw-<profile>\
### Normal install (install.sh / npm / pnpm / bun)
If you used `https://openclaw.bot/install.sh` or `install.ps1`, the CLI was installed with `npm install -g openclaw@latest`.
If you used `https://openclaw.ai/install.sh` or `install.ps1`, the CLI was installed with `npm install -g openclaw@latest`.
Remove it with `npm rm -g openclaw` (or `pnpm remove -g` / `bun remove -g` if you installed that way).
### Source checkout (git clone)

View File

@@ -17,7 +17,7 @@ detects existing installs, upgrades in place, and runs `openclaw doctor` when
needed.
```bash
curl -fsSL https://openclaw.bot/install.sh | bash
curl -fsSL https://openclaw.ai/install.sh | bash
```
Notes:
@@ -25,7 +25,7 @@ Notes:
- Add `--no-onboard` if you dont want the onboarding wizard to run again.
- For **source installs**, use:
```bash
curl -fsSL https://openclaw.bot/install.sh | bash -s -- --install-method git --no-onboard
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git --no-onboard
```
The installer will `git pull --rebase` **only** if the repo is clean.
- For **global installs**, the script uses `npm install -g openclaw@latest` under the hood.