An agentic architect decides who is in control at every step. Some steps belong to the model, because they need judgment. Others belong to code, because they need to be right every time. A few belong to a person, because a mistake there is expensive or cannot be undone.
Most agent projects fail at that line, not in the prompt. The model gets a decision it should not have, or code tries to handle ambiguity it cannot. This newsletter is about drawing the line well.
01
Control flow
A fixed workflow or a model that chooses its next step. The most expensive decision to change later.
02
Tools and permissions
What the agent may call, with which arguments, and what it may never touch.
03
Verification
Who checks the output. The model that wrote it is the worst possible judge.
04
Human gates
Which actions wait for a person: payments, deletions, anything a customer sees.
05
Memory and context
What the agent remembers between steps and what it has to be told again.
06
Budgets and logs
How many steps, tokens and euros a run may use, and the record of what it did.