Own Your Stack · Part 5
Structure beats intelligence: folder structures an AI can understand

There is an unglamorous truth about working with AI agents that never makes it into product presentations: my biggest performance jump did not come from a better model, but from a better folder structure.
The involuntary experiment
I ran the comparison involuntarily. On my old workstation — grown over years — projects sit next to downloads next to “temp2_final”. When an agent is asked to find something there, it guesses. Sometimes well, often not; every session starts with archaeology.
On the new notebook, the first documented decision was the folder structure. Since then, the same agent with the same capabilities finds everything on the first attempt — and can do things that were impossible before: “clean up the downloads” only works if it is written down somewhere where things belong.
The five building blocks
What concretely makes the difference — deliberately kept simple:
- A predictable base structure. For me, the PARA method: Projects (have an end), Areas (run indefinitely), Resources, Archive — plus a code directory with a clear split. Not because PARA is magic, but because any consistent rule beats every clever ad-hoc filing system.
- A README as house rules. In the root directory lives a file explaining the rules: what goes where, what the folders mean, how tidying works. Humans rarely read it. The agent reads it every time.
- Decisions as documents. Every load-bearing decision is a short, numbered document with the rationale and the rejected alternatives. The agent doesn’t have to guess why something is the way it is — it reads it and stays consistent.
- Runbooks for everything repeatable. Procedures that occur twice get written down the second time — by the agent itself. The third time it is routine instead of reconstruction.
- A memory with an index. The agent keeps persistent notes on projects, preferences, rules — with a table of contents it loads at the start of every session. It never starts from zero.
The common thread: all of it is text. No tool, no database, no subscription — text files in a git repository, readable by humans and machines.
Why this is the real AI preparation
The principle fits into one formula:
An agent can only operate what has an API — and only understand what has a structure.
The first is the technical half of AI readiness, the second the organizational half. And the second is the harder one, because it cannot be bought: naming conventions, a single source of truth per piece of information, documented processes. Companies know the problem as “knowledge lives in heads” — and for an AI agent, a head is unfortunately not a readable medium.
The good news from my rebuild: you don’t have to solve this in one big bang. Structure grows — every decision a document, every second procedure a runbook, every new folder according to the house rules. The agent even helps with it; mine writes the documentation I later follow.
The test for your company
A single question suffices as a baseline: if a new employee started tomorrow and nobody had time to onboard them — could they find their way using the documents on file? If yes, the company is closer to AI-ready than it thinks. If no: that is exactly where the work starts, and it pays twice — the next employee benefits just as much as the first agent.
Questions, objections, filing systems of your own? Write me — I answer personally.