diff --git a/blueprints/ackee/instructions.md b/blueprints/ackee/instructions.md index 318691780..b107d3602 100644 --- a/blueprints/ackee/instructions.md +++ b/blueprints/ackee/instructions.md @@ -1,4 +1,4 @@ -## TODO +## Instructions We don't have nothing to show here.... diff --git a/blueprints/moltbot/docker-compose.yml b/blueprints/moltbot/docker-compose.yml new file mode 100644 index 000000000..e0014a7a9 --- /dev/null +++ b/blueprints/moltbot/docker-compose.yml @@ -0,0 +1,35 @@ +services: + moltbot-gateway: + image: ghcr.io/moltbot/clawdbot:2026.1.24-1 + environment: + HOME: /home/node + TERM: xterm-256color + CLAWDBOT_GATEWAY_TOKEN: ${CLAWDBOT_GATEWAY_TOKEN} + CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY} + CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY} + CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE} + CLAWDBOT_GATEWAY_URL: ws://0.0.0.0:18789 + OPENROUTER_API_KEY: ${OPENROUTER_API_KEY} + volumes: + - moltbot-config:/home/node/.clawdbot + - moltbot-workspace:/home/node/clawd + ports: + - "18789" + - "18790" + init: true + restart: unless-stopped + command: + [ + "node", + "dist/index.js", + "gateway", + "--bind", + "auto", + "--port", + "18789", + "--allow-unconfigured" + ] + +volumes: + moltbot-config: + moltbot-workspace: \ No newline at end of file diff --git a/blueprints/moltbot/moltbot.svg b/blueprints/moltbot/moltbot.svg new file mode 100644 index 000000000..7bfb7fc4d --- /dev/null +++ b/blueprints/moltbot/moltbot.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blueprints/moltbot/template.toml b/blueprints/moltbot/template.toml new file mode 100644 index 000000000..06072a680 --- /dev/null +++ b/blueprints/moltbot/template.toml @@ -0,0 +1,18 @@ +[variables] +gateway_token = "${password:32}" + + +[config] +[[config.domains]] +serviceName = "moltbot-gateway" +port = 18789 +host = "${domain}" + +[config.env] +CLAWDBOT_GATEWAY_TOKEN = "${gateway_token}" +CLAWDBOT_GATEWAY_PORT = 18789 +CLAWDBOT_BRIDGE_PORT = 18790 +CLAWDBOT_GATEWAY_BIND="lan" +CLAWDBOT_PLUGINS="discord,memory-core" +# Get here https://openrouter.ai/ +OPENROUTER_API_KEY="YOUR-API-KEY" diff --git a/meta.json b/meta.json index 7e59e5a01..12173567a 100644 --- a/meta.json +++ b/meta.json @@ -4026,6 +4026,27 @@ "scheduling" ] }, + { + "id": "moltbot", + "name": "Moltbot", + "version": "2026.1.25", + "description": "WhatsApp gateway CLI with Pi RPC agent - self-hosted AI-powered messaging platform", + "logo": "moltbot.svg", + "links": { + "github": "https://github.com/moltbot/moltbot", + "website": "https://molt.bot", + "docs": "https://docs.molt.bot" + }, + "tags": [ + "whatsapp", + "ai", + "messaging", + "chatbot", + "gateway", + "self-hosted", + "automation" + ] + }, { "id": "morphos", "name": "Morphos",