Skip to content

Commit 2d7336b

Browse files
feat: add Moltbot template
Add template for Moltbot - a WhatsApp gateway CLI with Pi RPC agent. - Uses official ghcr.io/moltbot/moltbot:latest image - Exposes ports 18789 (gateway) and 18790 (bridge) - Includes persistent volumes for config and workspace - Auto-generates gateway token - Optional Claude AI integration support Co-Authored-By: Claude <[email protected]>
1 parent 1ead7d0 commit 2d7336b

File tree

4 files changed

+123
-0
lines changed

4 files changed

+123
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
services:
2+
moltbot-gateway:
3+
image: ghcr.io/moltbot/moltbot:latest
4+
environment:
5+
HOME: /home/node
6+
TERM: xterm-256color
7+
CLAWDBOT_GATEWAY_TOKEN: ${CLAWDBOT_GATEWAY_TOKEN}
8+
CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY}
9+
CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY}
10+
CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE}
11+
volumes:
12+
- moltbot-config:/home/node/.clawdbot
13+
- moltbot-workspace:/home/node/clawd
14+
ports:
15+
- 18789
16+
- 18790
17+
restart: unless-stopped
18+
command:
19+
[
20+
"node",
21+
"dist/index.js",
22+
"gateway-daemon",
23+
"--bind",
24+
"lan",
25+
"--port",
26+
"18789"
27+
]
28+
29+
volumes:
30+
moltbot-config: {}
31+
moltbot-workspace: {}

blueprints/moltbot/moltbot.svg

Lines changed: 60 additions & 0 deletions
Loading

blueprints/moltbot/template.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[variables]
2+
gateway_token = "${password:32}"
3+
4+
[config]
5+
[[config.domains]]
6+
serviceName = "moltbot-gateway"
7+
port = 18789
8+
host = "${domain}"
9+
10+
[config.env]
11+
CLAWDBOT_GATEWAY_TOKEN = "${gateway_token}"

meta.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6345,5 +6345,26 @@
63456345
"saml",
63466346
"multi-tenant"
63476347
]
6348+
},
6349+
{
6350+
"id": "moltbot",
6351+
"name": "Moltbot",
6352+
"version": "2026.1.25",
6353+
"description": "WhatsApp gateway CLI with Pi RPC agent - self-hosted AI-powered messaging platform",
6354+
"logo": "moltbot.svg",
6355+
"links": {
6356+
"github": "https://github.com/moltbot/moltbot",
6357+
"website": "https://molt.bot",
6358+
"docs": "https://docs.molt.bot"
6359+
},
6360+
"tags": [
6361+
"whatsapp",
6362+
"ai",
6363+
"messaging",
6364+
"chatbot",
6365+
"gateway",
6366+
"self-hosted",
6367+
"automation"
6368+
]
63486369
}
63496370
]

0 commit comments

Comments
 (0)