Nov 2025: Clawd begins (a weekend hack)
In the official blog, the author describes it as a weekend prototype that started with a simple goal: let an AI reply inside WhatsApp. “Clawd” was a playful pun (Claude + claw).
More than chat. Stay always-on inside the channels you already use, powered by a local Gateway and a tool system to take actions. Your data, your keys, your rules.
A timeline summary based on official blog and repository info.
In the official blog, the author describes it as a weekend prototype that started with a simple goal: let an AI reply inside WhatsApp. “Clawd” was a playful pun (Claude + claw).
The community then moved to “Moltbot”, where molting symbolizes growth. During this phase, the project spread rapidly and evolved from a chat relay into a broader agent platform.
The official announcement introduced the final name: OpenClaw—Open for open source and community; Claw for the lobster heritage. They also completed trademark checks, domain purchases, and migration code.
In the GitHub README, the Gateway is defined as the control plane: sessions, channels, tools, events, and the Web UI. Think of it as the local hub for your agent.
Over time, it added the pieces that connect to the real world: multi-channel messaging, iOS/Android nodes, browser tooling, cron automation, and skills.
The blog notes the growth from a weekend hack to 100k+ stars and millions of visitors. A key reason: it is not SaaS—it’s your assistant, on your machine.
A practical list of capabilities, distilled from the official README.
The README lists many channels: WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, iMessage/BlueBubbles, IRC, Teams, Matrix, Feishu, LINE, Mattermost, Nextcloud Talk, Twitch, WebChat, and more.
The Gateway centralizes sessions, channels, tools, events, and the web UI. You can chat in the Control UI or operate via the CLI.
Docs emphasize multi-provider setups with OAuth/API keys and failover—critical for always-on assistants.
OpenClaw can act via tools: browser control (managed Chrome/Chromium), Canvas workspace, device nodes (camera/screen/notifications), cron automation and webhooks.
Skills package tools + prompts + workflows. Use bundled/managed/workspace skills to adapt the assistant to your own workflows.
For Telegram/WhatsApp/Signal/iMessage/Discord/Slack etc., the default is DM pairing (code + allowlist). Start single-user, then open up cautiously.
The README notes the Gateway can run on Linux and be exposed via Tailscale Serve/Funnel or SSH tunnels (with proper security).
Docs cover the recommended script install, npm/pnpm, Docker/Podman, Nix, Ansible and more—local or cloud.
Fastest path from zero to working: installer script + onboarding wizard.
curl -fsSL https://openclaw.ai/install.sh | bash
iwr -useb https://openclaw.ai/install.ps1 | iex
npm install -g openclaw@latest
openclaw onboard --install-daemon
pnpm add -g openclaw@latest
pnpm approve-builds -g
openclaw onboard --install-daemon
git clone https://github.com/openclaw/openclaw.git
cd openclaw
pnpm install
pnpm ui:build
pnpm build
openclaw onboard --install-daemon
Note: pnpm may require explicit approval for packages with build scripts (e.g., sharp).
sudo apt-get update
sudo apt-get install -y ca-certificates curl git
# Install Docker Engine (It is recommended to use the official installation method; skip this step if already installed.)# https://docs.docker.com/engine/install/
# Install Docker Compose v2 (Most new versions already come with the docker compose subcommand)docker compose version
git clone https://github.com/openclaw/openclaw.git
cd openclaw
# Official recommendation: Run from the repository root directory./docker-setup.sh
# Check gateway container statusdocker compose ps
# Open (or print) the Dashboard URL (browser does not open automatically)docker compose run --rm openclaw-cli dashboard --no-open
# Health check (authentication not required)curl -fsS http://127.0.0.1:18789/healthz
curl -fsS http://127.0.0.1:18789/readyz
# Use the official GHCR mirror (do not use unofficial mirrors with the same name)export OPENCLAW_IMAGE="ghcr.io/openclaw/openclaw:latest"
./docker-setup.sh
These steps follow the official Docker docs: docker-setup.sh builds/pulls the image, runs onboarding, starts the compose stack, and generates a Control UI token (written into .env). docs.openclaw.ai/install/docker
How to verify, open the Control UI, core commands, and security basics.
The recommended path is the wizard: it configures auth, gateway, optional channels, and can install a background daemon.
openclaw onboard --install-daemonopenclaw doctor
openclaw status
openclaw dashboarddashboard opens the browser UI (or visit http://127.0.0.1:18789/ on the gateway host).
openclaw gateway --port 18789 --verboseYou can also send messages via CLI to configured channels.
OpenClaw connects to real messaging surfaces. By default it pairs unknown DMs with a code; only approved senders can talk. Avoid overly-open allowlists.
Official security guide: docs.openclaw.ai/gateway/security
OPENCLAW_HOME:Internal Path BenchmarkOPENCLAW_STATE_DIR:Variable State DirectoryOPENCLAW_CONFIG_PATH:Configuration file pathPrefer official links; here are the primary entry points.
The README covers core concepts, quick start, channel list, and security defaults.
Contains release assets (desktop builds and source archives; assets may vary by version).
https://docs.openclaw.ai/
Authoritative reference for install, channels, tools, platforms, and ops.
https://openclaw.ai/install.sh
One-liner installer: detects Node, installs CLI, starts onboarding.
Feel free to reach out.