Get Started with OpenClaw
From zero to AI assistant — choose your path and follow along.
OpenClaw 시작에는 약 5–15분이 걸립니다 경험 수준에 따라 다릅니다. 설정 과정은 세 단계입니다: npm으로 OpenClaw 설치 (npm install -g openclaw), init 마법사를 실행해 AI 모델 API 키 설정 (openclaw init), 게이트웨이 시작 (openclaw gateway start). 코딩은 필요 없습니다 — 마법사가 인터랙티브 프롬프트로 설정을 처리합니다.
OpenClaw는 세 가지 설치 방법을 지원합니다: npm(대부분의 사용자에게 권장), Docker(컨테이너 배포용), 소스 빌드(컨트리뷰터용)입니다. 설치 후에는 메시징 플랫폼을 선택적으로 연결할 수 있습니다 — WhatsApp·Telegram·Discord·Slack은 각각 약 5분 정도가 더 듭니다. 최소 시스템 요구 사항은 Node.js 18+, 2GB RAM, 1GB 디스크 공간입니다.
I am a…
Install OpenClaw
The fastest way to get started is with npm. Open your terminal and run:
npm install -g openclaw
openclaw init brew install nodeThe openclaw init wizard will walk you through setting up your API key and preferences.
Choose your preferred method:
npm install -g openclaw
openclaw init
openclaw gateway start docker pull openclaw/openclaw:latest
docker volume create openclaw-config
docker run -it \
-v openclaw-config:/home/openclaw/.openclaw \
-p 3000:3000 \
openclaw/openclaw:latest init git clone https://github.com/openclaw/openclaw.git
cd openclaw
npm install
npm run build
npm link You know the drill. Quickest path:
npm i -g openclaw && openclaw init && openclaw gateway start Or use Docker with compose for a production-like setup. See hosting options for VPS and cloud deploys.
Configure Your AI
You'll need an API key from an AI provider. We recommend Anthropic (Claude) for the best experience:
- Go to console.anthropic.com
- Sign up and create an API key
- Run
openclaw configand paste your key when prompted
Configure via CLI or edit ~/.openclaw/config.yaml directly:
# ~/.openclaw/config.yaml
ai:
provider: anthropic
model: claude-sonnet-4-20250514
apiKey: ${ANTHROPIC_API_KEY}
gateway:
host: 127.0.0.1
port: 3000 Supports OpenAI, Anthropic, OpenRouter, and local models via Ollama. See docs for all provider options.
Set up environment variables and configure multiple providers for model routing:
ai:
providers:
anthropic:
apiKey: ${ANTHROPIC_API_KEY}
openai:
apiKey: ${OPENAI_API_KEY}
routing:
simple: claude-3-haiku
complex: claude-3-opus
code: gpt-4-turbo Check the advanced guides for model routing strategies and cost optimization.
Your First Conversation
Time for the magic moment! Start a chat:
openclaw chat Try saying:
What can you help me with?Summarize quantum computing in 3 bulletsWrite a haiku about coffee
Quick verification:
# One-shot test
openclaw chat "Hello! List 3 ways you can help developers."
# Interactive mode
openclaw chat
# Check status & logs
openclaw status
openclaw logs --tail 20 The gateway exposes a local API at http://localhost:3000 — useful for integrating with your own tools.
Verify, then jump straight into connecting channels:
openclaw chat "System check: confirm all providers are accessible"
openclaw status --verbose Connect a Messaging App
Now bring your AI into an app you already use:
For personal use, WhatsApp or Telegram is easiest. Just run:
openclaw connect whatsapp Scan the QR code with your phone, and you're connected!
Connect programmatically or via the CLI. Full channel reference at channels page.
# Telegram (bot token from @BotFather)
openclaw connect telegram
# Discord (bot token from developer portal)
openclaw connect discord
# Slack (app manifest install)
openclaw connect slack See the integrations page for webhooks, APIs, and custom channel development.
Connect multiple channels simultaneously and configure per-channel behavior:
channels:
whatsapp:
enabled: true
personality: casual
slack:
enabled: true
personality: professional
discord:
enabled: true
personality: fun What's Next?
You're up and running! Here's where to go from here:
Quick Reference
openclaw gateway start Start the gateway openclaw gateway stop Stop the gateway openclaw chat Interactive chat openclaw status Check status openclaw skill list Browse skills openclaw help Full command list Join our Discord Community
Get help, share your setup, and connect with other OpenClaw users.