OpenClaw Getting Started: Install and Your First Chat
Go from zero to your first OpenClaw chat in minutes. Install via curl or npm, run the onboarding wizard, and start chatting in the Control UI or via connected channels.
OpenClaw Getting Started: Install and Your First Chat
OpenClaw is an AI gateway that lets you chat with Claude, OpenAI, and other models from one place—including WhatsApp, Telegram, Slack, Discord, and the built-in Control UI. This guide gets you from zero to your first working chat with minimal setup.
Prerequisites
You need Node.js 22 or newer. Check with `node --version` if you are unsure.
Install OpenClaw
macOS/Linux (recommended):
```bash
curl -fsSL https://openclaw.ai/install.sh | bash
```
Windows (PowerShell):
```powershell
iwr -useb https://openclaw.ai/install.ps1 | iex
```
You can also install via npm (`npm install -g openclaw`) or from source; see the official Install docs for details.
Run the Onboarding Wizard
After installing, run:
```bash
openclaw onboard --install-daemon
```
The wizard will walk you through:
Check the Gateway
If you installed the service, the gateway should already be running. Verify with:
```bash
openclaw gateway status
```
Open the Control UI
The fastest way to chat without setting up a channel is the Control UI:
```bash
openclaw dashboard
```
This opens the web interface at http://127.0.0.1:18789/. You can chat directly in the browser—no channel setup needed.
Optional: Run Gateway in Foreground
For quick tests or debugging, run the gateway in the foreground:
```bash
openclaw gateway --port 18789
```
What You Have Now
Next steps: connect more channels, configure AI providers (Claude, OpenAI, OpenRouter, Ollama), and explore skills and automation.
Related Articles
OpenClaw Chat Commands: /status, /new, /think, and /verbose
Control your OpenClaw sessions with chat commands. Learn /status, /new, /reset, /think, and /verbose for session control and reasoning depth.
AI & Technology•4 min readOpenClaw Gateway and Dashboard: Run and Control Your AI Gateway
Run the OpenClaw gateway, check its status, and use the dashboard (Control UI) to chat and manage sessions. Local API and web interface explained.
AI & Technology•4 min readOpenClaw Channels: WhatsApp, Telegram, Slack, and Discord
Connect OpenClaw to WhatsApp, Telegram, Slack, and Discord. Use one AI gateway across all your messaging platforms and DMs.
AI & Technology•5 min read
Related Articles
Building Production RAG Systems in 2025: Lessons from 50+ Deployments
After deploying RAG pipelines for 50+ businesses — from law firms to hospitals to e-commerce brands — here are the real lessons that nobody talks about. Chunking strategies, retrieval quality, eval frameworks, and what actually breaks in production.
AI Agents in 2025: From Hype to Real Business Results
AI agents were overhyped in 2023. In 2025, they are quietly transforming operations at companies that got the fundamentals right. Here is what actually works, what still breaks, and how to deploy agents that deliver measurable ROI.
Claude vs GPT-4o vs Gemini: Which LLM to Use in Production (2025 Guide)
After building 60+ AI products with every major LLM, here is an honest, task-by-task comparison of Claude 3.5, GPT-4o, and Gemini 1.5 Pro for production use. Not benchmarks — real-world performance across document analysis, coding, agents, and RAG.