AI & Development April 17, 2026 8 min read

The Hidden Cost of Slicing: Why AI Just Broke Agile Math

Slicing an epic used to be obviously correct. With AI-assisted development, the coordination overhead of four features can exceed the time to build the whole thing. The old rules don't fit the new economics.

A tech lead I know ran an experiment last year. Two epics, comparable size. One he sliced into four features, assigned to four developers, tracked through the usual Agile ceremony. The other he gave entirely to one senior developer with Claude Code.

The sliced epic took 23 days. The single-owner epic took 6.

The sliced team held daily standups, opened four PRs, resolved three merge conflicts, wrote four design docs, coordinated across three Slack threads, and spent a full day integrating the features at the end. The single owner wrote one long-running branch, did one architectural review with the TL, one PR review at the end, and shipped.

The velocity chart told a story nobody expected: Agile’s assumption that slicing accelerates delivery is no longer automatically true.

This isn’t an argument against Agile. It’s an argument that the math underneath Agile has quietly changed — and the teams who notice first will move faster than the teams who keep slicing out of habit.

What Slicing Actually Costs

The case for slicing has always rested on parallelization. Four developers working on four features should ship faster than one developer working on four features sequentially. That math is correct when development time dominates coordination time.

Coordination isn’t free. Every slice carries overhead that stays roughly constant regardless of how fast the actual coding happens:

OverheadTime CostNotes
Branch creation and management15–30 minPer feature
Merge conflict resolution30 min – 2 hoursScales with parallel work
Code review coordination1–4 hoursPer PR, including wait time
CI/CD pipeline runs15–45 minPer deployment
Integration testing1–2 hoursAfter each merge
Context switching30 min – 1 hourPer focus change
Handoff meetings30 min – 1 hourPer feature

A four-feature epic might carry 18 hours of overhead before anyone writes a line of code.

In the old world, that was fine. If each feature took a week of actual development, 18 hours of coordination was a 10% overhead — clearly worth paying for the parallelization gains. Slicing made you faster.

The Math Broke Quietly

AI-assisted development collapsed development time by a factor of 2 to 10, depending on the task. The overhead stayed the same.

Consider the same four-feature epic. In the old world, development was maybe 160 hours (4 features × 40 hours each). 18 hours of overhead was noise.

With AI assistance and a competent engineer, those four features might take 16 hours total. Now the 18 hours of coordination overhead is more than the development time itself.

You sliced the epic to go faster. You went slower. You added two handoff meetings, four PR reviews with a day of wait time each, and three merge conflicts — and none of that was necessary, because one person with Claude Code could have shipped the whole thing in two days.

This is not a hypothetical. This is the reason some teams rolling out AI see underwhelming productivity gains: their process overhead swallowed the execution speedup.

The Single-Owner Epic

When does it make sense to put an entire epic on one developer? More often than you think.

The conditions:

  • Cohesive domain. All features touch related code and concepts. A new “reservation cancellation” epic that spans the UI, the API, the database, and the notification system is cohesive.
  • Low external dependencies. Nothing in this epic blocks another team or another squad. Nobody is waiting on an intermediate deliverable.
  • Clear requirements. The Epic has been validated. The Foundation is locked. The developer isn’t going to pivot three days in.
  • AI-compatible sizing. One developer with AI assistance can plausibly complete the whole thing in 1–2 weeks.

When those conditions are met, single-owner epics offer benefits that the sliced version can’t replicate:

  • Zero merge conflicts. One branch, one person, one merge.
  • Full context retention. The developer doesn’t hand off knowledge to anyone. They don’t forget. They don’t need to re-explain to a teammate at 4pm on a Tuesday.
  • Coherent architectural decisions. Every choice is made by the same mind holding the same mental model.
  • Faster delivery. No coordination delays. No waiting for reviewers.
  • Holistic review. One code review at the end is often more valuable than four shallow reviews — because the reviewer sees the whole shape.

The sliced version of the same epic spreads all of these benefits thin and pays for it in Slack threads.

What’s Still Required

The single-owner epic isn’t a license to skip the rest of the process. It replaces parallelization as the reason to slice, not quality gates. What stays:

  • Code review before merge. Same rigor. Just at the epic level instead of feature level.
  • Regular check-ins with the TL on design decisions. Weekly is usually enough.
  • PM validation in staging before production. Same as before.
  • Automated quality checks — architecture, security, linting, testing — at every meaningful checkpoint.

