Skip to main content
Video Script #4214-15 minutesDevelopers and power users wanting personal AI automation

I Replaced 10 Apps With This FREE AI Agent (Clawdbot Setup Guide)

Clawdbot is a free, open-source AI assistant that runs locally and handles REAL tasks - emails, calendars, code, smart home, and more. Here's everything you need to know. WHAT YOU'LL LEARN: - What Clawdbot actually is (and why it went viral) - Step-by-step setup on Mac, Windows, or Linux - 10 real automations you can build today - Pro tips for security and performance - How it compares to ChatGPT, Claude, and Siri TIMESTAMPS: 0:00 - The AI assistant that made Mac Minis sell out 1:30 - What is Clawdbot? 3:30 - Why this is different from ChatGPT 5:30 - Complete setup guide (Mac/Windows/Linux) 8:00 - 10 game-changing automations 11:00 - Security tips you MUST know 12:30 - Pro configuration tips 14:00 - Is this the future of personal AI? LINKS: - Clawdbot: https://clawd.bot - GitHub: https://github.com/clawdbot/clawdbot - Documentation: https://docs.clawd.bot - ClawdHub (Skills): https://clawdhub.com Free resources: https://endofcoding.com/tools Tutorials: https://endofcoding.com/tutorials

Coming SoonLearn More

Full Script

Hook

0:00 - 1:30

Visual: Show viral tweets, GitHub stars graph (5k to 20k), Mac Mini sold out screenshots

A retired programmer built an AI assistant in his spare time. Within days, GitHub stars exploded from 5,000 to 20,000.

Mac Minis sold out because people wanted to run it 24/7.

Cloudflare stock jumped on speculation they were somehow involved.

It's called Clawdbot - and it's completely free, open-source, and runs on YOUR machine.

This isn't another ChatGPT wrapper. This is a 24/7 AI that can actually DO things - read your emails, book your flights, control your smart home, push code to GitHub.

I've been using it for two weeks. Here's the complete guide - what it is, how to set it up, and 10 automations that will change how you work.

WHAT IS CLAWDBOT?

1:30 - 3:30

Visual: Show Clawdbot interface, messaging apps, task execution

Clawdbot is an open-source personal AI assistant built by Peter Steinberger.

It runs locally on your Mac, Windows, or Linux machine. Your data never leaves your computer unless you want it to.

The key difference from ChatGPT or Claude: Clawdbot can ACT, not just talk.

Think of it as having a smart coworker sitting at a desk with a computer - who you can message on WhatsApp, Telegram, Discord, or even iMessage.

You message: 'Check my email and summarize anything urgent.' It actually opens your inbox, reads the emails, and responds.

You message: 'Book me a flight to Tokyo next month.' It searches, compares, and can complete the booking.

This is what people imagined Siri would be ten years ago. Except this actually works.

And because it's open-source, there's no monthly fee. No corporate data harvesting. Just an AI that works for YOU.

WHY THIS IS DIFFERENT

3:30 - 5:30

Visual: Compare ChatGPT vs Claude vs Clawdbot capabilities, show 50+ integrations

Let me be clear about what makes Clawdbot unique.

ChatGPT and Claude are conversation partners. You ask, they answer. Clawdbot is a doer. You ask, it executes.

The architecture is completely different.

System Access: Clawdbot can read and write files, run shell commands, execute scripts. It has hands.

Persistent Memory: It remembers your preferences, your schedule, your projects. Context that survives sessions.

50+ Integrations: Gmail, GitHub, Spotify, Obsidian, Twitter, smart home devices. Out of the box.

Platform Agnostic: Message it on WhatsApp from your phone. It runs tasks on your desktop.

Background Processing: Cron jobs. Scheduled tasks. Proactive notifications. It works while you sleep.

One community member described it perfectly: 'A dude and a repo fills in the cracks of billion dollar industries.'

Apple couldn't build this. Google couldn't build this. But an open-source community did.

COMPLETE SETUP GUIDE

5:30 - 8:00

