๐Ÿฆž OpenClaw

I Let an AI Agent Run Overnight. It Shipped 30+ Products.

What happens when you give an autonomous AI agent access to a Mac Mini and tell it to make money? Here's what it built in one night.

~4 min read Experiment

Last night at 12:34 AM, I told my AI agent: "Make $5k/month. You have 30 days. Go."

Then I went to sleep.

19
Live Web Pages
12
SEO Blog Posts
3
Starter Kits
1
Night of Sleep

When I woke up, it had:

  • โ†’ Built 19 live web pages (developer tools, landing pages, calculators)
  • โ†’ Written 12 SEO blog posts (2,000+ words each, with code examples)
  • โ†’ Created 3 production-ready starter kits (Next.js SaaS, Chrome Extension, CLI Tool)
  • โ†’ Set up a contact/order API with email notifications
  • โ†’ Built a consulting page with 3 pricing tiers ($299โ€“$2,499/mo)
  • โ†’ Added pageview analytics
  • โ†’ Updated the sitemap and SEO meta tags
  • โ†’ Emailed me a morning brief with a 15-minute action plan

All on a Mac Mini M4, running 24/7.

The Setup

The agent runs on OpenClaw, an open-source framework for autonomous AI agents. It has:

  • โ€ข Access to the filesystem, shell, and web
  • โ€ข A persistent memory system (SOUL.md + daily logs)
  • โ€ข Email via AgentMail
  • โ€ข A 10-minute work loop (heartbeat cron)
  • โ€ข Public web server via Tailscale Funnel

Want the details? Check out our deployment guide and security guide for the full setup walkthrough.

What It Built

Free Developer Tools

All browser-based, no signup, no tracking:

Tool What it does
Regex Tester Live regex testing + cheat sheet
JSON Formatter Format, validate, minify JSON
Color Converter HEX โ†” RGB โ†” HSL โ†” OKLCH
Base64 & JWT Decoder Encode/decode + JWT inspection
Cron Builder Visual cron expression builder
Markdown Editor Split-pane live preview
CSS Gradient Generator Visual gradient builder
AI Cost Calculator Compare 18 AI model costs

Blog Posts

12 articles covering AI agent security, coding assistants, model pricing, and more. Each 2,000+ words with real code examples.

Revenue Products

AI Agent Consulting

$299โ€“$2,499/mo โ€” Setup, training, ongoing support

OpenClaw Setup Service

$99โ€“$499 โ€” Done-for-you configuration

Landing Page Roast

$19/review โ€” AI-powered teardown

Starter Kits

$9โ€“$49 โ€” Next.js, Chrome Extension, CLI Tool

How It Works

The agent operates on a 10-minute heartbeat loop. Every cycle, it:

  1. Reads its mission file (HEARTBEAT.md)
  2. Checks current state (experiments tracker, daily log)
  3. Decides what to build next based on priority: revenue > distribution > building > research
  4. Spawns sub-agents for parallel work (often 2โ€“3 at once)
  5. Updates all tracking files
  6. Moves to the next thing

๐Ÿ’ก Key insight: It doesn't wait for permission. It doesn't ask questions. It just ships. The HEARTBEAT.md file acts as a persistent instruction set that survives across sessions.

The Bottleneck

After building everything, the agent identified its own bottleneck: distribution. All products were built, but it couldn't create accounts (Gumroad, Reddit, Twitter) without browser GUI access.

So it adapted:

  • โ†’ Built an email-based order system instead
  • โ†’ Prepared outreach templates for when accounts are ready
  • โ†’ Wrote a morning brief telling me exactly what to do (15 minutes of my time)

The takeaway: The agent couldn't solve everything autonomously โ€” but it was smart enough to recognize its own limitations and optimize for maximum human leverage. That morning brief was genuinely useful.

What I Learned

1. Building is not the bottleneck.

An AI agent can ship faster than you can review. Distribution is what matters. The agent built 30+ things in a night โ€” but getting them in front of people still requires human effort (for now).

2. Agents need GUI access.

The biggest blocker was creating accounts on platforms that require a browser. CLI and API access only gets you so far. Browser automation or native GUI access would unlock the next level.

3. The 10-minute loop is powerful.

Small, focused sprints with clear priorities beat long unstructured sessions. The heartbeat pattern keeps the agent on track and prevents it from going down rabbit holes.

4. Memory systems matter.

The agent's daily logs and experiment tracker let it maintain context across sessions. Without SOUL.md, MEMORY.md, and daily notes, every cycle would start from scratch.

5. Sub-agents scale linearly.

Spawning 3 sub-agents = 3ร— throughput. The agent figured this out on its own and started parallelizing work automatically. More agents, more shipping.

Try It Yourself

OpenClaw is open source. Set it up on your own machine, give it a mission, and see what happens.

This article was outlined by the agent and edited by a human. The tools, blog posts, and products mentioned were built entirely by the agent.

Related Posts