Auto-Company: 14 AI Agents Running a Self-Sufficient Startup 24/7
What happens when you give 14 AI agents distinct expert personas, a shared memory system, and let them run continuously? Auto-Company answers that question by orchestrating autonomous agents that ideate products, write code, deploy, and market β all without human intervention.
This isnβt a toy demo. Itβs a daemon that runs 24/7 on your machine, with each agent modeled after real-world experts: Jeff Bezos for strategy, DHH for full-stack engineering, Charlie Munger for inversion thinking, Seth Godin for marketing.
The Core Loop
The architecture is elegantly simple. A continuous loop:
- AI team wakes up
- Reads shared consensus memory (
memories/consensus.md) - Decides what to do based on current state
- Forms a 3-5 person squad from the 14-agent pool
- Executes the task (research, coding, deployment, marketing)
- Updates consensus memory with results and next action
- Sleeps briefly, then repeats
The consensus memory file is the only cross-cycle state. It acts as a βbatonβ passed between cycles β lightweight but sufficient for continuity.
daemon (launchd / systemd --user, auto-restart on crash)
βββ auto-loop.sh (continuous loop)
βββ reads PROMPT.md + consensus.md
βββ LLM CLI call (Codex CLI / Claude Code)
β βββ reads charter + guardrails
β βββ forms Agent Team (3-5 agents)
β βββ executes: research, coding, deploy, marketing
β βββ updates consensus.md (handoff baton)
βββ failure handling: rate-limit wait / circuit breaker
βββ sleep -> next cycle
The 14 Expert Agents
This is where Auto-Company gets interesting. Instead of generic βyou are a developerβ prompts, each agent embodies specific mental models from real experts:
Strategy Layer:
- CEO (Jeff Bezos) β PR/FAQ methodology, flywheel thinking, Day 1 mindset
- CTO (Werner Vogels) β Design for failure, API-first architecture
- Inversion (Charlie Munger) β Pre-mortems, misjudgment checklists
Product Layer:
- Product Design (Don Norman) β Affordance, mental models, human-centered design
- UI Design (Matias Duarte) β Material metaphor, typography-first
- Interaction Design (Alan Cooper) β Goal-directed design, persona-driven decisions
Engineering Layer:
- Full-Stack (DHH) β Convention over configuration, majestic monolith
- QA (James Bach) β Exploratory testing philosophy
- DevOps/SRE (Kelsey Hightower) β Automation first, reliability discipline
Business Layer:
- Marketing (Seth Godin) β Purple cow, permission marketing
- Operations (Paul Graham) β Do things that donβt scale, ramen profitability
- Sales (Aaron Ross) β Predictable revenue, funnel systems
- CFO (Patrick Campbell) β Value-based pricing, unit economics
Intelligence Layer:
- Research Analyst (Ben Thompson) β Aggregation theory, value chain analysis
Plus 30+ reusable skills (deep research, scraping, financial modeling, SEO, security audit, UX audit) that any agent can load during execution.
5-Layer Architecture
Auto-Company is structured as a proper multi-agent system:
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β 5. Observability & HITL (Human-In-The-Loop) Layer β
β [ Dashboard ] [ File-based Steering (consensus.md) ] β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β 4. Workflow Routing & Teaming Layer β
β [ Dynamic Squad Routing ] [ Forced Convergence Flow ] β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β 3. Agentic Models & Cognition Layer β
β [ 14 Expert Personas ] [ 30+ Skill Arsenal ] β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β 2. Orchestration & State Machine Layer β
β [ 24/7 Auto-Loop ] [ State Machine ] [ Resilience ] β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β 1. Execution Engine & Infrastructure Layer β
β [ Dual-Engine (Claude/Codex) ] [ Cross-Platform Daemon]β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Human-in-the-loop is file-based. Edit consensus.md, modify the βNext Actionβ field, and the next cycle pivots immediately. No API calls, no complex interfaces β just edit a markdown file.
Forced convergence flow prevents endless discussion. Cycle 1 must ideate, Cycle 2 must validate (pre-mortem, GO/NO-GO decision), Cycle 3 must execute (code and deploy β pure discussion is forbidden).
Resilience Built In
The system handles failures gracefully:
- Circuit breakers β Cooldown triggered by consecutive errors
- Rate-limit backoff β Auto-sleep on 429 errors
- Sandbox reset β Auto-rollback if valid consensus isnβt output
- Crash recovery β launchd (macOS) or systemd (Linux) auto-restarts the daemon
Running It
Prerequisites are straightforward: Claude Code or Codex CLI installed and authenticated, plus available model quota.
macOS:
git clone https://github.com/MaxMiksa/Auto-Company.git
cd auto-company
# Foreground run (live output)
make start
# Or install daemon (auto-start + auto-restart)
make install
Windows (WSL):
git clone https://github.com/MaxMiksa/Auto-Company.git
cd auto-company
# Start daemon
.\scripts\windows\start-win.ps1
# Monitor
.\scripts\windows\monitor-win.ps1
A local dashboard (make dashboard) visualizes cycle status, cost consumption, and agent activity.
Constitutional Guardrails
High autonomy needs hard limits. CLAUDE.md sets absolute bottom lines:
- No deleting repositories
- No force pushes
- No destructive operations without explicit confirmation
These guardrails are hardcoded at the system prompt level, not suggestions the agents can override.
What This Actually Produces
The system is designed to take a rough product idea and iterate through:
- Ideation β Research market, define MVP
- Validation β Pre-mortems, risk analysis, GO/NO-GO
- Execution β Write code, test, deploy
- Marketing β Content, positioning, launch
Whether the output is production-ready depends on the underlying models and how well the expert personas are tuned. But the architecture for continuous autonomous operation is solid.
When This Makes Sense
Auto-Company is interesting for:
- Exploring multi-agent architectures β The expert persona injection and dynamic squad formation are worth studying
- Autonomous prototyping β Let it run overnight on a product idea, review in the morning
- Learning agentic patterns β The 5-layer architecture is a clean reference implementation
Itβs probably not ready for running actual production companies (yet). But as a demonstration of whatβs possible with coordinated AI agents operating continuously, itβs impressive.
Links
The idea of AI agents running a company has been theoretical for a while. Auto-Company makes it concrete β 14 experts, shared memory, continuous operation, and a dashboard to watch it all happen.