What is Moltbot (Clawdbot)? Complete Guide

Hey fellow AI tinkerers — if you're testing tools inside real workflows instead of just watching demos, you probably saw the Moltbot chaos unfold yesterday.

I'm Hanks. I spend my time running AI tools through actual work to see what survives past the hype. When Clawdbot (now Moltbot) hit 60,000+ GitHub stars in less than a month, my brain didn't go "wow, impressive numbers." It went: "Can this thing handle real tasks, or does it break the moment I push it past demo mode?"

So I spent the last few days stress-testing it inside daily workflows. Here's what actually happened — including the rebrand mess, the security concerns nobody's talking about, and whether this thing belongs in your stack or stays on GitHub.


What is Moltbot

Moltbot is a self-hosted AI assistant created by Peter Steinberger, the Austrian developer who founded PSPDFKit. Think of it as "Claude with hands" — an AI that doesn't just chat, but actually does things on your behalf.

The project launched in late 2025 as Clawdbot. It hit 9,000 GitHub stars in the first 24 hours and crossed 60,000+ stars within weeks, making it one of the fastest-growing open-source projects in GitHub history.

Then came January 27, 2026. Anthropic issued a trademark request forcing a rebrand because the name "Clawd" was too similar to "Claude". The project became Moltbot (the name references how lobsters molt to grow — fitting for a project that was shedding its old identity).

But here's where it gets messy. During the rename, crypto scammers snatched both the GitHub organization and X/Twitter handles in approximately 10 seconds. They launched fake tokens, promoted scams, and temporarily hijacked the project's identity.

The developer is still working with GitHub to recover accounts. Despite the chaos, the actual software remains solid — same features, same capabilities, just a different name.

Key Features Overview

Here's what Moltbot actually does:

Feature
What It Means
Persistent Memory
Remembers context across conversations — doesn't reset like ChatGPT
Full System Access
Can execute shell commands, browse files, control your computer
Multi-Platform
Works with WhatsApp, Telegram, Slack, iMessage, Signal, Discord
50+ Integrations
Connects to email, calendars, smart home, and hundreds of online services
Proactive Notifications
Can initiate conversations and send you reminders
Self-Hosted
Runs on your own hardware — Mac, Linux, Windows (via WSL2), even Raspberry Pi

Andrej Karpathy praised it. David Sacks tweeted about it. MacStories called it "the future of personal AI assistants".


How It Differs from ChatGPT

Let me break down the real differences — not the marketing talk, but what actually matters in daily use.

Architecture Comparison

// ChatGPT: Cloud-based, stateless
User → OpenAI Servers → Response
// Each session starts fresh
// Moltbot: Self-hosted, persistent
User → Your Local Gateway → AI Model API → Tools/Integrations
// Maintains context, executes actions

ChatGPT:

  • Cloud-based service
  • Fresh session each time — no memory of previous conversations beyond the current chat
  • Can't execute actions on your computer
  • Limited to web interface or mobile app
  • Subscription required for advanced features

Moltbot:

  • Self-hosted on your own hardware
  • Persistent memory across all conversations and can perform actions unprompted
  • Full system access (read files, run commands, control browser)
  • Multi-channel — accessible via WhatsApp, Telegram, Slack, iMessage, Signal, Discord
  • Free and open-source (you pay for AI model API separately)

The biggest difference? ChatGPT tells you what to do. Moltbot can actually do it.

Example: If you ask ChatGPT "Check my email and summarize urgent messages," it'll give you instructions on how to do that. Moltbot will access your email, read it, and give you the summary. That's the gap.

The Clawdbot to Moltbot Rebrand

On January 27, 2026, Anthropic asked the project to change its name due to trademark concerns with "Clawd" being too similar to "Claude".

Here's what changed:

Old Name
New Name
Clawdbot
Moltbot
Clawd (assistant)
Molty
@clawdbot
@moltbot

The rebrand itself makes sense — lobsters molt to grow, and the project was evolving. But the execution turned into a security incident.

During the GitHub organization rename, crypto scammers hijacked both the old GitHub account and X/Twitter handle within 10 seconds. They used these accounts to:

  • Promote fake $CLAWD tokens on Solana
  • Launch a token that briefly hit $16 million market cap before crashing 90% when the founder publicly denied involvement
  • Impersonate the official project to deceive investors

The founder is working with GitHub to recover the accounts. All official links now point to:

The software itself wasn't affected — only the branding and social accounts.


How Moltbot Works

The technical architecture is actually clever. Let me walk through how information flows when you send a message.

System Architecture

Moltbot uses a Gateway daemon (launchd/systemd user service) that stays running and acts as the control plane. Think of it as mission control for your AI assistant.

Your Message (WhatsApp/Telegram/etc)
    ↓
Moltbot Gateway (localhost:18789)
    ↓
AI Model API (Claude/OpenAI/etc)
    ↓
Tools & Integrations
    ↓
Action Execution
    ↓
Response back to you

Here's a concrete example:

