Moltbot Setup Guide

Welcome to Moltbot! This guide will help you get up and running with your AI assistant.

Moltbot Quick Start

Key locations (keep your customizations here, safe from updates):

PathPurpose
~/.clawdbot/moltbot.jsonYour personal configuration
~/clawdSkills, prompts, memories (make it a private git repo)

Two workflows:

WorkflowDescription
StableInstall the macOS app, let it manage the Gateway
Bleeding edgeRun Gateway yourself via pnpm gateway:watch, attach macOS app in Local mode

Prerequisites

Before you begin, ensure you have:

Most users should start with the macOS App workflow - it's the easiest way to get started.

Choose Your Moltbot Installation

Moltbot Configuration & Reference

Moltbot Customization Strategy

To ensure updates don't break your setup, keep all customizations outside the moltbot repo:

Config File

Your personal configuration lives at ~/.clawdbot/moltbot.json:

{ "workspace": "~/clawd", "defaultModel": "claude-sonnet-4-20250514", "channels": { "telegram": { "enabled": true } } }

Workspace Directory

Your skills, prompts, and memories live in ~/clawd:

~/clawd/ ├── skills/ # Custom skills ├── prompts/ # Custom prompts ├── memories/ # Conversation memories └── .git/ # Recommended: make it a private repo
Bootstrap your setup with a single command:
moltbot setup
This creates the config file and workspace directory for you.

Moltbot Health Check

After setup, verify everything is working:

moltbot health

You should see all systems reporting green.

Moltbot Setup Guide | AI Chatbot Installation