Clears your inbox, sends emails, manages your calendar, checks you in for flights.
All from WhatsApp, Telegram, or any chat app you already use.
Your Open Claw instance is being deployed. Please allow up to 5 minutes for it to become available, then follow the steps below to log in.
Click the link below to open your Open Claw instance:
You will be greeted with a login screen. Enter the credentials below to get started.
Username: clawmine
Password: Password
A browser-based VS Code editor with a terminal is included with your instance:
Password: Password
These commands are typed directly in the Open Claw chat. Use them to control your session:
| Command | When to Use |
|---|---|
/new |
Start a fresh session (clears conversation history) |
/compact |
Summarize old messages to free up context (when conversations get long) |
/status |
Check current session info, model, and token usage |
/help |
See all available commands |
stop (no slash) |
Abort the current response mid-stream |
Pro tip: If the assistant seems to lose context or exceeded it's context window, you'll want a clean slate, just type /new.
Open Claw can learn new skills from ClawHub, a marketplace of community and official skills. Use these commands in chat:
| Command | Description |
|---|---|
/skill clawhub search "<query>" |
Search for skills (e.g., /skill clawhub search "postgres backups") |
/skill clawhub install <name> |
Install a skill |
/skill clawhub list |
List installed skills |
/skill clawhub update --all |
Update all skills to latest versions |
Or use direct shell commands via !:
! clawhub search "weather"
! clawhub install weather
Your instance comes with Homebrew and Docker pre-installed. The assistant can:
brew install ~/.openclaw/skills/ Paste this prompt into your Open Claw chat to set up a local SearXNG search engine (no API keys, no tracking):
Set up a local SearXNG search container you can use for web searches. Run it on port 8888 with Docker (Docker is already installed ready for you to use). Use the searxng/searxng image. Name the container "searx". Then create a skill at ~/.openclaw/skills/searx-search/SKILL.md that teaches you how to query it via curl with format=json.
This gives you a privacy-focused search engine the assistant can use without API keys or rate limits.
If Open Claw becomes unresponsive or you need to restart the gateway:
Option 1: Use Code Server terminal
1. Open Code Server
2. Open a terminal (Terminal → New Terminal)
3. Run: openclaw gateway --force
Option 2: SSH into your instance
openclaw gateway --force
The --force flag kills any existing gateway process and starts fresh.
Open Claw can spawn subagents — specialized worker sessions that run tasks in the background and report back. This lets your main agent delegate research, coding tasks, or long-running jobs without blocking your conversation.
Paste this into your Open Claw chat to create specialized subagents ready for delegation:
```
Update the OpenClaw config to enable agent delegation. Add the following to the agents.defaults.subagents section:
id: "research"
subagents.model pointing to a fast/cheap model
subagents.allowAgents: ["*"] (can spawn any agent)
After updating config, show me a summary of what was configured
```
Once configured, your main agent can delegate naturally:
| You say... | What happens |
|---|---|
| "Research the vLLM API and summarize key endpoints" | Spawns a research subagent, reports back when done |
| "In the background, look up pricing for GPU instances on major clouds" | Subagent works while you continue chatting |
| "Spawn a coding agent to fix the tests in /workspace/myapp" | Delegates to a specialized agent |
| Command | When to Use |
|---|---|
/subagents list |
See active subagent runs |
/subagents log <id> |
Check output from a specific run |
/subagents kill <id> |
Stop a running subagent |
/subagents kill all |
Stop all subagents |
Pro tip: Subagents are best for "fire and forget" tasks. They announce results back to your chat when complete, so you can keep working without waiting.
We've tuned a few defaults to make your experience smoother:
Your Open Claw config lives at ~/.openclaw/openclaw.json. You can edit it directly in Code Server, or just ask your agent to make changes for you:
"Update my config to enable verbose mode by default"
The gateway should auto-restart as soon as it detects config changes. If it doesn't pick up the change, don't be afraid to force it:
openclaw gateway --force
Report an application with malicious intent or harmful content.