Report this

What is the reason for this report?

Moltbot Quickstart Guide

Published on January 27, 2026
Amit Jotwani

By Amit Jotwani

Developer Educator

Moltbot Quickstart Guide

I’d been wanting to try running Moltbot on DigitalOcean but hadn’t gotten around to it. Then Nader’s tweet and excellent gist showed up over the weekend, and of course I had to give it a shot. This guide is everything I learned along the way.

Moltbot (formerly known as Clawdbot and created by Peter Steinberger) is a personal, always-running assistant powered by your LLM of choice - Anthropic, OpenAI, or local models. As “the AI that actually does things”, you can host it on your own machine, and it can execute a variety of tasks, such as managing your calendar, browsing the web, organizing your files, managing your emails, and running terminal commands. You interact with it through standard chat apps that you already use - WhatsApp, iMessage, Telegram - instead of a new app or UI. It keeps state, supports skills, and gets more useful as you wire more things into it.

Moltbot WhatsApp conversation

Why Run It in the Cloud?

Most people run Moltbot locally. Some on spare machines at home, others on a Mac mini bought specifically for this (I’m fairly sure Apple has noticed). That works, but I didn’t want another machine running 24/7 on my desk. What I wanted instead was an always-on agent that lived in the cloud, and I wanted to chat with it through WhatsApp. Turns out, Moltbot runs just fine on a DigitalOcean droplet. Moltbot Dashboard

However you choose to run it, giving a third party agent framework access to your local machine introduces a lot of security risks, so use Moltbot at your own risk. It is highly recommended to deploy it on an isolated environment that does not contain sensitive sensitive or private data.

What You Need

