YOUR PERSONAL AI ASSISTANT
Product owned by illusionart AI Private Limited | Built by Shivam Chopra (Linkedin)
OpenCRAB is a personal AI assistant that lives on your computer, not in the cloud. It's smart, safe, and works with the apps you already use.
Imagine an AI that:
- 💬 Chats with you on WhatsApp, Telegram, Discord, Slack, and Signal.
- 🧠 Remembers your projects, tasks, and preferences.
- 🔒 Keeps your data private by running locally on your machine.
- 🛠️ Can do things like searching the web, managing files (safely!), and running everyday tasks.
It's like having a smart intern who works 24/7, lives on your laptop, and never gossips.
You don't need to be a developer to run OpenCRAB. You just need Docker.
- Install Docker Desktop:
- Download for Mac, Windows, or Linux
- Install it and open the app to make sure it's running.
1. Get the code Open your terminal (Command Prompt on Windows, Terminal on Mac) and run:
git clone https://github.com/shivamchopra7/OpenCRAB.git
cd OpenCRAB2. Run the Setup Wizard We've made a simple script that sets everything up for you. Just copy and paste this command:
./docker-setup.sh3. Follow the Prompts The script will ask you a few simple questions (like which AI model to use). Don't worry, the defaults are usually perfect!
4. Start Chatting!
Once it finishes, it will give you a link (usually http://localhost:18789). Open that in your browser to see your new assistant's dashboard.
From there, you can connect it to WhatsApp, Telegram, or just chat right in the web interface.
Yes. We designed OpenCRAB with safety and privacy as the #1 priority.
- ** Sandbox Isolation**: OpenCRAB runs inside a Docker Container. Think of this like a secure sandbox or a virtual machine.
- No Access to Your Files: By default, OpenCRAB cannot see or touch your personal files (photos, documents, desktop). It lives in its own little bubble.
- You Are in Control: If you want it to work on files, you have to explicitly give it permission. Otherwise, it's completely isolated.
- Safe Tools: Every "action" the AI takes (like browsing the web or running a command) happens inside this safe bubble. It can't delete your files or mess up your computer.
You can sleep soundly knowing your AI is powerful but strictly contained. 🦀
- Multi-Channel: Chat from anywhere – desktop, mobile, or web.
- Voice Mode: Speak to it naturally (requires app setup).
- Smart Memory: It remembers context across conversations.
- Web Browsing: It can look up live info for you.
- Live Canvas: A visual workspace for complex tasks.
If you want to contribute or build from source, we support a standard Node.js workflow.
Runtime: Node ≥22 Package Manager: pnpm
pnpm install
pnpm ui:build
pnpm build
pnpm opencrab onboard --install-daemonFor full documentation on architecture, API, and extensions, verify out the Docs.
MIT License. OpenCRAB is free and open source. It is built by Shivam Chopra and owned by IllusionArt AI.
The following sections cover advanced architecture, configuration, and operational details for power users.
WhatsApp / Telegram / Slack / Discord / Google Chat / Signal / iMessage / BlueBubbles / Microsoft Teams / Matrix / Zalo / Zalo Personal / WebChat
│
▼
┌───────────────────────────────┐
│ Gateway │
│ (control plane) │
│ ws://127.0.0.1:18789 │
└──────────────┬────────────────┘
│
├─ Pi agent (RPC)
├─ CLI (opencrab …)
├─ WebChat UI
├─ macOS app
└─ iOS / Android nodes
- Gateway WebSocket network — single WS control plane for clients, tools, and events (plus ops: Gateway runbook).
- Tailscale exposure — Serve/Funnel for the Gateway dashboard + WS (remote access: Remote).
- Browser control — opencrab‑managed Chrome/Chromium with CDP control.
- Canvas + A2UI — agent‑driven visual workspace (A2UI host: Canvas/A2UI).
- Voice Wake + Talk Mode — always‑on speech and continuous conversation.
- Nodes — Canvas, camera snap/clip, screen record,
location.get, notifications, plus macOS‑onlysystem.run/system.notify.
OpenCRAB can auto-configure Tailscale Serve (tailnet-only) or Funnel (public) while the Gateway stays bound to loopback. Configure gateway.tailscale.mode:
off: no Tailscale automation (default).serve: tailnet-only HTTPS viatailscale serve(uses Tailscale identity headers by default).funnel: public HTTPS viatailscale funnel(requires shared password auth).
Notes:
gateway.bindmust stayloopbackwhen Serve/Funnel is enabled (OpenCRAB enforces this).- Serve can be forced to require a password by setting
gateway.auth.mode: "password"orgateway.auth.allowTailscale: false. - Funnel refuses to start unless
gateway.auth.mode: "password"is set. - Optional:
gateway.tailscale.resetOnExitto undo Serve/Funnel on shutdown.
Details: Tailscale guide · Web surfaces
It's perfectly fine to run the Gateway on a small Linux instance. Clients (macOS app, CLI, WebChat) can connect over Tailscale Serve/Funnel or SSH tunnels, and you can still pair device nodes (macOS/iOS/Android) to execute device‑local actions when needed.
- Gateway host runs the exec tool and channel connections by default.
- Device nodes run device‑local actions (
system.run, camera, screen recording, notifications) vianode.invoke. In short: exec runs where the Gateway lives; device actions run where the device lives.
Details: Remote access · Nodes · Security
The macOS app can run in node mode and advertises its capabilities + permission map over the Gateway WebSocket (node.list / node.describe). Clients can then execute local actions via node.invoke:
system.runruns a local command and returns stdout/stderr/exit code; setneedsScreenRecording: trueto require screen-recording permission (otherwise you'll getPERMISSION_MISSING).system.notifyposts a user notification and fails if notifications are denied.canvas.*,camera.*,screen.record, andlocation.getare also routed vianode.invokeand follow TCC permission status.
Elevated bash (host permissions) is separate from macOS TCC:
- Use
/elevated on|offto toggle per‑session elevated access when enabled + allowlisted. - Gateway persists the per‑session toggle via
sessions.patch(WS method) alongsidethinkingLevel,verboseLevel,model,sendPolicy, andgroupActivation.
Details: Nodes · macOS app · Gateway protocol
- Use these to coordinate work across sessions without jumping between chat surfaces.
sessions_list— discover active sessions (agents) and their metadata.sessions_history— fetch transcript logs for a session.sessions_send— message another session; optional reply‑back ping‑pong + announce step (REPLY_SKIP,ANNOUNCE_SKIP).
Details: Session tools
Send these in WhatsApp/Telegram/Slack/Google Chat/Microsoft Teams/WebChat (group commands are owner-only):
/status— compact session status (model + tokens, cost when available)/newor/reset— reset the session/compact— compact session context (summary)/think <level>— off|minimal|low|medium|high|xhigh (GPT-5.2 + Codex models only)/verbose on|off/usage off|tokens|full— per-response usage footer/restart— restart the gateway (owner-only in groups)/activation mention|always— group activation toggle (groups only)
The Gateway alone delivers a great experience. All apps are optional and add extra features.
If you plan to build/run companion apps, follow the platform runbooks below.
- Menu bar control for the Gateway and health.
- Voice Wake + push-to-talk overlay.
- WebChat + debug tools.
- Remote gateway control over SSH.
Note: signed builds required for macOS permissions to stick across rebuilds (see docs/mac/permissions.md).
- Pairs as a node via the Bridge.
- Voice trigger forwarding + Canvas surface.
- Controlled via
opencrab nodes ….
Runbook: iOS connect.
- Pairs via the same Bridge + pairing flow as iOS.
- Exposes Canvas, Camera, and Screen capture commands.
- Runbook: Android connect.
- Workspace root:
~/.opencrab/workspace(configurable viaagents.defaults.workspace). - Injected prompt files:
AGENTS.md,SOUL.md,TOOLS.md. - Skills:
~/.opencrab/workspace/skills/<skill>/SKILL.md.
Minimal ~/.opencrab/opencrab.json (model + defaults):
{
agent: {
model: "anthropic/claude-opus-4-5",
},
}Full configuration reference (all keys + examples).
- Default: tools run on the host for the main session, so the agent has full access when it's just you.
- Group/channel safety: set
agents.defaults.sandbox.mode: "non-main"to run non‑main sessions (groups/channels) inside per‑session Docker sandboxes; bash then runs in Docker for those sessions. - Sandbox defaults: allowlist
bash,process,read,write,edit,sessions_list,sessions_history,sessions_send,sessions_spawn; denylistbrowser,canvas,nodes,cron,discord,gateway.
Details: Security guide · Docker + sandboxing · Sandbox config
- Link the device:
pnpm opencrab channels login(stores creds in~/.opencrab/credentials). - Allowlist who can talk to the assistant via
channels.whatsapp.allowFrom. - If
channels.whatsapp.groupsis set, it becomes a group allowlist; include"*"to allow all.
- Set
TELEGRAM_BOT_TOKENorchannels.telegram.botToken(env wins). - Optional: set
channels.telegram.groups(withchannels.telegram.groups."*".requireMention); when set, it is a group allowlist (include"*"to allow all). Alsochannels.telegram.allowFromorchannels.telegram.webhookUrl+channels.telegram.webhookSecretas needed.
{
channels: {
telegram: {
botToken: "123456:ABCDEF",
},
},
}- Set
SLACK_BOT_TOKEN+SLACK_APP_TOKEN(orchannels.slack.botToken+channels.slack.appToken).
- Set
DISCORD_BOT_TOKENorchannels.discord.token(env wins). - Optional: set
commands.native,commands.text, orcommands.useAccessGroups, pluschannels.discord.dm.allowFrom,channels.discord.guilds, orchannels.discord.mediaMaxMbas needed.
{
channels: {
discord: {
token: "1234abcd",
},
},
}- Requires
signal-cliand achannels.signalconfig section.
- macOS only; Messages must be signed in.
- If
channels.imessage.groupsis set, it becomes a group allowlist; include"*"to allow all.
- Configure a Teams app + Bot Framework, then add a
msteamsconfig section. - Allowlist who can talk via
msteams.allowFrom; group access viamsteams.groupAllowFromormsteams.groupPolicy: "open".
- Uses the Gateway WebSocket; no separate WebChat port/config.
Browser control (optional):
{
browser: {
enabled: true,
color: "#FF4500",
},
}Use these when you're past the onboarding flow and want the deeper reference.
- Start with the docs index for navigation and "what's where."
- Read the architecture overview for the gateway + protocol model.
- Use the full configuration reference when you need every key and example.
- Run the Gateway by the book with the operational runbook.
- Learn how the Control UI/Web surfaces work and how to expose them safely.
- Understand remote access over SSH tunnels or tailnets.
- Follow the onboarding wizard flow for a guided setup.
- Wire external triggers via the webhook surface.
- Set up Gmail Pub/Sub triggers.
- Learn the macOS menu bar companion details.
- Platform guides: Windows (WSL2), Linux, macOS, iOS, Android
- Debug common failures with the troubleshooting guide.
- Review security guidance before exposing anything.
- Skills config
- Default AGENTS
- Templates: AGENTS
- Templates: BOOTSTRAP
- Templates: IDENTITY
- Templates: SOUL
- Templates: TOOLS
- Templates: USER
OpenCRAB is a personal AI assistant. 🦀 Product owned by illusionart AI Private Limited. Built by Shivam Chopra.
See CONTRIBUTING.md for guidelines and how to submit PRs. AI/vibe-coded PRs welcome! 🤖
MIT License - see LICENSE for details.