Like most developers, I have been using AI coding tools for the past year - Claude Code, Cursor, Copilot. But a few weeks ago I discovered something that changed my entire approach to automation: Clawdbot (now called Moltbot after the recent rebrand).
Here is how I set it up and what I am using it for.
What is Moltbot?
For those who missed it, Moltbot is an open-source AI assistant that runs on hardware you control. Unlike ChatGPT or Claude where you visit a website, Moltbot lives inside messaging apps - WhatsApp, Telegram, Discord, Slack, iMessage. You message it like a colleague.
The key differentiator: persistent memory and local execution. It remembers everything across conversations and can actually DO things on your computer.
My Setup
Hardware: M2 Mac Mini running 24/7 in my closet ($499 refurbished)
Connections:
- Telegram for mobile access
- Slack for work context
- iMessage for quick tasks
Skills installed:
- GitHub integration
- Terminal access
- Web browsing
- File operations
Total setup time was about 2 hours following the documentation.
My Daily Workflow Now
Morning Routine (Automated)
Every morning at 7am, Moltbot:
- Pulls latest changes from our repos
- Runs test suites
- Summarizes overnight PRs
- Sends me a Slack message with the digest
I wake up knowing exactly what needs attention.
PR Reviews
When I get assigned a PR, I forward the link to Moltbot via Telegram. It:
- Clones the branch
- Runs the test suite
- Analyzes the diff
- Provides structured feedback
I still do the final review, but it catches 80% of issues before I even look.
Documentation
This is the killer use case. I can message: “Document the authentication module in /src/auth” and it:
- Reads all the files
- Analyzes the code structure
- Generates JSDoc comments
- Creates a README section
- Opens a draft PR
What used to take 2 hours takes 5 minutes of my attention.
Integration with Claude Code
Here is where it gets powerful. I run Claude Code in my terminal for intensive coding work. But Moltbot handles the orchestration layer:
- “Run the full test suite and let me know when it passes”
- “Deploy staging when tests are green”
- “Watch this log file and alert me if errors spike”
Claude Code does the thinking, Moltbot does the doing.
Productivity Gains
After 3 weeks of use, I tracked:
| Task | Before | After | Savings |
|---|---|---|---|
| PR Review prep | 20 min | 5 min | 75% |
| Documentation | 2 hours | 10 min | 92% |
| Morning catch-up | 45 min | 5 min | 89% |
| Deployment | 15 min | 2 min | 87% |
This does not account for the mental energy saved by not context-switching.
The Rebrand Drama
Quick note: Anthropic sent a trademark request about the name “Clawd” being too similar to “Claude.” The creator had to rename to Moltbot. During the rename, crypto scammers grabbed the old social handles in about 10 seconds. Chaotic but the project is fine.
If you see any “Clawdbot token” or crypto stuff - it is a scam. The project has no tokens.
Getting Started Tips
- Start with one platform: Pick Telegram or Slack, not both
- Start with one skill: GitHub integration is the best first skill
- Build habits slowly: Add one automation per week
- Keep logs: The built-in logging helps debug issues
Questions for the Community
- Anyone else using this for dev workflows?
- What skills are you finding most useful?
- How are you handling the security of giving it terminal access?
Would love to hear what others are building with it.