What you will learn What this methodology actually changes, and the fact that the bottleneck does not disappear — it moves.
It moves coordination from people to AI agents.
This is not about chopping sprints finer. As the previous chapter showed, that only raises the coordination ratio.
| With people | With agents |
|---|---|
| Planning meetings | none |
| Waiting for review | none (reviewed concurrently) |
| Context-switching cost | none (each has its own context) |
| Handover documents | none (the same workspace) |
| End of day, weekends | none |
Remove these and the lower bound of the cycle changes.
This part matters. The good things about agile carry over.
| Unchanged | Why |
|---|---|
| Short feedback cycles | they get shorter |
| Embracing change | it gets easier |
| Working output first | unchanged |
| Human judgement | more important |
That last row is the key one. People are not reduced — their role moves earlier.
| Agile | Hyper-agile | |
|---|---|---|
| Unit of work | a feature | a single issue (micro-sprint) |
| Cycle | 1–2 weeks | minutes to hours |
| The developer's output | code | intent |
| Bottleneck | human coordination | clarity of intent |
| Nature of code | an asset — it accumulates | a consumable — rebuild it if needed |
| Definition of done | review passed | tests passed |
Each row is the subject of the following chapters.
This is the easiest part to misread.
graph TD
A["Coordination bottleneck removed"] --> B["The next bottleneck surfaces"]
B --> C["How precisely can you say<br/>what you want built?"]Put in vague requirements and you get vague output very quickly. Faster speed means faster travel in the wrong direction too — it is an agent going just as hard in the wrong direction showing up at organisational scale.
So the human job changes:
| What people do | |
|---|---|
| Agile | write code. Review. Coordinate |
| Hyper-agile | define intent. Set the criteria for judging. Approve |
Before adopting the methodology, check one thing.
Are your tests dense enough to judge "done"?
Hyper-agile treats tests as the sole criterion for done. If that criterion is weak, you build the wrong thing quickly.
Adopt this methodology first in an organisation with no testing culture and you end up fast but with nobody able to judge quality. In that case, building the test discipline comes first.
No. What they do changes. Defining intent precisely, setting the criteria for judgement, and judging the results remain. And those can only be done by someone who knows the domain.
If anything, the value of domain knowledge rises. Only the relative weight of code-writing skill falls.
You do not have to adopt the whole methodology — individual pieces work on their own.
Starting with the first two is fine.
1. What is the one thing hyper-agile changes?
Who does the coordinating. It moves from people to AI agents. It is not about making sprints shorter.
2. Where does the next bottleneck appear once coordination is removed?
Clarity of intent. Vague requirements produce vague output very quickly. So the human role moves forward, from "writing code" to "defining intent and setting the criteria for judgement."
3. What must you check before adopting it?
Whether tests are dense enough to judge done. Hyper-agile treats tests as the sole criterion, so without a testing culture you get speed with nobody able to judge quality.
Now the three core concepts, one at a time. First, the unit of work → Micro-sprints
People coordinating: floor = how often people can gather → 2 weeksAgents coordinating: floor = how long the work itself takes → minutes to hours