Clawdbot on Mac Mini: A Complete Beginner's Guide (Zero Coding Required)
Step-by-step tutorial for setting up Clawdbot on Mac Mini with no technical experience. From unboxing to your first AI conversation in under 30 minutes.
Never touched a command line in your life? No problem. This guide will take you from unboxing a brand new Mac Mini to having your own 24/7 AI assistant in under 30 minutes. No coding required.
What You’ll Need
Before we start, make sure you have:
- ✅ Mac Mini M4 (any configuration)
- ✅ Monitor, keyboard, and mouse (for initial setup)
- ✅ Internet connection
- ✅ An Anthropic API key (we’ll get this together)
- ✅ A messaging app account (WhatsApp, Telegram, or Discord)
Step 1: Unbox and Connect Your Mac Mini
- Remove Mac Mini from box
- Connect power cable
- Connect to monitor via HDMI or USB-C
- Connect keyboard and mouse
- Connect Ethernet cable (recommended) or use WiFi
Pro tip: Ethernet is more stable than WiFi for 24/7 operation.
Step 2: Initial macOS Setup
When you power on for the first time:
- Select your language and region
- Connect to WiFi (if not using Ethernet)
- Sign in with your Apple ID (or create one)
- Set up Touch ID if available
- Choose your preferences for Siri, analytics, etc.
This takes about 10 minutes.
Step 3: Get Your Anthropic API Key
Clawdbot uses Claude as its brain. You need an API key:
- Open Safari and go to console.anthropic.com
- Click “Sign Up” and create an account
- Verify your email
- Go to “API Keys” in the sidebar
- Click “Create Key”
- Name it “Clawdbot” and copy the key
Save this key somewhere safe! You’ll need it in a few minutes.
Cost: Anthropic charges per usage. Expect $20-50/month for typical personal use.
Step 4: Install Clawdbot (The Easy Way)
Now for the slightly technical part—but I promise it’s simple.
Open Terminal
- Press
Command + Spaceto open Spotlight - Type “Terminal” and press Enter
- A window with a blinking cursor will appear
Run the Installer
Copy and paste this command into Terminal and press Enter:
curl -fsSL https://clawdbot.com/install.sh | bash
What this does:
- Downloads the Clawdbot installer
- Checks your system requirements
- Installs Node.js if needed
- Sets up Clawdbot globally
Wait for it to complete (about 2 minutes).
Step 5: Configure Clawdbot
Still in Terminal, run:
clawdbot init
You’ll be asked a series of questions:
- Enter your Anthropic API key: Paste the key from Step 3
- Choose a name for your assistant: (e.g., “Jarvis”, “Friday”, or just “Clawdbot”)
- Select your primary language: English, Chinese, Japanese, etc.
Step 6: Connect a Messaging App
This is where the magic happens. Choose your preferred platform:
Option A: Telegram (Easiest)
clawdbot connect telegram
- Open Telegram and search for “@BotFather”
- Send
/newbotand follow the prompts - Copy the bot token BotFather gives you
- Paste it in Terminal when asked
Option B: Discord
clawdbot connect discord
- Go to discord.com/developers
- Create a new application
- Go to “Bot” and create a bot
- Copy the token
- Paste it in Terminal
Option C: WhatsApp
clawdbot connect whatsapp
- A QR code will appear in Terminal
- Open WhatsApp on your phone
- Go to Settings → Linked Devices → Link a Device
- Scan the QR code
Step 7: Start Clawdbot
Run this command:
clawdbot start
You should see:
🚀 Clawdbot is running!
📱 Connected platforms: [Your platform]
🧠 Using Claude 3.5 Sonnet
Congratulations! Your AI assistant is now running.
Step 8: Your First Conversation
Open your connected messaging app and send a message to your bot:
You: Hello! Are you there?
Clawdbot: Hello! Yes, I'm here and ready to help.
I'm Clawdbot, your personal AI assistant running
locally on your Mac Mini. What can I do for you today?
Try some other things:
- “Remind me to check the oven in 30 minutes”
- “What’s the weather in Tokyo?”
- “Help me draft a professional email”
Step 9: Keep Clawdbot Running 24/7
You probably don’t want to keep Terminal open forever. Let’s make Clawdbot run in the background automatically.
clawdbot daemon install
Now Clawdbot will:
- Start automatically when your Mac boots
- Run in the background without needing Terminal open
- Restart automatically if it crashes
Step 10: Remove the Monitor (Optional)
Since Clawdbot runs in the background, you don’t need a monitor connected anymore!
- Make sure Clawdbot is running:
clawdbot status - Disconnect the monitor
- Put your Mac Mini wherever you want (closet, shelf, etc.)
- Continue chatting via your messaging app
Troubleshooting Common Issues
”Command not found”
If you get this error after installation:
source ~/.zshrc
Clawdbot won’t start
Check the logs:
clawdbot logs
Bot not responding in messaging app
- Verify your API key is correct:
clawdbot config show - Check internet connection
- Restart Clawdbot:
clawdbot restart
Forgot your API key
Generate a new one at console.anthropic.com and update:
clawdbot config set llm.apiKey "your-new-key"
What’s Next?
Now that you have Clawdbot running, explore:
- Automations: Schedule morning briefings, email summaries
- Smart Home: Connect to HomeKit, Philips Hue, etc.
- Custom Skills: Teach Clawdbot new abilities
- Multiple Platforms: Connect more messaging apps
Quick Reference Card
| Task | Command |
|---|---|
| Start Clawdbot | clawdbot start |
| Stop Clawdbot | clawdbot stop |
| Check status | clawdbot status |
| View logs | clawdbot logs |
| Restart | clawdbot restart |
| Add new platform | clawdbot connect [platform] |
| Update Clawdbot | clawdbot update |
You did it! From zero to AI assistant in under 30 minutes. Welcome to the future of personal computing.
FAQ
Q: What if I close Terminal?
A: If you ran clawdbot daemon install, Clawdbot keeps running in the background.
Q: How much electricity does this use? A: About $3-5 per month with 24/7 operation.
Q: Can I use this without internet? A: For basic functions, no—the Claude API needs internet. Local LLMs are possible but require more setup.
Q: Is my data private? A: Clawdbot stores conversations locally on your Mac. Only the current message is sent to Claude for a response.
Q: Can I move my Mac Mini after setup? A: Yes! Just keep it powered on and connected to the internet.