You: "Good morning. Any important emails today?"

What happens:

  1. Message arrives via Telegram to Gateway
  2. Gateway passes context + message to Claude API
  3. Claude generates tool call: check_email(filter="important")
  4. Gateway executes email skill integration
  5. Returns email summaries to Claude
  6. Claude formats response
  7. Gateway sends back to Telegram

All of this happens in seconds. The assistant can also initiate interactions proactively — like sending morning briefings or reminders when certain events occur.

Installation Process

Runtime requires Node.js version 22 or higher. Basic setup:

# Install globally
npm install -g moltbot@latest
# or: pnpm add -g moltbot@latest
# Run onboarding wizard
moltbot onboard --install-daemon

The wizard handles:

  • Gateway daemon installation (runs automatically on startup)
  • API key configuration (for AI models)
  • Channel authentication (WhatsApp, Telegram, etc)
  • Initial skill setup

The developer strongly recommends using Anthropic Pro/Max (100/200 tokens) with Opus 4.5 for long-context strength and better prompt-injection resistance.

For detailed setup instructions, check the official getting started guide.


Who Should Use It

This isn't for everyone. Let me be clear about who this actually serves.

Ideal Users

Developers & Tech Enthusiasts: If you're comfortable with command-line tools, Node.js environments, and troubleshooting configuration issues, Moltbot gives you full control. You can customize everything, build custom skills, and integrate with any API.

Privacy-Focused Users: Everything runs on your hardware. Your conversations, files, and API keys never leave your system (except when calling external AI model APIs). Unlike ChatGPT sessions, Moltbot is self-hosted, providing full control over data.

Power Users Who Need Integration: If you're running workflows across multiple platforms — email, calendars, project management, smart home — Moltbot can tie them together. It's not just reading your data; it's taking action.

Not Recommended For

Non-Technical Users: If terms like "daemon," "localhost," or "API keys" make you uncomfortable, this will frustrate you. There's no one-click install. Setup requires technical knowledge.

Security-Cautious Organizations: Security researchers found hundreds of instances exposed to the web with weak or no authentication, potentially exposing API keys, conversation histories, and system access. This is a powerful tool, but misconfiguration can create serious risks.

Users Who Want "Just Works" Experience: ChatGPT, Claude, and similar services are polished consumer products. Moltbot is an open-source project. Expect rough edges, breaking changes, and the need to read documentation.


Pros and Cons

Let me give you the honest breakdown after watching this project evolve.

Advantages

Benefit
Real Impact
Full Data Control
All conversations stay on your hardware
Extensive Customization
Growing ecosystem of community-built skills for everything from Azure management to quit-smoking trackers
Multi-Platform
One assistant across all your messaging apps
Open Source
MIT license — audit code, contribute, fork if needed
Active Development
8,900+ Discord members and hundreds of contributors

The killer feature? It lives where you already communicate. No separate app, no context switching.

Disadvantages

Challenge
Reality Check
Technical Complexity
Requires Node.js skills, terminal comfort, troubleshooting ability
Security Risks
Eight instances found with no authentication, exposing full access to commands and configuration
API Costs
Self-hosted doesn't mean free — you pay for Claude/OpenAI API usage
Brand Chaos
Recent rebrand created confusion, scams, account hijacking
Breaking Changes
Open-source project still evolving — updates may break your setup

The security issue is real. Researchers found control panels that could let attackers access private messages, API keys, and execute commands across services like Telegram, Slack, and Discord.

If you expose the Gateway to the internet, you must:

  • Enable password authentication
  • Use Tailscale Serve/Funnel properly
  • Never disable security features
  • Regularly audit exposed ports

Check the official security guidance before deploying.


Looking Ahead

Here's what I think matters moving forward.

The rebrand mess highlights a bigger issue: Anthropic's trademark enforcement against a 60,000+ star open-source project that was literally driving Claude API subscriptions feels like a strategic misstep. Many developers see this as "customer hostile" behavior.

But the project itself? It's solid engineering. Despite the chaos, Moltbot represents the future of personal AI assistants — local, powerful, and under user control.

The security concerns are valid. Before you deploy this, understand the risks. Read the documentation. Don't expose your Gateway to the internet without proper authentication.

If you're technical, privacy-conscious, and want an AI assistant that actually does things instead of just suggesting them, Moltbot is worth testing. Just go in with realistic expectations about setup complexity and ongoing maintenance.

At Macaron, we built around the friction Moltbot exposes: AI that executes tasks without turning you into a systems administrator—describe what you need in one sentence, and it creates the tool. Try running one of your real weekly tasks through Macaron and judge the results yourself. Free to start, reversible anytime.

Hey, I’m Hanks — a workflow tinkerer and AI tool obsessive with over a decade of hands-on experience in automation, SaaS, and content creation. I spend my days testing tools so you don’t have to, breaking down complex processes into simple, actionable steps, and digging into the numbers behind “what actually works.”

Apply to become Macaron's first friends