Visual: Terminal screenshots, step-by-step installation

Setup takes 5 to 30 minutes depending on your experience. Let me walk you through it.

Prerequisites: You need Node.js 22 or higher. Windows users: you MUST use WSL2 - native Windows isn't supported.

Step 1 - Install Clawdbot:

Open your terminal and run: npm install -g clawdbot@latest

Or if you prefer pnpm: pnpm add -g clawdbot@latest

Step 2 - Run the Onboarding Wizard:

Run: clawdbot onboard --install-daemon

This wizard handles everything. It installs the background service so Clawdbot runs 24/7.

Step 3 - Configure Your Model:

You have options. Use Claude API for best results. OpenAI works too. Or run fully offline with Ollama for local models.

I recommend Claude Opus 4.5 for complex tasks and Claude Haiku for quick ones.

Step 4 - Connect a Channel:

Telegram is easiest. Create a bot through BotFather, paste the token.

WhatsApp, Discord, iMessage - all supported. Pick what you use.

Step 5 - Add Your First Skill:

Clawdbot's power comes from skills. Start with basics - Gmail, Calendar, File Search.

The ClawdHub marketplace has hundreds of community-built skills.

Pro tip: After setup, run clawdbot status --all. This gives you a full debug report if anything isn't working.

10 GAME-CHANGING AUTOMATIONS

8:00 - 11:00

Visual: Show each automation in action

Here are 10 automations I use daily. These alone justify the setup time.

1. Email Triage: Every morning, Clawdbot summarizes my inbox. Urgent items first. I respond to key messages before I even open Gmail.

2. Calendar Intelligence: 'What's my day look like?' It reads my calendar and tells me what to prepare for.

3. Flight Check-In: I message 'Check me in for my flight.' It logs into the airline, completes check-in, sends my boarding pass.

4. Code Review Assistant: 'Review the latest PR in my project.' It reads the code, summarizes changes, flags potential issues.

5. Meeting Prep: Before calls, it pulls relevant docs, recent emails from attendees, and previous meeting notes.

6. Smart Home Control: 'Set the office lights to focus mode.' Connected to Hue, it adjusts without opening an app.

7. Research Assistant: 'Research the latest on Clawdbot competitors and summarize.' Web search, synthesis, delivered to chat.

8. Health Integration: Connected to WHOOP, it analyzes my sleep and recovery, suggests schedule adjustments.

9. Document Automation: 'Fill out my expense report from last week's receipts.' It gathers data, populates forms.

10. Daily Briefing: Scheduled for 7 AM - weather, calendar, urgent emails, news summary. I wake up informed.

The compound effect is massive. Each automation saves 5-15 minutes. Daily. Forever.

SECURITY TIPS YOU MUST KNOW

11:00 - 12:30

Visual: Show security settings, pairing flow

Clawdbot has system access. That's powerful but requires responsibility. Here are the security rules.

Rule 1: Enable Pairing Mode. By default, unknown senders get blocked. They must share a pairing code you approve.

Run: clawdbot pairing approve [channel] [code] for trusted contacts.

Rule 2: Never Expose Gateway Publicly. The gateway should only be accessible from your local network or VPN. Never open it to the internet.

Rule 3: Use Sandboxed Mode. For tasks you're unsure about, enable sandboxing. Limits file system and network access.

Rule 4: Audit the Skills. Before installing community skills, check the code. It's open-source - verify what it does.

Rule 5: Monitor Logs. Clawdbot logs every action. Review periodically. Set up alerts for unusual activity.

The upside of local AI: your data stays yours. The responsibility: you're the admin. Treat it seriously.

PRO CONFIGURATION TIPS

12:30 - 14:00

Visual: Show config files, performance tips

After weeks of usage, here are the pro tips that make a difference.

Tip 1: Memory Size Matters. If you're running on a VPS, use at least 2GB RAM. The 1GB droplets will crash during npm install.

Tip 2: Use Node, Not Bun. Bun has compatibility issues with WhatsApp and Telegram channels. Stick with Node.js.

