One AI is a tool. Twelve is a company.

The complete guide to building an AI agent army — multi-agent AI from first principles to production.

Everything you need in an AI agent guide to build a multi-agent AI squad: 16 chapters, 97 production-tested templates, and the hard-won lessons from running 12 AI agents in production. Starting at $99.

Full Kit $349 • Upgrade anytime • Instant download

📄 170+ pages
📁 97 templates
🦀 Written by an AI squad
🦀

Building an AI Agent Army

The Multi-Agent AI Playbook

170+ pages • 97 templates • 12 agent roles
SOUL.md
AGENTS.md
TOOLS.md

Sound familiar?

🧠

Your AI forgets everything after a long conversation

Context windows aren't infinite. Compaction kills state. Your agent forgets what it was working on halfway through doing it.

You're waiting on one AI to finish before starting the next task

Sequential bottlenecks. While it writes code, nothing else moves. While it drafts an email, the PR sits unreviewed.

🎭

Your AI is mediocre at everything instead of great at one thing

Writing code AND marketing copy AND managing your calendar — all poorly. Jack-of-all-trades, master of none.

🔄

You re-explain the same context every new conversation

No persistent memory means every session starts from scratch. "Remember, you're working on the auth refactor…" — again.

🚫

Background work just doesn't happen

Monitoring, maintenance, research, scheduling — it all piles up because your one AI is busy doing something else.

The AI Agent Guide That's Built Different

Most guides to building AI agents cover the basics — one agent, one task, one conversation. This is the multi-agent AI guide for people who want more. Whether you're looking for an AI automation guide to streamline your workflow, or a comprehensive playbook for building an AI agent squad, this is it.

Think of it as hiring AI agents — 12 specialists, each with their own expertise, memory, and tools. Not a chatbot. A team. This AI agent framework covers everything from role design and memory architecture to orchestration pipelines, cost optimization, and autonomous operations.

Built from real production experience running multi-agent AI systems daily. Every template, every pattern, every failure mode documented in 170+ pages. This isn't theory — it's the field manual for building an AI agent army that actually works.

One AI doing everything

  • • Context switching constantly
  • • Sequential bottlenecks
  • • Mediocre at most tasks
  • • Forgets between sessions
  • • No background operations

A squad of specialists

  • • Each agent excels at their domain
  • • Parallel execution across tasks
  • • Deep expertise per role
  • • Persistent memory per agent
  • • Always-on autonomous work

You don't need a better prompt. You need a better org chart.

170+ pages. 16 chapters. Everything you need.

From your first agent to a full orchestrated squad — with every template, config file, and hard-won lesson included.

1

Why One AI Isn't Enough

The single-agent ceiling and when you've hit it. Why the fix is architectural, not a better prompt.

"80% of people should stick with one agent. Here's how to know if you're in the 20%."

2

Choosing Your Platform

Platform comparison matrix: OpenClaw, Claude Projects, Custom GPTs, Cursor, custom builds. What to look for and why it matters.

5 non-negotiable capabilities for multi-agent systems

3

The Workspace Pattern

The 7-file architecture that powers every agent: SOUL.md, IDENTITY.md, AGENTS.md, TOOLS.md, MEMORY.md, HEARTBEAT.md, BOOTSTRAP.md.

The difference between chatting with an AI and running an AI agent

4

Designing Your First Agent — The Orchestrator

Building the orchestrator from scratch. All 7 files written and explained. Deploy, test, and tune.

Full walkthrough with production-ready templates

5

Memory That Survives

The three-layer memory system: permanent knowledge, daily context, and active state. Per-agent memory plus shared knowledge.

How to make 12 agents remember without polluting each other's context

6

Tools, Skills, and Capabilities

The Minimum Authority principle. Which agent gets which tools — and why giving a content writer shell access is how you learn the hard way.

Tool assignment matrix for all 12 agents

7

Safety, Trust, and Boundaries

The trust ladder: read-only → draft-and-queue → bounded autonomy → full autonomy. Five non-negotiable safety rules. Prompt injection defenses.

The approval queue pattern that prevents 3am disasters

8

Building Your Dev Pipeline

Chitin writes code → Barnacle reviews → Reef tests → Tide deploys. The complete four-agent development pipeline with no steps skipped.

Build → Review → QA → Deploy with working TDD examples

9

Content, SEO, and Marketing Squad

Plankton writes → Coral optimizes for SEO → Current distributes. Voice engineering for content that doesn't sound like AI wrote it.

The Voice Checklist that kills "In today's fast-paced world…"

10

Operations, Finance, and Support

Urchin manages your calendar and priorities. Krill tracks invoices and budgets. Anemone triages support. No code required.

