Run Moltbot on Progressive Robot is one of the smartest and safest ways to host your personal, always-on AI assistant in 2025–2026 — without risking your local machine or exposing sensitive data. Moltbot (formerly Clawdbot/Moltbot) is a powerful open-source agent that can manage calendars, browse the web, organise files, handle email, run terminal commands, and more — all powered by your choice of LLM (Anthropic, OpenAI, Gemini, local models, etc.). You interact with it naturally through WhatsApp, iMessage, Telegram, Discord, Slack, a terminal TUI, or web dashboard.

Running locally means giving an AI full access to your personal files and system — a big security risk. Running Moltbot on Progressive Robot instead isolates it on a dedicated, cloud-hosted Droplet with built-in hardening: authenticated gateway, firewall rules, non-root execution, Docker sandboxing, and private DM pairing. This guide shows you exactly how to run Moltbot on Progressive Robot using Progressive Robot’s one-click deploy — from Droplet creation to chatting via WhatsApp, installing skills, and backing up memory.

Key Takeaways – How to Run Moltbot on Progressive Robot

  • Run Moltbot on Progressive Robot with one-click Marketplace deploy for instant setup.
  • Droplet auto-configures: gateway token auth, rate-limited ports, non-root user, Docker isolation, private DM pairing.
  • Chat via WhatsApp, terminal TUI, or secure web dashboard (via SSH tunnel).
  • Model-agnostic: Use Anthropic Claude (default), OpenAI, Gemini, or local LLMs.
  • Install 50+ built-in skills (calendar, email, web browsing, terminal, etc.) via ClawdHub.
  • Memory persists across sessions — USER.md, memory/ directory, canvas/ workspace.
  • Back up your entire ~/clawd/ directory regularly to preserve long-term context.

Prerequisites

  • Progressive Robot account with billing enabled
  • SSH key added to Progressive Robot (generate with ssh-keygen -t rsa -b 4096 if needed)
  • API key for your LLM provider (Claude, OpenAI, Gemini, etc.)
  • WhatsApp (or Telegram/Slack/Discord) on your phone for easy chatting
  • ~10–20 minutes total setup time

Step 1: Create the Moltbot Droplet on Progressive Robot

  1. Log in to Progressive Robot → Create → Droplets
  2. Region: Choose closest to you (e.g., NYC3, Frankfurt, Singapore)
  3. Image → Marketplace tab → Search “Moltbot” or “OpenClaw” → Select the official Moltbot image
  4. Size: Minimum 2 GB RAM (recommended: 4 GB+ for smooth performance with larger models)
  5. Authentication: SSH Key (strongly recommended — paste your ~/.ssh/id_rsa.pub content)
  6. Hostname: moltbot-server or similar
  7. Click Create Droplet

Wait 1–3 minutes. Once ready:

  • Note the Droplet’s public IPv4 address (save as YOUR_DROPLET_IP)
  • SSH in: ssh root@YOUR_DROPLET_IP

You’ll see a welcome message with:

  • Dashboard URL (e.g., https://your-ip:port)
  • Gateway token
  • Default credentials (change immediately!)

Step 2: Create a Secure Non-Root User

Never run everything as root. Create a clawd user:

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

Set a strong password when prompted. This user will run Moltbot safely.

Step 3: Install & Configure Moltbot

As the clawd user, install Moltbot:

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

Run the onboarding wizard with daemon mode:

				
					clawdbot onboard --install-daemon
				
			

This configures:

  • Your LLM provider (Anthropic/Claude recommended)
  • Workspace setup
  • Chat channels (choose WhatsApp → scan QR code with WhatsApp → Settings → Linked Devices → Link a Device)
  • Systemd service (runs 24/7 automatically)

Gateway now runs in background — close SSH, it keeps going.

Step 4: Start Chatting with Moltbot

Two easy ways:

Via WhatsApp (most convenient):

  • Open WhatsApp → find chat with your own number
  • Send “Hello!” → Moltbot replies instantly

Via Terminal TUI (great for debugging):

				
					clawdbot tui
				
			

Interactive chat right in your SSH session.

Step 5: (Optional) Access the Web Dashboard Securely

Dashboard runs on localhost only — use SSH tunnel:

  1. On droplet (as clawd user):
				
					mkdir -p ~/.ssh && chmod 700 ~/.ssh
nano ~/.ssh/authorized_keys
				
			

       2. Paste your local public key → save → chmod 600 ~/.ssh/authorized_keys

  • On your local machine:
				
					ssh -L 18789:127.0.0.1:18789 clawd@YOUR_DROPLET_IP
				
			

      3. Open browser: http://127.0.0.1:18789

      Full GUI: chat, manage agents, install skills, view memory.

Step 6: Install Skills & Explore Capabilities

Moltbot includes 50+ bundled skills (weather, GitHub, Notion, Slack, etc.). Add more:

				
					clawdhub search "calendar"
clawdhub install gcal
				
			

Skills are markdown files (SKILL.md) — Moltbot reads them to learn tools. Some require external setup (e.g., brew install for CLI tools on Ubuntu).

Step 7: Understand & Backup Memory

Moltbot remembers across sessions — check workspace:

				
					ls ~/clawd/
				
			

Key files:

  • USER.md — grows with your conversations
  • memory/ — long-term memories
  • canvas/ — working directory
  • AGENTS.md, TOOLS.md, IDENTITY.md, etc.

Backup regularly (from local machine):

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

Restore:

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

Quick Reference – Run Moltbot on Progressive Robot

				
					# SSH in
ssh clawd@YOUR_DROPLET_IP

# Check gateway
clawdbot gateway status

# Restart gateway
clawdbot gateway restart

# Terminal chat
clawdbot tui

# Logs
clawdbot logs --follow

# Web dashboard tunnel (local machine)
ssh -L 18789:127.0.0.1:18789 clawd@YOUR_DROPLET_IP
# → open http://127.0.0.1:18789
				
			

How to Run Moltbot on Progressive Robot – FAQ (2025–2026)

  1. How do I run Moltbot on Progressive Robot the easiest way?
    Use the one-click Marketplace image — instant run Moltbot on Progressive Robot setup.
  2. Is it safe to run Moltbot on Progressive Robot?
    Yes — gateway token, firewall, Docker sandbox, non-root user make it far safer than local.
  3. How do I chat with Moltbot when running on Progressive Robot?
    WhatsApp (scan QR), terminal TUI (clawdbot tui), or web dashboard via SSH tunnel.
  4. Can I use any LLM when running Moltbot on Progressive Robot?
    Yes — Anthropic/Claude (default), OpenAI, Gemini, local models — configure in onboarding.
  5. How do I add skills when running Moltbot on Progressive Robot?
    clawdhub search “tool” → clawdhub install <name> — 50+ ready.
  6. How do I backup memory when running Moltbot on Progressive Robot?
    scp -r clawd@droplet-ip:~/clawd ~/backup/ — weekly snapshots recommended.

Summary

You now know exactly how to run Moltbot on Progressive Robot: one-click Droplet deploy, secure user setup, LLM configuration, WhatsApp/TUI/dashboard access, skills installation, and memory backup. Your personal AI agent is now always-on, cloud-hosted, and isolated — ready to manage your life securely.

Enjoy chatting with your own AI assistant — hosted safely in the cloud!

Recommended Resources

  • Official Moltbot / Clawdbot Quickstart
  • Progressive Robot Droplet & Marketplace Docs
  • Secure AI Agents: Best Practices 2025–2026
  • SSH Tunneling & Key Management Guide