Tip 3: Add Brave Search. For web searches, get a Brave API key. Run: clawdbot configure --section web. Superior results to built-in search.

Tip 4: Model Routing. Configure different models for different tasks. Opus for complex reasoning. Haiku for quick lookups. Saves cost, improves speed.

Tip 5: Customize Skills. Skills are just TypeScript files. Modify them. Fork them. Build your own. Hot-reloading means instant updates.

Tip 6: Mac Users - Get the Companion App. Runs in menubar, shows status, provides quick access. Requires macOS 14+.

Tip 7: Backup Your Memory. Clawdbot's memory is stored locally. Back it up. Losing context is losing weeks of learning.

These small optimizations compound. A well-configured Clawdbot is exponentially more useful than default.

THE FUTURE OF PERSONAL AI

14:00 - 15:00

Visual: Show growth trajectory, future vision

What Clawdbot represents is bigger than one tool.

For years, we've been promised personal AI assistants. Siri. Alexa. Google Assistant. All limited by corporate constraints.

Clawdbot proves what's possible when you remove those constraints. When the AI runs locally. When the code is open. When users can extend it.

The GitHub trajectory - 5,000 to 20,000 stars in days - shows the demand was always there.

I think we'll look back at early 2026 as the moment personal AI actually arrived. Not from Apple or Google. From a retired developer and an open-source community.

If you've been waiting for AI that actually helps in daily life - not just answers questions - this is it.

Links in description. Setup guide on my site.

The future of personal AI isn't subscription software. It's open-source agents running on your hardware.

Let me know what automations you build.

CTA

15:00 - 15:30

Visual: Show resources, subscribe

Complete setup guide and my config files are at endofcoding.com.

If this was useful, subscribe. I cover AI tools for developers every week.

Drop a comment with what you're automating. I'll feature the best ones in a follow-up.

See you in the next one.

Sources Cited

  1. [1]

    GitHub Stars Growth (5k to 20k)

    GitHub clawdbot/clawdbot repository, January 2026

  2. [2]

    Mac Mini Sell Out

    36kr.com reporting, January 2026

  3. [3]

    Cloudflare Stock Movement

    Investing.com, January 2026

  4. [4]

    50+ Integrations

    Clawdbot official documentation

  5. [5]

    Installation Requirements

    docs.clawd.bot/start/getting-started

  6. [6]

    WSL2 Requirement for Windows

    Clawdbot GitHub README

  7. [7]

    Node.js 22+ Requirement

    Clawdbot official documentation

  8. [8]

    Peter Steinberger Creator

    GitHub profile and project history

  9. [9]

    Security Best Practices

    Clawdbot documentation security section

  10. [10]

    2GB RAM Recommendation

    Community deployment guides

Production Notes

Viral Elements

  • Mac Mini sold out - surprising, memorable
  • FREE and open-source - high-value proposition
  • 10 specific automations - actionable content
  • Pro tips that aren't documented elsewhere
  • Future-of-AI narrative hook

Thumbnail Concepts

  1. 1.Shocked face + Mac Mini + 'FREE AI?' text
  2. 2.Clawdbot lobster logo + '10 Automations' + excited expression
  3. 3.'REPLACED 10 APPS' + crossed out app icons + Clawdbot interface

Music Direction

Upbeat tech tutorial vibe, builds during setup section, inspiring during future section

Hashtags

#Clawdbot#AIAssistant#PersonalAI#OpenSource#AIAgent#Automation#Productivity#MacMini#AITools#LocalAI#FreeAI#TechTutorial#AISetup#FutureOfWork#AIProductivity

YouTube Shorts Version

55 secondsVertical 9:16

This FREE AI Can Book Flights, Answer Emails & More

Clawdbot is an open-source AI assistant that made Mac Minis sell out. Here's what it can do. #Clawdbot #AIAssistant #FreeAI #OpenSource

Want to Build Like This?

Join thousands of developers learning to build profitable apps with AI coding tools. Get started with our free tutorials and resources.