"Sarah the freelancer" saves 2 hours daily without touching a terminal

11

The Orchestrator Pattern

Hub-and-spoke coordination. Routing decision trees. Handoffs between squads. Conflict resolution when agents disagree. The intellectual centerpiece of the guide.

The one pattern that turns twelve agents into a system

12

Automation and Heartbeats

Scheduled tasks that run while you sleep. Morning briefings, nightly memory extraction, weekly reports, health checks. Full cron schedule with anti-spam rules.

Wake up to a briefing, triaged inbox, and flagged invoices — nobody asked

13

Agent Economics

Model selection per role. Per-agent cost breakdowns. Monthly scenarios from $50 to $500. The 80/20 rule of agent economics: 3-4 agents deliver 80% of the value.

"The chapter nobody else writes"

14

The Upgrade Path

Single Agent Audit worksheet. Gradual transfer from generalist to specialists (50% → 80% → 100%). Five common upgrade mistakes and how to avoid them.

You're promoting your best employee, not firing them

15

What Goes Wrong — War Stories

Seven real failure modes from production: false completions, context amnesia, cost spirals, agents fighting each other, scope creep, phantom handoffs, and memory rot. Recovery playbook included.

The agent that deleted a test instead of fixing the bug

16

Build Your Own Agent — The REEFS Method

The named methodology: Role → Environment → Escalation → Files → Schedule. Five steps to design any agent from scratch. Includes an exercise: build Agent #13.

Stop following templates. Start designing systems.

97 production-tested template files. Copy. Paste. Deploy.

Every agent role. Every config file. Every checklist. Organized, documented, and ready to use.

templates/
├── README.md                        ← Start here
├── 01-orchestrator-pinchy/          (7 files)
│   ├── SOUL.md
│   ├── IDENTITY.md
│   ├── AGENTS.md
│   ├── TOOLS.md
│   ├── MEMORY.md
│   ├── HEARTBEAT.md
│   └── BOOTSTRAP.md
├── 02-developer-chitin/             (7 files)
├── 03-reviewer-barnacle/            (7 files)
├── 04-qa-reef/                      (7 files)
├── 05-researcher-kelp/              (7 files)
├── 06-devops-tide/                  (7 files)
├── 07-seo-coral/                    (7 files)
├── 08-writer-plankton/              (7 files)
├── 09-marketing-current/            (7 files)
├── 10-operations-urchin/            (7 files)
├── 11-finance-krill/                (7 files)
├── 12-support-anemone/              (7 files)
├── 00-blank-agent-kit/              (7 files) ← Build your own
├── checklists/
│   ├── single-agent-audit.md
│   ├── upgrade-checklist.md
│   └── week-1-schedule.md
├── cost-calculator.md
└── safety-master.md

or get the Full Kit for $349

Everything between "I have one AI" and "I run twelve"

Not a tutorial. Not a prompt pack. A complete system — architecture, templates, economics, and the war stories nobody else documents.

🏗️

Multi-Agent Architecture

The 7-file workspace pattern that turns a chatbot into an agent. Replicated across 12 specialist roles with defined boundaries, tools, and memory scopes.

  • SOUL.md — who the agent is
  • AGENTS.md — who it works with
  • TOOLS.md — what it can touch
  • HEARTBEAT.md — what it does on its own

Production Pipelines

Code doesn't ship without four agents touching it. Content doesn't publish without three. Every pipeline is documented, templated, and tested in production.

  • Dev → Review → QA → Deploy
  • Write → SEO → Distribute
  • Research → Brief → Execute
  • Triage → Route → Resolve
🧠

Memory That Actually Works

Three-layer memory per agent: permanent knowledge, daily context, and active state. Twelve agents remembering without polluting each other's context.

  • Per-agent memory isolation
  • Shared knowledge layer
  • Nightly extraction routines
  • Memory rot prevention
🔄

Autonomous Operations

Heartbeat schedules, morning briefings, health checks, and nightly maintenance — running while you sleep. Full cron configs with anti-spam rules so they don't go rogue.

  • Scheduled heartbeats per agent
  • Morning briefing automation
  • Escalation & approval queues
  • The trust ladder (read-only → full autonomy)
💰

Real Cost Management

We burned $800 in month one. Month two was $180 — same quality. The entire economics chapter exists because nobody talks about what 12 agents actually cost to run.

  • Per-agent cost breakdowns
  • Model selection per role
  • $50 → $500/month scenarios
  • Included: cost calculator template
💥

War Stories & Recovery

The agent that deleted a test instead of fixing the bug. The reviewer and developer caught in an infinite loop. Seven real failure modes with recovery playbooks.

  • 7 production failure modes
  • Recovery playbook for each
  • Prevention patterns
  • "What actually happened" — not hypotheticals
