Alejandro Rojas
Operator Guide · Chapter 02

The three layers

If you cloned the template, you're looking at twelve numbered directories and a few special folders, wondering what you actually do with them. This chapter is the map.

The harness has three layers. They sit on top of each other. You'll spend time in all three, but you'll spend the most time in the middle one.

Layer 1: The Vault

The substrate. A directory tree on a drive you own.

Twelve numbered categories represent the domains you run:

01-operations/ 02-finance/ 03-people/ 04-resources/ 05-legal/ 06-marketing/ 07-revenue/ 08-relationships/ 09-automations/ 10-tools/ 11-strategy/ 12-daily-log/

Plus two special directories:

_AI/ — Cross-domain analyses, model inventory, schedules _System/ — Drive management, cron scripts, system hooks

And one operating layer (the brain — Layer 2):

workspace/

That's it. Everything lives in one of these. Anything that doesn't fit goes in 12-daily-log/ for today and gets filed properly later.

What "the vault" looks like in practice

The vault is one root directory. Mine lives at /Volumes/T9/ — a 2TB external SSD permanently attached to a Mac Mini M4 base model. FileVault on, sleep disabled, auto-restart on power loss. About six hundred dollars for the machine plus a hundred and thirty for the drive. Yours could live anywhere — your laptop's home directory, an external drive, a NAS, a cloud-synced folder — but if you're going to run cron jobs, you need something always-on.

The location matters less than the discipline. The discipline is: every file you create as part of your operation goes inside the vault.

This rule sounds restrictive. It is. The restriction is what makes the harness work. When everything lives in one tree, AI tools can read across it, backups capture everything, and you can never lose anything because you don't remember which app you used.

Why numbered categories

Numbers force a sort order. Without numbers, alphabetical sorting puts "Legal" before "Marketing" before "Operations" — random from a workflow perspective. With numbers, you see your business in the order you think about it:

01-operations is what you do today. 02-finance is the money side. 03-people is who's involved. And so on.

The numbers also remove ambiguity. There is one place vendor invoices go. One place tax documents go. One place customer files go. No deliberation. The friction of "where does this belong?" disappears.

Layer 2: The Brain

The compression layer. A small set of living documents that read from the vault and represent what's true now.

Five files under workspace/:

These five documents are the heart of the system. They are the ones you maintain by hand (with AI help). They are also the ones your AI tools read at the start of every session to orient.

If you stop maintaining anything else in the vault, maintain these.

Why this layer exists

The vault holds source data: invoices, contracts, emails, transcripts, dashboard exports. The brain holds compressed state: what you've decided, what's blocked, what's important now.

The compression matters. A vault without a brain is a hoarder's basement — everything is there but nothing is findable, and the burden of knowing what's in it falls on you. A brain without a vault is a sticky note covered in deadlines that you can't verify.

The two layers work together: the brain compresses what's in the vault; the vault provides the receipts that back up the brain.

The discipline that makes the brain work

Five minutes at session end. BRAIN.md gets a 30-second update of what changed. CHANGELOG.md gets one short entry. MEMORY.md, PLAYBOOK.md, VOICE.md sit quiet for weeks at a time.

That's the whole maintenance burden. Five minutes a session.

Skip it, and the brain decays within two weeks. The vault still works (it's just files), but the compression layer becomes stale and you start re-deriving things you already knew.

Layer 3: The Harness AI

The agent layer. Local + cloud AI integrated at the substrate level.

The harness AI is not a chatbot you visit. It's a set of automations and assistants that live inside your operating system:

Local-first, cloud-when-needed

The harness AI is opinionated about which model handles which task:

The reason: local models are infinitely cheap and always available, but qualitatively weaker. Cloud models are higher quality but cost real money and add network latency. Each task goes to the model that fits.

What the harness AI does NOT do

It does not make decisions for you. It does not act autonomously without your knowledge. It does not "manage your life."

It does the work you used to do in your head: read the daily log, compress the state, surface the open loops, generate the brief. You read the output and decide what to do.

The harness keeps the decisions in your head and offloads the bookkeeping.

How the three layers interact

Here's how mine runs on a typical Tuesday:

6 AM

Cron runs morning-brief.sh on the Mac Mini. It reads yesterday's daily log for OPEN: lines, parses workspace/BRAIN.md for priorities, fetches yesterday's restaurant revenue, the weather, the inbox count. Local Ollama synthesizes five sections in about eight seconds. The brief lands in 12-daily-log/... and an iMessage hits my phone.

6:05 AM

I read the brief. Two hundred words. I know what matters today.

9 AM

I sit down. Open today's daily log — it already exists, with the brief at the top. Start working.

Throughout the day

Anything that doesn't have a home gets dropped in today's log with an OPEN: prefix.

End of session

I run /logs. It updates workspace/BRAIN.md, appends to CHANGELOG.md, finalizes today's daily log with a "Carry Forward" section.

6 AM tomorrow

Cycle repeats. Yesterday's OPEN: lines surface in tomorrow's brief.

Three layers. One operator. A system that compounds.

The next chapter shows you what the vault actually looks like and how to fit your domains into the twelve numbered categories.