The agentic SDLC, and the stage everyone skips
By Syed Fazle RahmanCo-founder, Bug0 · Building FactoryKit
Every vendor deck in 2026 redraws the SDLC with an agent in each box: agents plan, agents code, agents review, agents deploy. Look closely and one box is always thinner than the rest. Verification. A lifecycle is only as autonomous as its most manual checkpoint, and for most teams that checkpoint is still a human reading a diff.
Definition
The agentic SDLC (or ADLC, the agent development lifecycle) is the software development lifecycle reorganized around coding agents: humans define and prioritize work, agents implement it, and the pipeline itself carries the burden of proving each change is safe to merge.
From SDLC to ADLC
The classic SDLC exists because writing code was the expensive, error-prone middle of the process; every stage around it was built to protect the organization from that middle. Agents collapse the middle. Implementation gets fast and cheap, and the surrounding stages stop fitting.
The ADLC is the redesign. Intake comes straight from the tracker (FactoryKit picks tasks up from a Linear label). Implementation is an agent in a sandbox. And the interesting design question moves downstream: if code is written 10x faster but reviewed at human speed, you have not removed the bottleneck. You have moved it to review and made it worse.
The stage everyone skips
The industry is loud about throughput and quiet about regression risk. DORA’s research has said for years that elite delivery pairs speed with stability; the pairing is the point. Throughput without a stability mechanism is faster defect delivery.
We came to this conviction at Bug0, where we build automated QA, and the lesson transferred directly to agents: test suites pass while software breaks. An agent’s claim that a change works is an assertion. A recording of the change working is evidence.
A verification-first ADLC
- Checks as contract. Every change runs the repo’s own lint, build, and tests, with a fix budget (FactoryKit allows 3 attempts) before a human sees anything.
- Self-review. The agent re-reads its own diff against the task before packaging.
- Behavioral QA. UI changes get exercised in a real browser, and the session is recorded.
- Evidence on the PR. The recording and check results ship with the pull request, so review starts from proof rather than trust.
Under that design the human checkpoint gets cheaper instead of more loaded: reviewers watch the feature work, then read the diff with intent.
Designing yours
You can build this in-house. Uber’s internal pipeline is a good public reference for what that takes. Or install one: FactoryKit ships this ADLC as a working software factory on your own infrastructure, set up and run in by forward-deployed engineers.
FAQs
What is the ADLC?
The agent development lifecycle: the SDLC reorganized around coding agents doing the implementation. Humans own intake and review; the pipeline owns proof that each change is safe to merge.
How is the agentic SDLC different from DevOps?
DevOps automates delivery of human-written code. The agentic SDLC also automates the writing, which makes automated verification load-bearing rather than optional.
Does AI-written code need more review than human code?
It needs different review. Volume goes up, so per-change human scrutiny must get cheaper. That only works if machine verification, meaning checks and recorded QA evidence, runs before a reviewer looks.
How do you regression test agent-written changes?
Run the repo’s own checks on every change, add behavioral QA in a real browser, and attach the recording to the PR. If your suite is weak, strengthening it pays back twice: it sharpens the agent’s iteration loop and the reviewer’s confidence.
Can the review stage itself be an agent?
Partially. Agent self-review catches drift cheaply, but the merge decision stays human. The PR is the approval gate; the evidence exists to make that human decision fast.
About the author

Co-founder, Bug0 · Building FactoryKit
At Bug0, Fazle builds AI agents that test web apps end to end. He previously co-founded Hashnode and helped grow it into one of the web's largest developer communities. A front-end and UX engineer by training, he wrote Jump Start Bootstrap and Jump Start Foundation for SitePoint and has spent more than a decade building products for developers.
See a software factory run on your repos
A demo is a working session: your repos, a real task from your backlog, a finished pull request.
Book a demo