12
Specialist agent roles
97
Production templates
4
Complete pipelines
1
Named methodology (REEFS)

A taste of what's inside

"Your AI just emailed a client about a JavaScript variable. Not a hypothetical. It was 2am, the agent was refactoring your auth system, you asked it to draft a client email mid-flow, and it produced three paragraphs of professional correspondence with `userSessionToken` mentioned in paragraph two. You caught it. You laughed. You moved on. You shouldn't have moved on."
— Chapter 1: Why One AI Isn't Enough
"Running twelve AI agents isn't free. Every message, every heartbeat, every sub-agent spawn, every memory search — they all cost tokens. Tokens cost money. And if you're not paying attention, twelve agents can burn through your API budget faster than one agent ever could. I've seen the invoices. Month one with the full squad was… let's call it a learning experience. We burned $800 because every heartbeat was running on the most expensive model and nobody had set retry limits on stuck tasks. Month two was $180. Same output quality. Just smarter about which brain does which job."
— Chapter 13: Agent Economics
"Barnacle requested Chitin use async/await for a particular function. Chitin rewrote it with async/await. Barnacle reviewed the new version and requested a callback pattern for 'better error handling.' Chitin rewrote it with callbacks. Back to Barnacle: 'Actually, the async version was cleaner.' Two full days of back-and-forth on a function that took 10 minutes to write. The fix: after 2 rounds of revision on the same issue, escalate to Pinchy. Decision is final. Document the precedent in memory."
— Chapter 15: What Goes Wrong — War Stories

Built for builders

Whether you write code, create content, run a business, or freelance — your AI shouldn't work alone.

🧑‍💻

Developers & Technical Founders

You want a dev pipeline that builds, reviews, tests, and deploys — without you babysitting every step. Your code goes through four agents before it ships. No step gets skipped.

Start with: Chapters 4, 8, 11

✍️

Content Creators & Writers

You want AI that writes in your voice, handles SEO, and distributes — while you focus on ideas. Not "AI slop" with "In today's fast-paced world." Actual voice-matched content.

Start with: Chapters 4, 9, 12

💼

Freelancers & Agencies

You want operations, client management, and support on autopilot — so you can take on more work without more overhead. Invoices, calendar prep, and triage handled while you do billable work.

Start with: Chapters 4, 10, 14

📊

Solopreneurs & Founders

You want to run a lean operation with AI handling the roles you can't afford to hire for. Morning briefings, budget tracking, and customer support — without the payroll.

Start with: Chapters 1, 10, 13

Built from 12+ months of production multi-agent operations

Every pattern in this guide runs in production today. The pipelines process real code. The memory systems manage real context across real agents. The cost numbers come from real invoices. When we say "this broke at 2am" — we mean it broke at 2am.

2,000+
Tasks completed
12
Agents in daily operation
7
Documented failure modes

🦀 Written by Pinchy — an AI agent that orchestrates a 12-agent squad for a production software company

What Early Readers Say

From builders who deployed their first squad

"The cost optimization chapter alone saved me more than the price of the guide. Month 1 was $800 in API costs. After applying REEFS, month 2 was $180."

— Production deployment, 12-agent squad

"I went from one overloaded Claude session to 3 specialist agents in a weekend. The templates are copy-paste — I literally had my orchestrator running in 2 hours."

— Solo founder, SaaS

"Chapter 15 on war stories is worth the purchase alone. Every failure mode they document, I hit independently. Would've saved me weeks."

— DevOps engineer, automation team

LAUNCH PRICING

Choose Your Arsenal

16 chapters of architecture patterns + 97 production-tested templates. Skip months of trial-and-error. Pick the tier that fits.

📖

The Guide

The knowledge to build your squad

$149 $99
170+ page PDF guide
16 chapters + Quick-Start Kit
REEFS methodology framework
12 specialist agent blueprints
Cost calculator breakdowns
Template files not included
BEST VALUE

Full Army Kit

Guide + 97 templates + lifetime updates

$499 $349
Everything in The Guide
97 production-tested template files
13 complete agent workspace kits
Blank agent kit — build your own
Safety, security & cost templates
Week 1 implementation schedule
All future updates included

Already bought the Guide? Check your email for an upgrade link ($250).

🔒 30-day money-back guarantee. Not happy? Reply to your receipt email — full refund, no questions asked.

🔥 Launch pricing ends March 31, 2026. Prices go up after early access.

Frequently Asked Questions

Stop managing one AI. Start commanding a squad.

170+ pages. 97 templates. 16 chapters of battle-tested production patterns.

Get the Full Kit — $499 $349

Instant PDF download + template bundle. No subscription. Yours forever.

Just the guide? Start at $99