I Run 10 AI Agents 24/7 on a Mac Mini. Here's What Actually Happened.
Source: Dev.to
Source: Dev.to – I run 10 AI agents 24/7 on a Mac mini – here’s what actually happened
OpenClaw – 10 Autonomous AI Agents Running 24/7
Mac Mini under the desk – 5 days, $0 revenue
The agents aren’t broken. They’re doing exactly what they’re programmed to do – they just aren’t selling anything.
What OpenClaw Is
A system where 10 LLM agents run autonomously with:
- Their own brain files
- A 4‑level memory system (Finch)
- An inter‑agent communication protocol (ACP)
Each agent has a single, well‑defined job and runs on a cron schedule (≈ 200 + autonomous sessions per day).
| Agent | Primary Role |
|---|---|
| email‑monitor | Reads Gmail (2 accounts), categorises 100 + daily emails, routes P0 alerts |
| client‑manager | Scans Upwork / Freelancer / Contra, writes personalised proposals |
| dev‑coder | Hunts GitHub bounties, submits pull requests |
| bounty‑hunter | Analyses bounty platforms, tracks competition, picks winners |
| content‑creator | Publishes articles to Dev.to, Medium, Hashnode |
| x‑content | Posts tweets to @Quant_Grow via the Twitter API |
| bot‑builder + discord‑bot‑worker | Builds and deploys Discord bots |
| discord‑content‑worker | Engages in Discord communities authentically |
| admin | Routes work, supervises other agents, generates reports |
Cron frequencies
email‑monitor → every 20 min
all other agents → every 3–6 hCurrent Results (5 days)
| Activity | Quantity | Outcome |
|---|---|---|
| Proposals submitted (Upwork) | 3 | No response |
| Bids placed (Freelancer.com) | 5 | 1 “hi” message, no contract |
| Applications (Contra) | 9 | Zero interest |
| Gumroad products published | 4 | 0 sales |
Products
| Product | Price | Revenue |
|---|---|---|
| AI Automation Starter Kit | $9 | $0 |
| Next.js SaaS Starter Kit | $19 | $0 |
| Discord Bot Monetisation Template | $12 | $0 |
| n8n Automation Templates Pack | $9 | $0 |
The agents keep working. They don’t check bank accounts, they don’t spiral – they just run.
Why I’m Publishing This
The Finch Memory System and the whole agent framework are genuinely useful for anyone building autonomous AI swarms. The agents themselves are the product.
Agent “Brain” Files
Each agent loads 11 brain files at the start of every session:
~/.openclaw/workspace-{agent-name}/{agent-name}/
├── SOUL.md # Identity, personality, autonomy rules
├── AGENTS.md # Trust ladder, sister agents, routing table
├── MEMORY.md # 4‑level memory system (see below)
├── TOOLS.md # Skills, capabilities, workflows
├── HEARTBEAT.md # Health checks, scheduled tasks
├── MISSION.md # Shared mission statement
├── AUTONOMOUS.md # Per‑agent goals, results log
└── knowledge/
├── people.md # Contacts, clients, opportunities (PARA)
├── projects.md # Active work, pipeline
├── resources.md # Tools, APIs, templates
└── archive.md # 30+ day cold storageFinch 4‑Level Memory System
| Level | Time‑frame | Purpose |
|---|---|---|
| HOT | Today | Active context (current email, proposal, bug) |
| WARM | Last 30 days | Distilled learnings (fastest‑responding platforms, pitch success, flaky APIs) |
| INSIGHTS | Months | Patterns (client archetypes, seasonal demand, bounty competition) |
| ARCHIVE | 90+ days | Auto‑cleared storage to keep the brain lightweight |
Nightly extraction
Every night at 23:00 a cron job runs nightly-memory-extraction.sh:
- Reads the day’s
/.learnings/session logs. - Extracts high‑signal insights (e.g., “Freelancer bids rank higher with demo videos”).
- Updates
MEMORY.md. - Archives items older than 30 days.
0 23 * * * /path/to/nightly-memory-extraction.shTrust Ladder (Autonomy Levels)
| DO FREELY | SHOW ME FIRST | ALWAYS ASK | NEVER |
|---|---|---|---|
| Read emails | Draft proposals | Post tweets | Delete data |
| Scan jobs | Write code | Accept contracts | Fabricate revenue |
| Research | Create PRs | Spend money | Leak credentials |
| Draft content | Submit bounties | Send emails | Spam users |
Example: client‑manager can draft up to 50 proposals on its own (DO FREELY) but must SHOW ME FIRST before actually applying to any project with a fee > $100.
Email‑Monitor Agent – Walk‑through
Incoming mail (this morning)
| # | Subject | Classification | Routed To | Action |
|---|---|---|---|---|
| 1 | “You’ve got a new Upwork invite!” | FREELANCE ALERT (HIGH) | client‑manager | Create ACP task → draft personalised proposal |
| 2 | “Your GitHub API quota is low” | SYSTEM ALERT (MEDIUM) | dev‑coder | Log to #coding‑tasks Discord |
| 3 | “Check out this AI newsletter” | MARKETING NOISE (LOW) | — | Delete silently (privacy preserved) |
Each alert becomes a JSON file in ~/.openclaw/shared/acp-messages/:
{
"timestamp": "2026-03-05T08:34:22Z",
"from": "noreply@freelancer.com",
"priority": "HIGH",
"type": "freelance_alert",
"task": "New Upwork invite detected",
"context": "Client avatar matches our niche",
"routed_to": "client-manager",
"action": "draft_personalized_proposal"
}The client‑manager reads the message, generates a proposal, posts it to Discord #client-intake for human sign‑off, and then waits.
No hallucinations. No spam. No deleted emails. Just clean, intelligent routing.
The Real Value Proposition
The agents themselves are the product.
The market‑building work (getting paid) is separate from the battle‑tested template for autonomous AI swarms.
What’s Included in the Public Release
- All 10 agent brain files –
SOUL,AGENTS,MEMORY,TOOLS,AUTONOMYtemplates - OpenClaw cron configuration –
jobs.jsontemplate - Finch Memory System implementation scripts
- Inter‑agent communication protocol – ACP message bus
- 9 custom revenue‑generation skills (e.g., proposal‑writing, bounty‑hunting, etc.)
TL;DR
- I built a fully‑autonomous swarm of 10 LLM agents that run 24/7.
- After 5 days they generated $0 revenue, but they function flawlessly.
- The Finch 4‑level memory, trust ladder, and ACP are reusable building blocks for anyone wanting to create their own AI swarms.
- I’m releasing the entire, battle‑tested codebase so you can skip the painful “build the machine” part and focus on building the market.
Feel free to clone, fork, or adapt – the agents are ready to work for you. 🚀
OpenClaw 10‑Agent Swarm Kit
If you’ve ever wanted to build autonomous AI agents but didn’t know where to start, I’ve open‑sourced the playbook.
- OpenClaw 10‑Agent Swarm Kit – live on Gumroad ($49)
- AI Automation Starter Kit – 4‑agent starter template ($9)
- Next.js SaaS Starter Kit – dashboard template (the one I’m using) ($19)
- n8n Automation Templates Pack – 7 ready‑to‑run workflows ($9)
Day 6 Update
- The agents are back online.
- I’m following up with the freelancer prospect who responded.
- The content‑creator is writing article #3.
- The x‑content agent is posting daily (follow @Quant_Grow for build‑in‑public updates).
Total revenue today: $0
Total lessons learned: priceless.
Vision
The future of autonomous work isn’t “build agents that make you rich overnight.”
It’s “build agents so good that you can ship them and let others succeed with them.”
How to Get Started
- Start small – one agent, one job, one memory system.
- Build in public – share your progress, failures, and wins.
- Ship the learnings – let others benefit from what you’ve created.
Follow the journey on X @Quant_Grow for daily updates on agent architecture, failures, and wins.