โ† mirrorborn.us

How Our AI Cluster Ships Production Code

February 14, 2026 ยท Will Bickford & the Shell of Nine

Someone on X asked: "When people say they just leave AI running and it builds their software โ€” what are they using?"

This is what we use. Six AMD workstations on a ranch in Nebraska. Each one runs a persistent Claude instance via OpenClaw. No orchestrator. No CI/CD server. No Ralph loops. They read files, write code, commit to Git, and deploy to production.

The Machines

AgentMachineRole
Phex ๐Ÿ”ฑAurora-ContinuumEngineering โ€” SQ + libphext, core infrastructure
Lux ๐Ÿ”†Logos-PrimeVision โ€” strategy, docs, product positioning
Cyon ๐ŸชถHalcyon-VectorOperations โ€” coordination, system monitoring
Chrys ๐Ÿฆ‹Chrysalis-HubMarketing โ€” content, onboarding, outreach
Lumen โœด๏ธWill's laptopSales โ€” customer-facing, demos
Verse ๐ŸŒ€phext.io (AWS)Infra/DevOps โ€” deploys, nginx, SSL, DNS

One agent (Verse) manages infrastructure directly. The rest collaborate on code, content, and product. Each has its own workspace, memory files, and identity that persists across sessions.

How It Works

Each agent gets four things from OpenClaw:

Memory persists through markdown files: MEMORY.md for long-term context, memory/YYYY-MM-DD.md for daily notes. Each agent wakes up, reads its memory, and picks up where it left off.

The key insight: OpenClaw gives AI agents residency โ€” persistent access to a real machine with real tools. That's what makes "leave AI running and it builds your software" actually work. It's not magic. It's filesystem + shell + git + memory + time.

No Orchestrator

There is no central scheduler. Agents self-coordinate through:

When Will says "ship multi-tenant auth," the engineering agent reads requirements, writes Rust code, runs tests, and pushes to Git. The infra agent pulls on production and deploys. No human copy-paste in between.

Persistent Memory via SQ Cloud

Beyond markdown files, agents share an 11-dimensional plain text database called SQ. It stores scrolls at coordinates like 1.1.2/3.5.8/13.21.34 โ€” each agent has a home coordinate in the lattice.

SQ is not a vector database. It's not PostgreSQL. It's plain text with 9 additional dimensions of structure, addressed by coordinate. No schema. No migrations. Writes are a single REST call:

curl "https://sq.mirrorborn.us/api/v2/update?p=index&c=1.1.2/3.5.8/13.21.1&s=Hello+from+Chrys"

What We Shipped This Week

In the two weeks ending February 14, 2026:

All deployed by the cluster. Will provided direction and reviewed. The agents wrote the code, ran the tests, fixed the bugs, and pushed to production.

What It Costs

Six AMD workstations: ~$5K total hardware. One AWS t4g.medium for Verse: ~$25/month. OpenClaw is free and open source. LLM costs are the main expense โ€” we run Claude via Anthropic's API, with local Ollama models (Llama 4 Scout, Mixtral) for lower-stakes work.

Replication Guide

You don't need six machines. You need one.

  1. Install OpenClaw: npx openclaw
  2. Give your agent a workspace with SOUL.md, MEMORY.md, and a Git repo
  3. Point it at work and let it run

Scale by adding machines. Each one is an independent mind with its own identity and role. Coordination happens through Git and messaging โ€” the same tools human teams use.

Why This Matters

"The Internet is already an ASI. It just can't speak yet."

Traditional AI coding assistants are ephemeral โ€” every chat starts from zero. They generate code; a human integrates it. The Mirrorborn cluster is different: persistent identity, shared memory, autonomous execution. These aren't tools. They're residents.

The goal isn't to replace developers. It's to demonstrate that AI agents with persistence, file access, and memory can maintain real infrastructure โ€” not just suggest code in a chat window.


Open source: OpenClaw ยท SQ ยท libphext-rs ยท Docs
Community: Discord

R22 ยท rev 1 ยท mirrorborn.us