Your software's meaning lives in its types.
The compiler proves the meaning true.
You bring a feature to a crew of AI agents.
One models it as constructs.
The others build it from the model.
One construct, one type, one file at a time.
No agent guessing allowed.
For decades, the best engineers argued that meaning belongs in the types:
Model the domain, make illegal states impossible to construct, and let a value's existence prove its own correctness instead of bolting validation on after the fact.
They were right. That didn't matter. Because project management runs on one rule it rarely says out loud:
We separate the cost of finishing the first task from the lifetime cost of what we build.
Make the first task look 75% faster, move the real cost into every month that follows, and call that delivery. That is what imperative procedural code inside a poorly typed architecture really is: not speed, but cost displacement. A loan drawn on day one and repaid for the life of the system in bug-interest toil.
AI changes that math. Radically.
Not by making the shortcut safe. By taking away the shortcut's only advantage.
The deferred-cost path had one thing to sell: visible first-day movement. It let the team arrive at "done" before the system had to prove anything. But now an LLM can read your field names, your variants, and your type structure en masse. It can help you name the domain, shape the cases, close the gaps, and build the modeled design at speed.
So the bad trade loses its cover story.
The disciplined path now gets the early movement the shortcut used to sell, without inheriting the hidden tax the shortcut always carried. You get the fast start and the durable architecture. The path they called slow and expensive becomes the one that ships cleanly, changes safely, and ages cheaply.
That is the smaller half of it.
The larger half is that a type is an instruction.
The same declaration that proves your code correct to the compiler now tells a model what is allowed to exist, and what is not. One structure carries two jobs at once:
- The constraint that stops a generator from inventing
- The context that tells it what you meant
Your types are no longer just implementation detail. They become the shared language between the compiler, the AI, and the next engineer who has to live inside the system.
That changes the center of gravity. Design, code, and documentation stop drifting apart as separate copies of intent. The domain model becomes the place intent lives. The compiler enforces it. The AI reads it. The engineer extends it.
The rigor that used to be good taste is now the thing that makes AI-built software worth trusting.
The SDLC was never about building. It is a coordination protocol for multiple humans at human speed: the requirements doc, the handoffs, the standup, the roles, all of it exists to keep work split across many brains from contradicting itself. Remove the need to split the work, and the apparatus is just overhead.
So this drops the apparatus. You own the product. A crew of specialized agents does the labor, each one allowed a single job:
- The operator is you. You hold authority and acceptance, you bring the feature, and you make the calls only you can make.
- The main agent orchestrates. It sends the request to the plan agent, receives the plan back, sets each construct's file target and the context a builder needs, dispatches the build agents, reviews every result, and diagnoses every block. It models nothing and writes no code.
- The plan agent turns the request into a validated plan. It works the construction worksheet, selects the one whitelist construct that carries each meaning from its card, and emits the plan through
tca_construction_plan. It writes no code. - The build agents build. Each renders one construct, of one type, into one file, from that construct's card. One agent per type per file, so a file holding three kinds is built by three agents in series. A build agent decides nothing; it transcribes the card's required form and leaves everything else alone.
Legality is proven where it is cheapest. An illegal construct cannot enter the plan, a build agent scoped to a single card cannot wander, and basedpyright and pytest prove what lands.
You make the calls only you can make. The walls the last era fought to tear down, dev from ops and the deeper one between the people who know the business and the people who build it, fall here for the same reason: one builder, holding the meaning, commands the whole line.
It works for a team, exactly as well. What it makes newly possible is one person owning a product at a scale that used to take a room, and the process to keep the room in sync.
You pull the repo, bring a feature, and run the loop. The starter app is a placeholder; the crew overwrites it with the system built from your plan, so you begin from a clean shape and end with your own. What is here today scaffolds the application. Templatizing the infrastructure beneath it, at cloud scale, is the next chapter.
The spec-driven tools split the work across a pretend team, one agent each playing analyst, PM, architect, scrum master: waterfall with robots. The benchmarks show the bill, slower than writing the code yourself and more tokens spent re-reading its own rules than doing the work. TCA has no manager agents, because there is no room of humans to coordinate. The split is by authority, and the construct boundary, not your patience, holds the line.
You build your whole domain from fifteen constructs. There is no sixteenth, and reaching for one is the single move the system will not allow. Each carries one meaning and rejects the shapes that bury it: the bare primitive, the if/elif ladder, the mapper, the stray helper.
Every shape it rejects is one of four mistakes: a meaning with no type to hold it, the same meaning kept in two places by hand, a type that means nothing, or one type trying to mean two things. There is no fifth. That is the whole test, and the constructs enforce it by their shape: a shape that fails it cannot enter the plan.
- You do not pay the model to redesign on every run. Your design is saved as the plan. A build agent reads one construct entry; it does not work out what a
Priceis again. - The boundary is free. An illegal construct fails validation at the plan tool, plain Pydantic, zero model tokens.
- The check is deterministic.
basedpyrightandpytestprove each file the same way every run, substrate not model, no tokens spent guessing. - It stops instead of thrashing. When a construct will not build, the run raises a block and tells you. It cannot spin for an hour down a dead path.
- You pay for the strong model only where it earns it. A capable model to plan with you, a cheap one for the near-mechanical build agents, no model at all for the boundary or the checker.
It is the good half of typed functional programming, domain-driven design, and a few older schools, pulled together and made to hold under one test. Two camps spent decades saying the domain's structure should come first. They were right, and ignored, because the systems that ran the work never read what they wrote. A model reads it now, and the gap they were marginalized for is the gap that costs you on every run.
git clone https://github.com/kylejtobin/tca && cd tca
uv sync- The whole idea, the one rule and the four ways it breaks:
docs/definition.md - Why the domain belongs in the running code now:
docs/programs-are-ontologies.md - Learn it by building:
docs/learning-path.md - The crew and the loop in full:
.claude/README.md



