I stayed up late reading Adam Dymitrukâs original article on Event Modeling. The first time through, it didnât fully click. But the next day, something shifted. I couldnât stop thinking about it. By evening, it hit me:
If slicing the system is done using these diagrams, if we cut it down correctly, and if the slices are truly independent, this solves most of the problems we face on a fundamental level. Can this actually work?
That was the moment everything changed for me.
For years, Iâd seen the same architectural sins repeated everywhere - modules far too big, coupling running wild, system design far too shallow. I knew what good looked like, but I had no blueprint to share. Just gut feeling. Just experience that couldnât scale beyond me.
Event Modeling gave me the instruction manual Iâd been searching for.
And now, as AI agents flood into software engineering, Iâm watching everyone make the same mistake: they think faster coding means faster shipping. It doesnât. And if you donât understand why, youâre about to waste a lot of time and money.
Brooksâ Law Doesnât Care About Your AI
Frederick Brooks told us in 1975: âAdding developers to a late project makes it later.â
Weâve known this for nearly 50 years. Itâs a fundamental rule. Yet somehow, when AI agents entered the picture, everyone forgot. How come?
The promise is seductive - agents code faster than humans, so if we just add more agents, weâll ship faster. Right?
Wrong.
The problem was never coding speed. It was coupling.
When your system is tangled - when modules share state, when changes ripple unpredictably, when one teamâs work blocks anotherâs - every new person you add creates more coordination overhead. More meetings. More merge conflicts. More âwait, whoâs working on that?â conversations.
Brooksâ Law kicks in not because humans are slow, but because badly designed systems create coordination tax that scales faster than productivity.
And hereâs the kicker: AI agents donât magically fix coupling. They make it worse.
At least humans have Slack channels, hallway conversations, and the ability to say âhey, Iâm touching that file too - let me know when youâre done.â Agents donât have that informal communication layer. They just execute. And when two agents step on each otherâs toes in a coupled codebase, you get chaos. And if youâve not been living under a rock, you ran into this in one of your PoCs most probably.
If you canât add developers and go faster, you wonât get velocity from agents either.
Weâre Still Writing Code Like Itâs 1960
Let me be blunt: weâre still putting human thought into text files, line by line, the same way programmers did in the 1960s.
This made sense when humans were the bottleneck. When typing speed and syntax knowledge mattered. When â10x engineersâ were the ones who could hold the most complexity in their heads.
But that era is over.
You canât outpace an agent.
No way. Not going to happen. They will code faster and better than you. I donât write much code anymore manually, and in five years, I donât think most engineers will either. Itâs not a crucial skill anymore.
The hard part of engineering was never writing the code. It was solving the right problem.
And solving the right problem is a human problem. Because humans are terrible at articulating what they actually need. Requirements are vague. Language is imprecise. Business stakeholders say one thing and mean another.
AI canât solve unclear problems. It can only execute clear instructions.
So the real question isnât âhow do we code faster?â Itâs âhow do we get clear on what to build, so the AI can actually build it?â
Thatâs the shift. From writing code to directing the new workforce - human and AI alike.
The Missing Instruction Manual for Modularity
Everyoneâs suddenly talking about modularity now that AI is here, as if itâs a new concept.
Iâve been talking about this every single day for two years.
Modularity has always mattered. The problem is, no one ever told you how to do it. What is a âmoduleâ? How do you cut boundaries? Where do you draw the lines? How big or small can/should it be?
For most teams, itâs gut feeling. Experience. Trial and error. And it doesnât scale.
Event Modeling - specifically, the concept of slices - gives you the blueprint.
A slice is a small, independent unit of functionality. It has clear inputs, clear outputs, and no hidden dependencies. You can hand a slice to a developer (or an agent) and they can build it without needing to understand the entire system.
This is what kept me up a whole night when I understood it. I couldnât sleep. It was groundbreaking.
Hereâs why slices work:
- Clear boundaries: True independence. No shared state. No coordination tax.
- Simple rules: Anyone can follow them. You donât need a PhD in system design.
- Perfect for AI: Agents have the same cognitive limits as humans. You canât throw an entire codebase at an agent and expect it to land. Itâs overwhelming. But a slice? That fits in context. Thatâs executable.
Slices are the answer to modularity that the industry has been handwaving about for decades.
âNeed it done faster? Just add more people.â
Every project manager has said this at some point. And every engineer has rolled their eyes, because we know it doesnât work.
But with slices, it actually does.
When slices are truly independent - no shared state, no tangled dependencies - you can parallelize. You can add more developers. You can add more agents. And you actually get velocity.
Because thereâs no coordination tax. One person (or agent) working on Slice A doesnât block or interfere with someone working on Slice B.
This is the factory floor model applied to software.
In manufacturing, machines took over the heavy lifting. Humans shifted to controlling the machines - setting them up, designing the workflows, making sure the output was right.
Weâre seeing the same thing now in software engineering.
But just like in a factory, you canât hit a button and expect a finished, sellable product to come out the other side. The machines need clear instructions. Careful preparation. Design.
Thatâs what Event Modeling provides. The design. The instructions. The blueprint that makes parallelization possible.
The Three-Way Communication Protocol
Event Modeling isnât just a diagram format. Itâs a communication tool that works across three dimensions:
1. Human-to-Human
Event Models bring business stakeholders and engineers into alignment. You stop arguing about how to build something and start clarifying what needs to happen.
The model reads like a story. If the story doesnât make sense, the system wonât work. And anyone - technical or not - can spot gaps in the story.
2. Human-to-AI
This is where it gets powerful.
My workflow today looks like this:
- Model the slice using Event Modeling
- Generate the code skeleton using static code generation
- Use Given-When-Then scenarios as inline comments - these become the guardrails for AI
- Let the AI (like Claude Code) implement the business logic within those guardrails
The Given-When-Thens arenât just tests. Theyâre instructions. They tell the AI exactly what the system should do in each scenario. And because the slice is small and focused, the AI doesnât get lost.
3. AI-to-AI
Hereâs where it gets really interesting.
Iâm using AI to do the Event Modeling itself now. I feed it a transcript from a requirements meeting, or I give it a legacy codebase, and I ask it to generate the Event Model.
The AI does a first pass - usually 60-70% accurate. Then humans come in to verify, correct, and fill in the missing details.
Once the model is validated, another AI agent takes over and generates the new code.
This is a perfect blueprint for legacy system modernization. And itâs faster than anything Iâve seen before.
But it only works because the Event Model provides structure. Without that structure, youâre just asking AI to guess.
The Real Problem Was Never the Code
Let me say it again: humans are terrible at articulating what they need.
Requirements are âwishy-washy.â Language is imprecise. Business stakeholders think they know what they want until you start building it, and then everything changes.
This is why so many projects fail. Not because the code was bad, but because we built the wrong thing.
AI doesnât solve this problem. AI canât read minds. It can only execute clear instructions.
Focus on the WHAT, not the HOW.
If the what is clear, the how doesnât matter. And sooner or later, AI will handle the how without human intervention.
But the what? Thatâs still on us.
Event Models force that clarity. They make you articulate the problem in a way thatâs precise enough for an AI to execute.
And when you read an Event Model, it should make sense as a story. If something feels off - if thereâs a gap, if the sequence is weird, if an event doesnât belong - you catch it.
You donât need to be technical to validate a model. You just need to ask: Does this story make sense?
Thatâs a skill that needs to be trained. Itâs not automatic. But itâs learnable. And itâs the skill that will matter most in the next five years.
Where Weâre Headed (5 Years Out)
I donât think weâll be writing much code in five years. Iâm barely writing any today.
The role that survives - the role that thrives - isnât the one writing code line by line. Itâs the one solving the right problem and directing the AI workforce.
Architects, team leads, and engineers are shifting from coders to:
- Modelers and validators: Creating and verifying Event Models that become the blueprint for agents
- Editors of AI-generated models: Reviewing what the AI produces and filling in the gaps
- Guardrail designers: Writing the Given-When-Thens that keep agents on track
Juniors are struggling to break in because the grunt work - the âjust write this functionâ work - is disappearing. The new baseline skill is knowing how to chunk problems into slices, verify models, and orchestrate agents.
And honestly? Thatâs a better use of human intelligence anyway.
The Opportunity (and the Warning)
Everyoneâs suddenly talking about modularity because of AI. But most people are getting it wrong.
They think modularity is just about âbreaking things into smaller pieces.â Itâs not. Itâs about cutting boundaries in a way that eliminates coupling. And if you donât understand how to do that, adding agents just creates more chaos.
The companies that win in the next five years will be the ones who:
- Learn to slice systems correctly
- Communicate clearly across business and engineering
- Direct their AI workforce with precision
The companies that lose will be the ones who:
- Think faster coding equals faster shipping
- Throw agents at coupled codebases and wonder why nothing gets better
Brooksâ Law is still true. Coupling still kills velocity. The only difference now is that the consequences come faster.
The New Industrial Revolution Is Here
In manufacturing, machines took over the heavy work. Humans didnât disappear - they shifted to controlling the machines.
The same thing is happening in software now.
Event Modeling is the control interface for your AI workforce. Itâs how you tell the machines what to build. Itâs how you verify they built it right. Itâs how you coordinate multiple agents without them stepping on each other.
The future isnât about writing code faster.
Itâs about solving problems better.
And for that, you need a blueprint.
Join the Agentic Engineer Program
Apply Spec-Driven Development Hands-On - Event Modeling, Event Sourcing, and AI Engineering with autonomous agents.
Book a Call Today
Want to talk through how Event Modeling could work for your team or project? Letâs have a quick, no-pressure conversation.
