OpenClaw aka (Clawdbot, MoltBot) is an open agent platform that runs on your machine and works from the chat apps you already use. WhatsApp, Telegram, Discord, Slack, Teams—wherever you are, your AI assistant follows.
OpenClaw aka (Clawdbot, MoltBot) is an open agent platform that runs on your machine and works from the chat apps you already use. WhatsApp, Telegram, Discord, Slack, Teams—wherever you are, your AI assistant follows.
Unlike SaaS assistants where your data lives on someone else’s servers, OpenClaw runs where you choose—laptop, homelab, or VPS. Your infrastructure. Your keys. Your data.
🚀 Easy Setup on Coolify
Open your Coolify Dashboard.
Navigate to Project > New.
Select Public Repository.
Enter the URL: https://github.com/essamamdani/openclaw-coolify
Click Continue.
📦 Post-Deployment (Ready)
Once the container is running and healthy:
Access the Dashboard:
Open the Service Logs in Coolify.
Look for: 🦞 OPENCLAW READY.
You will see a Dashboard URL with a token (e.g., https://.../?token=xyz).
Click that link to access your OpenClaw Gateway UI.
Approve Your Device:
You will see an "Unauthorized" or pairing screen (this is normal).
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Security Note: openclaw-approve is a break-glass utility that auto-accepts ALL pending pairing requests. Only run this immediately after accessing the URL yourself. Do not leave it running or use it when you don't recognize a request.
Guided Onboarding: To configure your agent's personality and skills:
In the terminal, run: openclaw onboard
Follow the interactive wizard.
Configure Channels: Go to the Channels tab in the dashboard to link WhatsApp, Telegram, etc.
� Channel Setup
OpenClaw lives where you work. You can connect it to WhatsApp, Telegram, Discord, etc.
📱 Telegram
Fastest setup.
Talk to @BotFather on Telegram.
Create a new bot (/newbot) and get the Token.
Add TELEGRAM_BOT_TOKEN to your Coolify Environment Variables.
Redeploy (or just restart).
DM your new bot. It will ask for a Pairing Code.
Go to your OpenClaw Dashboard > Pairing to approve it.
ClawHub is the public skill registry for OpenClaw. It allows you to easily find, install, and share capabilities for your agent.
Quick Start
Search for a skill:
clawhub search "calendar"
Install it:
clawhub install <skill-slug>
Use it: Restart your session, and the agent will have the new capabilities.
CLI Commands
The clawhub CLI is pre-installed in your container.
| Command | Description |
| :--- | :--- |
| clawhub search "query" | Find skills by name or tag. |
| clawhub install <slug> | Install a skill into your workspace. |
| clawhub update --all | Update all installed skills to the latest version. |
| clawhub login | Login to publish your own skills. |
| clawhub publish | Publish a skill from the current directory. |
How it Works
A skill is a folder containing a SKILL.md (instructions) and supporting files. When you install a skill, it is downloaded to your workspace. OpenClaw automatically loads these skills, giving your agent new powers without writing code.
� Architecture: The AI Office
Think of this Docker container not as an app, but as an Office Building.
1. The Staff (Multi-Agent System)
The Manager (Gateway): The main openclaw process. It hires "staff" to do work.
The Workers (Sandboxes): When you ask for a complex coding task, the Manager spins up isolated Docker containers (sub-agents).
They have their own Linux tools (Python, Node, Go).
Self-Healing: Docker volumes ensure openclaw-config and openclaw-workspace persist forever.
🔒 Security & Sandboxing
Authentication: Dashboard is token-protected. New chat users must be "paired" (approved) first.
Docker Proxy: This setup uses a Sockety Proxy (Sidecar) pattern.
OpenClaw talks to a restricted Docker API proxy (tcp://docker-proxy:2375).
Blocked: Swarm, Secrets, System, Volumes, and other critical host functions.
Allowed: Only what's needed for sandboxing (Containers, Images, Networks).
Isolation: Sub-agents run in disposable containers. SOUL.md rules forbid the agent from touching your other Coolify services.
❓ FAQ & Troubleshooting
Usage
Q: How do I install extra tools like nmap or ffmpeg?
A: Don't edit the Dockerfile! Use Skills.
Create a folder skills/my-tools with a SKILL.md file instructing the agent to "Use apt-get to install ffmpeg".
Or install a pre-made skill: clawhub install web-utils.
Requirements
Q: How much space do I need on my Coolify server to install openclaw-coolify ?
A: Make sure to have approximately 13 GB of free space, even if all are not used, this is what is required in docker build cache during the install process.
Connection Issues
Q: "No available server" or "502 Bad Gateway" on Coolify?
A: Ensure your docker-compose.yaml has expose: ["18789"] (fixed in latest version).
A: Check logs for OpenClaw listening on 18789. If it says 127.0.0.1, Traefik cannot reach it. It must listen on 0.0.0.0 or lan (default).
Q: I can't connect from my Mac/PC?
A: Use the Public URL generated by Coolify (e.g., https://openclaw.my-server.com).
A: DO NOT try to connect to http://<server-ip>:18789 directly unless you manually opened that port in your server's firewall (UFW/AWS Security Group). The default setup uses reverse proxying for security.
Q: minimax-portal-auth failed to load?
A: This is a known warning from an optional plugin. You can safely ignore it; it does not affect the agent's core functionality.
A Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context back into future sessions.