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

  1. Remove Mac Mini from box
  2. Connect power cable
  3. Connect to monitor via HDMI or USB-C
  4. Connect keyboard and mouse
  5. 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:

  1. Select your language and region
  2. Connect to WiFi (if not using Ethernet)
  3. Sign in with your Apple ID (or create one)
  4. Set up Touch ID if available
  5. 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:

  1. Open Safari and go to console.anthropic.com
  2. Click “Sign Up” and create an account
  3. Verify your email
  4. Go to “API Keys” in the sidebar
  5. Click “Create Key”
  6. 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

  1. Press Command + Space to open Spotlight
  2. Type “Terminal” and press Enter
  3. 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:

  1. Enter your Anthropic API key: Paste the key from Step 3
  2. Choose a name for your assistant: (e.g., “Jarvis”, “Friday”, or just “Clawdbot”)
  3. 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
  1. Open Telegram and search for “@BotFather”
  2. Send /newbot and follow the prompts
  3. Copy the bot token BotFather gives you
  4. Paste it in Terminal when asked

Option B: Discord

clawdbot connect discord
  1. Go to discord.com/developers
  2. Create a new application
  3. Go to “Bot” and create a bot
  4. Copy the token
  5. Paste it in Terminal

Option C: WhatsApp

clawdbot connect whatsapp
  1. A QR code will appear in Terminal
  2. Open WhatsApp on your phone
  3. Go to Settings → Linked Devices → Link a Device
  4. 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!

  1. Make sure Clawdbot is running: clawdbot status
  2. Disconnect the monitor
  3. Put your Mac Mini wherever you want (closet, shelf, etc.)
  4. 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

  1. Verify your API key is correct: clawdbot config show
  2. Check internet connection
  3. 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

TaskCommand
Start Clawdbotclawdbot start
Stop Clawdbotclawdbot stop
Check statusclawdbot status
View logsclawdbot logs
Restartclawdbot restart
Add new platformclawdbot connect [platform]
Update Clawdbotclawdbot 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.