A DigitalOcean account, an API key for your LLM of choice (Claude, OpenAI, Gemini, etc.), and an SSH key on your local machine (generate one with ssh-keygen -t rsa -b 4096 if needed). How it works: The droplet runs Moltbot Gateway 24/7. You chat with it through WhatsApp, the terminal TUI, or a web dashboard. The gateway connects to external services through skills. Moltbot architecture diagram`

Setting Up the Droplet

Step 1: Create the Droplet

  1. Log in and create a new Droplet
  2. Choose Ubuntu 24.04 LTS, a region close to you, and a plan with 2GB RAM (recommended)
  3. Add your SSH key (paste your public key from cat ~/.ssh/id_rsa.pub)
  4. Click “Create Droplet” Wait about a minute. You’ll get an IP address - save it as YOUR_DROPLET_IP. Droplet creation

Step 2: Connect to the Droplet

On your local machine:

ssh root@YOUR_DROPLET_IP

You’re now inside your cloud server.

Step 3: Set Up a User

For security, don’t run everything as root. Create a clawd user:

adduser clawd && usermod -aG sudo clawd && su - clawd

This creates the user, gives it sudo permissions, and switches to it. Set a password when prompted.

Step 4: Install Moltbot

curl -fsSL https://clawd.bot/install.sh | bash
exec bash

The installer downloads everything and sets it up. The exec bash command restarts your shell to load the configuration.

Step 5: Configure and Start Moltbot

Run the onboarding wizard with the daemon flag:

clawdbot onboard --install-daemon

This does everything in one shot: configures your LLM provider (Anthropic, OpenAI, etc.), sets up the workspace, links your chat channels, and installs a systemd service so the gateway runs automatically. (You can always re-run clawdbot onboard later to change settings.) I chose WhatsApp - you’ll see a QR code, scan it with WhatsApp (Settings → Linked Devices → Link a Device) to connect. Moltbot onboarding wizard with WhatsApp QR code Once the wizard completes, the gateway is running. You’re ready to chat. For more details, see the official getting started guide.

Start Chatting

You now have two ways to talk to Moltbot:

Chat via WhatsApp

Open WhatsApp, find the chat with your own number, and send “Hello!” - Moltbot receives it, processes it with your LLM, and responds. Important concept: You’re not messaging other people. You’re chatting with Moltbot itself through WhatsApp. This same pattern works with iMessage, Telegram, and other channels.

Moltbot WhatsApp conversation

Chat via Terminal

SSH into your droplet and run:

clawdbot tui

This opens an interactive TUI right in your terminal. This is actually my default now. Moltbot TUI chat session

Managing the Gateway

Since you used --install-daemon, the gateway runs as a systemd service. Manage it with:

clawdbot gateway status # check status
clawdbot gateway restart # restart
clawdbot gateway stop # stop
clawdbot gateway start # start

View logs with:

clawdbot logs --follow

The gateway isn’t tied to your terminal session. Close SSH, disconnect - it keeps running on the droplet.

Access the Dashboard (Optional)

You can also access Moltbot through a web dashboard. This requires an SSH tunnel since the dashboard only binds to localhost.

Set up SSH access for the clawd user:

# On the droplet (as clawd user)
mkdir -p ~/.ssh && chmod 700 ~/.ssh
nano ~/.ssh/authorized_keys
# Paste your public key, save, then:
chmod 600 ~/.ssh/authorized_keys

Create an SSH tunnel from your local machine:

ssh -L 18789:127.0.0.1:18789 clawd@YOUR_DROPLET_IP

Open in browser:

http://127.0.0.1:18789

Chatting with Clawdbot from the dashboard

Installing Skills

Moltbot comes with 50+ bundled skills (weather, github, notion, slack, etc.) - they’re loaded automatically. ClawdHub is the skill registry. To add more skills:

clawdhub search "what you need"
clawdhub install <skill-name>

Skills are just instruction files (SKILL.md) - they tell Moltbot how to use a tool. Here’s what the wacli skill looks like: wacli SKILL.md file showing instructions for WhatsApp CLI The actual tool (CLI, API, etc.) needs to be installed separately. Moltbot will tell you if something’s missing when you try to use it.

Note on dependencies: Some skills need tools installed via brew. Ubuntu doesn’t have Homebrew by default - install it first if needed:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"' >> ~/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"

Understanding the Memory System

After chatting with Moltbot through WhatsApp for a bit, I was curious about something: How does it remember context across conversations? I looked in the workspace directory:

ls ~/clawd/

I saw several markdown files:

AGENTS.md - Available agents
BOOTSTRAP.md - Initial system setup
HEARTBEAT.md - System health
IDENTITY.md - Moltbot's identity
SOUL.md - Personality traits
TOOLS.md - Available tools
USER.md - What it knows about you
canvas/ - Working directory
memory/ - Persistent memory

This was the most fascinating part: Unlike stateless AI, Moltbot actually remembers things. Every conversation you have - whether through WhatsApp, the web dashboard, iMessage, or Telegram - builds context. The USER.md file grows as you interact. The memory/ directory stores long-term memories. This is why you can have a conversation on WhatsApp, then later continue it through the web dashboard - Clawdbot remembers. You can edit these files to change how Moltbot behaves, add context about yourself, your projects, etc. These files live on the droplet - if you delete the droplet, you lose this memory. Back it up!

Backing Up Your Memory

From your local machine:

scp -r clawd@YOUR_DROPLET_IP:~/clawd ~/clawdbot-backup-$(date +%Y%m%d)

This downloads the entire clawd directory to your local machine with a dated folder name.

Restore later:

scp -r ~/clawdbot-backup-20260126/clawd clawd@YOUR_DROPLET_IP:~/

Set up a weekly backup cron job, or use DigitalOcean Snapshots.

Quick Reference

SSH into droplet:

ssh clawd@YOUR_DROPLET_IP

Start chatting:

clawdbot tui

Check gateway status:

clawdbot gateway status

Access dashboard (optional):

# From local machine - create tunnel first
ssh -L 18789:127.0.0.1:18789 clawd@YOUR_DROPLET_IP
# Then open http://127.0.0.1:18789

I’m going to keep playing with this - adding more skills, wiring up more tools, and seeing how useful it becomes over time.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author

Amit Jotwani
Amit Jotwani
Author
Developer Educator
See author profile

Amit is a Developer Advocate at DigitalOcean 🐳, where he helps developers build and ship better apps on the cloud. Compulsive Seinfeld quoter. LEGO nerd. 🧱 AMA.

Category:
Tags:

Still looking for an answer?

Was this helpful?


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Creative CommonsThis work is licensed under a Creative Commons Attribution-NonCommercial- ShareAlike 4.0 International License.
Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.