I posted a Reel showing how to spin up a fully functional AI claw bot in under 60 seconds using Claude and a Mac mini. This is the promised follow-up - the exact step-by-step breakdown with every link you need.
No prior coding experience required. You will be talking to an AI agent that builds the bot for you. Your only job is to tell it what to build.
What You're Building
A "claw bot" - an AI agent that can reach out, grab information, interact with services, and execute tasks automatically. Think of it as a digital claw machine: you point it at something, and it retrieves it for you.
What You Need
- A Mac mini (or any Mac - the Mac mini is the best value for running Claude Code continuously)
- The Claude app - download from claude.ai/download
- Claude Code - the terminal-based coding agent built into the Claude app
- The Superpowers skills framework - a free, open-source library of AI skills that dramatically upgrades what Claude can do
- 15 minutes of setup time (most of it is downloading)
Step-by-Step: Build Your Claw Bot
Get Your Hardware
Pick up a Mac mini. The base model (M4, $599) is more than enough to run Claude Code and your bots 24/7. It uses very little power and can be left running headless (no monitor needed once it's set up).
Download the Claude App
Go to claude.ai/download and install the Claude desktop app. Sign in with your Anthropic account (or create a free one).
You will need a Claude Pro subscription ($20/month) or an API key to use Claude Code. Claude Pro is the easiest starting point.
Open Claude Code
Inside the Claude app, open a terminal window and launch Claude Code by typing claude at the command line. This is where you talk to the agent. Claude Code can read files, write code, run commands, and build entire projects - all from a conversation.
Add the Superpowers Skills to Claude
Superpowers is a free set of pre-built skills that makes Claude dramatically smarter - it forces Claude to plan before it builds, which means cleaner results and fewer mistakes. You install it by pasting one sentence into Claude Code.
Paste this into Claude Code and hit enter:
Download and install the Superpowers skills framework from https://github.com/obra/superpowers into my Claude skills folder, then confirm it's installed and ready to use.
Claude will handle the rest. When it says it's done, move to Step 5.
Tell Claude to Build Your Bot
This is the part that looks like magic. Open Claude Code and say exactly this (replace the bracketed parts with your specifics):
Build me a claw bot using Claude AI. Don't use docs from anywhere else. Name it [YOUR BOT NAME HERE]. Use the superpowers skills to plan before implementing. Come up with a clear plan first, then build it step by step.
Claude will activate the planning skill, lay out a structured build plan, ask any clarifying questions it needs, and then walk you through each step of the implementation. You review and approve as it goes.
Why "Don't Use Docs From Anywhere Else"?
This instruction keeps Claude grounded in what it already knows rather than fetching potentially outdated or incorrect documentation from the web. It produces cleaner, more reliable code for standard bot builds.
Using Skills to Upgrade Your Bot
Skills are what separate a basic Claude setup from a genuinely powerful agent. Once you've installed Superpowers, you have access to a full library of structured capabilities: planning workflows, debugging protocols, code review processes, and more.
You can instruct Claude to use any installed skill mid-conversation:
Use the brainstorming skill to come up with 5 ways to extend this bot.
Use the systematic-debugging skill - the bot isn't running correctly.
As the skills ecosystem grows, so does what your bot can do. You can add new skills to your ~/.claude/skills directory at any time and they become available immediately in your next Claude Code session.
Where to Find More Skills
The Superpowers framework is the foundational layer. Additional skill libraries are also being published by independent developers on GitHub. When browsing for new skills to add, apply the same standard you'd use for any software you install on your machine.
Only Install Skills From Sources You Trust
Skills are code files that execute inside your Claude Code environment. A malicious skill could instruct Claude to take harmful actions, exfiltrate data, or behave in ways you didn't intend - and you might not notice until damage is done.
Before installing any skill:
- Read the skill's
SKILL.mdfile before installing - legitimate skills are transparent about what they do - Only install from repositories with clear authorship, public history, and community use
- Stick to well-known sources: the official obra/superpowers repo, anthropics/skills, or creators you personally know
- Be suspicious of skills that claim unusually broad capabilities or request permissions to access external services
- Treat a random skill from a new GitHub repo the same way you'd treat a random browser extension - with caution
The skills themselves are plain text files, so you can always open and read them before installation. If a skill's instructions are obfuscated or confusing, don't install it.
Security: What You Must Know Before You Start
Do Not Share Financial or Sensitive Personal Information With Claude
Claude Code sessions are not end-to-end encrypted in the way a private document on your local hard drive is. Conversations and code are processed through Anthropic's servers. While Anthropic has privacy policies in place, Claude is not an appropriate place to store or process:
- Bank account numbers, routing numbers, or wire transfer details
- Credit card or payment processor credentials
- Social Security numbers or government IDs
- Passwords or API keys with financial access
- Client financial data or personally identifiable information (PII)
- Legal documents containing confidential terms
Treat Claude like a highly capable contractor working in a shared office space. You'd give them the brief and the technical specs - you wouldn't hand them your banking login.
Additional Security Practices
- Use environment variables for API keys. Never paste a live API key directly into a conversation. Store it in a
.envfile that Claude can reference by name without you exposing the value in the chat. - Review what Claude does before it runs. Claude Code will tell you what it's about to execute. Read it. If something looks off, say so.
- Don't run bots with production database access during development. Build and test against a sandbox or staging environment first.
- Set permissions intentionally. If your bot doesn't need internet access or file system access, don't grant it. Principle of least privilege applies to AI agents too.
- Keep Claude Code updated. Anthropic regularly patches security issues. Run
claude updateperiodically.
How We're Using Claw Bots to Buy Micro Resorts and Hotels
This isn't just a tech experiment. We're building claw bots specifically to accelerate micro resort and boutique hotel acquisitions.
Finding and underwriting micro resort deals is tedious, repetitive work - exactly the kind of task AI agents are built for. Here's what our bots are doing in the real estate acquisition pipeline:
- Deal sourcing: Bots that scan listing databases, broker sites, and off-market sources for micro resort and small hotel properties that match our buy box
- Initial underwriting: Agents that pull ADR data, occupancy rates, and comp sets from short-term rental platforms and run a first-pass NOI analysis automatically
- Lead qualification: Bots that research property history, ownership records, and market dynamics before we spend time on a live call
- Market analysis: Automated competitive landscape pulls for any market we're evaluating - RevPAR trends, supply pipeline, drive-to distance from major metros
The result: our team can evaluate 10x more micro resort deals in the same amount of time. The bot does the boring leg work. We do the relationship and the close.
If you're an investor looking at boutique hotels, micro resorts, or glamping properties, this is the edge. Everyone else is doing this manually. You don't have to.
Want to Learn the Micro Resort Investing Model?
I've acquired $9M in hotels and micro resorts and counting. Take the free 5-day challenge to learn exactly how the deal model works - before you build a bot to find them. Start the free challenge →
Quick Reference: The Full Setup Checklist
- Get a Mac mini (M4 base model recommended)
- Download Claude app from claude.ai/download
- Subscribe to Claude Pro or add an API key
- Open Claude Code
- Paste: "Download and install the Superpowers skills framework from https://github.com/obra/superpowers into my Claude skills folder, then confirm it's installed and ready to use." - hit enter and wait for confirmation
- Say: "Build me a claw bot using Claude AI. Don't use docs from anywhere else. Name it ClawBot. Use the superpowers skills to plan before implementing."
- Approve the plan, then let Claude build step by step
That's it. The bot will be running before your coffee gets cold.
"The goal isn't to learn to code. The goal is to get a result. Claude Code with Superpowers is the fastest path from idea to working bot I've found."
- Gideon Spencer