Preparing slide viewer…
This slide deck could not be displayed. Open the PDF directly.
Loading PDF…
Anthropic’s AI-Native SDLC playbook makes a useful provocation: once agents compress implementation time, code is no longer the centre of gravity. The slowest and riskiest parts of delivery move outward - into intent, review, governance, deployment, and learning from production.
The attached deck is a practical reading of that argument. Its central point is not that every delivery decision should be automated. It is that the work surrounding code must become as explicit, executable, and observable as the code itself.
The deliverable is a connected chain of artifacts
An AI-native SDLC needs more than a faster way to open pull requests. It needs a trail that the next person - or agent - can read without reconstructing decisions from chat history.
Start with intent. Capture what is wanted, why it matters, the constraints, and open questions in version control. Turn that into a reviewed specification, then an implementation plan, then a diff, tests, review findings, and an operational record. Each artifact should be both human-readable and machine-actionable.
This is why a short, maintained repository guide can matter more than a large prompt. It gives an agent the same kind of local context that a new team member needs: architecture, commands, conventions, and known failure modes. The MCP/API boundary follows the same discipline: durable system contracts should sit beneath agent-facing convenience layers.
Keep human judgment at the control points
The interesting shift is not from human control to no control. It is from reviewing every action to deciding which actions require human judgment.
That means encoding ordinary, repeatable constraints close to execution. Skills can provide scoped guidance. Hooks can block unsafe operations. Evaluations can test outcomes continuously. Pull-request review then becomes a place for design, risk, and exceptions rather than a queue for reading every generated line.
The order matters. A team that asks agents to move faster without improving its controls simply moves the queue to security review, release management, or incident response. A team that makes every gate automatic without preserving accountable approval can create a different failure: faster, less explainable mistakes.
Treat evaluation as part of implementation
The strongest idea in the playbook is the feedback loop. A useful check is not a ceremonial quality gate at the end of the sprint; it is a repeatable signal that can guide the next run.
For engineering work, that usually means a layered approach:
- Fast, deterministic checks for formatting, types, policy, and known regressions.
- Scenario-based evaluations for the decisions where output quality matters.
- Human review for material risk, ambiguous trade-offs, and controls that cannot be reduced safely to a rule.
- Production signals that become new tests, constraints, or intent when a control band is breached.
That final step is the difference between using an agent and operating an agentic system. An incident should improve the system’s next decision, not merely close a ticket.
Start with one loop, not a transformation programme
The deck deliberately avoids a maturity-model fantasy. Pick one repeated handoff that currently loses context or creates waiting time. Make the input artifact explicit, add the minimum controls around it, define the evidence that tells you it worked, and retain a named human owner for the decision.
For this site, that looks like a content contract, a narrow implementation plan, targeted validation, and a production build rather than an open-ended agent instruction. The same pattern scales: make the next action legible, make the control executable where possible, and make the feedback durable.
The goal is not zero human keystrokes. It is to reserve human attention for the points where judgment changes the outcome.