The only things you skip are the coordination artifacts that existed solely to manage parallel work: cross-feature handoff meetings, integration testing between features that are all in one branch, PR reviews for incremental slices that never shipped separately.

When To Still Slice

Slicing isn’t dead. It remains valuable for specific reasons that don’t go away with AI:

  • Timeline pressure. You need to show stakeholders progress incrementally. Shipping Feature 1 in week one buys political capital even if it’s not technically faster overall.
  • Risk mitigation. The epic has high uncertainty. You might pivot after Feature 1 learnings. Single-owner commits to the whole direction; slicing keeps options open.
  • Knowledge distribution. You need multiple people to understand the code. Siloed expertise is its own risk.
  • External dependencies. Another team is actively blocked on a specific feature and can’t wait for the whole epic.
  • Sizing. Even with AI, some epics genuinely exceed what one person can hold in their head.

The rule shifts from “slice by default, don’t slice only in exceptions” to “slice for business or risk reasons, not for parallelization by default.”

What This Does To Team Organization

The change in slicing economics cascades into how you structure teams:

Traditional ModelAI-Assisted Model
Multiple developers per epicOften one developer per epic
Slice to parallelize workSlice only for business or risk reasons
Daily standups for coordinationAsync updates, fewer blockers
Story points estimate effortStory points estimate complexity and risk
Sprint planning assigns storiesSprint planning assigns epics

This is not a plea for smaller teams. The team is the same size — it’s how work gets divided that changes. Designers, PMs, TLs, QA, staff engineers: all still essential. The shift is in how ownership of a deliverable is distributed.

The Cultural Fight

The hardest part of this transition is not technical. It’s cultural.

Scrum masters have been trained for a decade that slicing is always good, that smaller stories are always better, that parallelism is always the goal. Product owners measure velocity as “stories completed per sprint,” which implicitly rewards slicing even when slicing is wasteful. Engineering managers feel uncomfortable letting one developer “own” a large body of work, because it feels like risk concentration.

The pushback is predictable: “What if the one developer gets sick?” “What if the code quality suffers?” “What about bus factor?”

The honest answers:

  • If a developer gets sick mid-epic, the risk is the same as losing any team member mid-sprint. Mitigated by check-ins, design docs, and skill-based context injection, not by slicing.
  • Code quality usually improves in single-owner epics because architectural decisions are coherent. Sliced work is where bizarre cross-feature patterns creep in.
  • Bus factor is a real concern for institutional knowledge, not for individual epics. A pairing cadence or a TL review habit solves it without artificial slicing.

None of these answers will satisfy an Agile coach who built a career on the opposite assumption. That’s fine. The teams that ship faster are going to keep shipping faster, and the arguments will resolve themselves over eighteen months.

The Measurement Problem

Here’s a subtle trap: if you keep measuring teams by sprint velocity (stories completed per sprint), you’ll punish the teams that stop over-slicing.

A team that ships one epic in 6 days with one developer will show one completed story. A team that sliced the same work into four stories and took 23 days will show four completed stories. The velocity chart will reward the slower team.

This is why the framework recommends measuring outcomes, not activity:

  • Delivered value, not PRs merged.
  • Features in production, not story points completed.
  • Incidents avoided, not checks performed.
  • Quality of what shipped, not quantity of tickets closed.

If your org measures engineering by activity metrics, AI-assisted development will look like a regression on the dashboard even when it’s an improvement in reality. That’s the dashboard’s failure, not the team’s.

The Summary Your Team Needs

Three takeaways for the next planning meeting:

  1. Slice for business reasons, not for parallelization. The default answer is no longer “slice it” — it’s “ask if slicing adds value given the speed of the team building it.”
  2. Default to single-owner epics when the domain is cohesive. One developer + AI + a validated Epic often beats four developers + four branches + four PRs.
  3. Measure outcomes, not activity. If your metrics reward shallow slicing, fix the metrics before you fix the process.

None of this is anti-Agile. It’s Agile math catching up with the fact that the coding part got 10x faster while the coordination part didn’t.

Why this matters for specs and the AI Cascade Effect →

The full three-layer playbook →


The best product teams in 2026 will look smaller, own more, coordinate less, and ship faster. Not because they got rid of process — because they got rid of the process that was only ever there to manage the problem AI just solved.

JM

John Macias

Author of The Broken Telephone