// Transmissions — What We Shipped
If an agent writes the syntax, your job moves up a level: deciding the shape, and judging the result. Both are done in the vocabulary of Parts I to III. This page is how to use it.
| Delegate freely | Own yourself, always |
|---|---|
| Syntax, imports, boilerplate | Where the transaction boundary is |
| Builder and mapping code | What is shared between threads, and why it is safe |
| Test scaffolding | Which tests are unit, slice or integration |
| Config wiring | What the module boundaries are |
| Library API lookup | Which queries a request issues |
| Refactoring mechanics | What happens when it fails twice |
The pattern: delegate anything whose correctness the compiler or a test can check for you. Own anything whose correctness only shows up under concurrency, under load, or at 3am — because those are exactly the things that look fine in a diff.
Read generated code against this. Every item is a failure from the earlier parts, and each one is invisible unless you go looking.
Generated Java compiles and looks plausible; that is exactly the danger. These questions make the model state the things it usually leaves implicit, and they are the same questions a senior reviewer would ask you.
You are not checking the answer for facts you already know. You are forcing the mechanism into the open, where you can judge it against Parts I to III. An agent that cannot answer these has written code neither of you understands.
Not by writing code from memory — that is what the agent is for. You have learned it when you can do these without looking:
Java's reputation for verbosity was a complaint about typing, and typing is the part that has been automated. What is left is the part that was always the actual work: deciding what the objects are, who owns them, when they change, and what happens when something fails. Java is unusually good at making those decisions explicit — which is precisely why it rewards the person who understands the machine rather than the syntax.
Written for someone who has an agent for the syntax and needs the ideas instead. Nothing here is a code sample on purpose — if you can name the mechanism, you can ask for the code and judge what comes back.