Skip to main content
onext technology
AI April 17, 2026 - 12 min read

SDD + Agentic Orchestration: the combination that closes the Anthropic Managed Agents gap

Anthropic has just solved the infrastructure layer of AI agents. What its own documentation leaves in the team's hands — prompts, tools, context strategy and guardrails — is exactly what Spec-Driven Development standardizes. This is the architecture that connects the two layers.

Jordi García
Tech Lead at onext
Two software architects collaborating in a modern office with warm natural light, reviewing a specifications diagram connected to agentic orchestration flows on a large screen

On April 8, 2026 Anthropic launched Claude Managed Agents. It's not a new model. It's an infrastructure layer that solves three problems each team used to have to build on its own: sandboxing, orchestration and persistent sessions.

The immediate reaction from much of the ecosystem was to treat it as a shortcut. "I no longer need to build my own orchestration layer." That's true. But it hides the question that really matters: what happens with everything Managed Agents explicitly does not solve?

Anthropic's own documentation is transparent on this point. The service is "intentionally unopinionated" about prompt engineering, tool definition, context strategy, guardrails and agent failure modes. That remains the team's responsibility. And that "that" is precisely where most agents in production die today.

This is where Spec-Driven Development stops being one methodology among many and becomes the policy layer Managed Agents needs so as not to be a shortcut to breaking agents faster.

The current moment of agentic orchestration

Data from the Claude Managed Agents launch and 2026 enterprise adoption

Apr 8 Claude Managed Agents launch (beta)
~60% less typical latency to first token
>90% less worst-case latency to first token
5 responsibilities that remain in the team's hands
95% AI pilots with no measurable P&L impact (MIT)
18m → 76d collapse of re-architecture timelines when SDD comes into play

What Anthropic has just solved

Claude Managed Agents breaks the agent down into three independent components and offers them as a managed service:

🧠
Brain — Claude + harness

Stateless inference and orchestration. It decides which tool to use, when and with what inputs. Anthropic manages it for you.

Hands — sandboxes and tools

Isolated execution environments. Claude invokes execute(name, input). Containers only spin up when used, which is why worst-case time to first token drops by more than 90%.

💾
Session — persistent event log

Durable history outside the context window. It allows agents to be resumed with wake(sessionId) and long executions to be sustained without losing state.

This architecture is elegant. It decouples reasoning from execution the same way operating systems decoupled software from hardware decades ago. What matters for a CTO is that you now have production-ready infrastructure without having to build it. Lower latency, automatic recovery from failures, many-to-many scaling and long sessions without overflowing the context.

For teams that have spent months duct-taping sessions in Redis, spinning up containers by hand and patching orchestration between agents, this is a real leap.

What's important to understand: Managed Agents solves the infrastructure layer. It doesn't solve the decision layer. Confusing the two is exactly the mistake that makes 95% of enterprise AI pilots generate no measurable P&L impact, according to the MIT study we cite in why most LLM projects fail.

What Managed Agents explicitly does not solve

Reading the official documentation carefully, Anthropic lists five things that remain the responsibility of the team deploying the agent:

1 Prompt engineering

The harness is agnostic to the specific instructions you give Claude. If your prompt is generic, your agent is generic — with or without Managed Agents behind it.

2 Tool definition (tools, MCP)

Which tools you expose to the agent, with what contract and what semantics, remains your design. Managed Agents invokes them; it doesn't think them through for you.

3 Context strategy

When to compress the history, when to summarize, which events to keep. Persistence exists; deciding what to do with it is yours.

4 Guardrails and scope policies

What the agent can and cannot do, what validation applies before a destructive action, which circuit breakers stop it. Managed Agents doesn't opine — and it shouldn't.

5 Failure modes and acceptance criteria

How you know whether the agent's output meets the original business intent. If you don't define it, the agent meets the prompt — but not necessarily the task.

These five responsibilities are what separate an agent that "works in a demo" from an agent that generates measurable impact in production. And they are exactly what SDD standardizes.

Why SDD is the missing methodology layer

Spec-Driven Development, as we explain in detail in Spec-Driven Development: AI in controlled code, is not a tool. It's a way of elevating the specification to a source of truth above the code and, in this context, above the prompt.

When you map the five responsibilities Managed Agents leaves to the team against the components of SDD, the overlap is almost perfect.

Mapping SDD → responsibilities Managed Agents leaves to the team

Project constitution Guardrails, immutable rules, tool scope
Specification templates Structured prompts, acceptance criteria, tool contracts
Prompt playbook Reusable and versioned prompt engineering
Code-review flow for AI Output validation, failure modes, quality criteria
Context engineering Which events to keep, what to compress, which metadata to propagate

The operational reading is direct: the team that uses Managed Agents without a structured specification layer is building on the best available infrastructure but with no architecture. It works until it doesn't. And when it stops working, debugging in a persistent event log of a multi-stage workflow with no explicit quality criteria is exactly the kind of problem that consumes months.

It's the same principle we develop in multi-stage AI workflows 2026: the quality of the workflow depends on the quality of the initial specification and the context that flows between phases. The model is secondary. The platform is secondary. What makes the difference is the architecture of the process.

Combined architecture: SDD as the policy layer, Managed Agents as the execution layer

The clean way to think about this combination is to separate two layers that today most teams mix without realizing it:

Policy layer

SDD — Spec-Driven Development

Defines what the agent must do, under what rules and how it's validated.

  • Constitution: immutable project rules
  • Templates: specs, acceptance criteria, tool contracts
  • Playbook: versioned and auditable prompts
  • Review flow: output validation against the spec

The spec translates into prompts, tools and guardrails

Execution layer

Claude Managed Agents (or alternative)

Executes the how: sandboxing, orchestration, persistent sessions and failure recovery.

  • Brain: inference and decision harness
  • Hands: execution sandboxes and tools
  • Session: durable log and resumption
  • Scaling: multi-agent and many-to-many

This separation has an important practical benefit: it protects you from vendor lock-in.

One of the most serious criticisms of the Managed Agents launch is that migration isn't trivial. Session data lives in Anthropic's infrastructure, the harness format is specific to Claude and moving a production agent to another platform means rebuilding the orchestration layer.

If your policy layer lives in versioned specifications, tool contracts defined in a standard format and auditable acceptance criteria, the execution layer becomes replaceable. Managed Agents today, another platform tomorrow, an on-premise deployment with your own harness when a compliance requirement demands it. The spec doesn't change. What changes is only the engine.

The strategic insight: teams that adopt Managed Agents without a specification layer pay twice — once for the technical lock-in, once for the methodological lock-in. Teams that adopt it with SDD on top capture the benefit of the infrastructure without being tied to it.

Three cases where this combination changes the ROI

The abstract is better understood with concrete cases. Three patterns where the SDD + Managed Agents combination materially changes what a mid-market team can deliver.

1. Autonomous code-to-deployment with control points

The agent receives a product spec, breaks it down into a plan, generates the code, runs the tests, opens the PR and waits for human validation before the merge. Today, building this with your own orchestration means 6-8 weeks of plumbing. With Managed Agents, the plumbing disappears. What remains is the spec, the review criteria and the guardrails: exactly SDD.

Without SDD: the agent improvises at each phase, review becomes a human bottleneck and the ROI dilutes into rework. With SDD: the agent operates within explicit limits, review validates against auditable criteria and the team sustains -75% time per feature as a realistic benchmark.

2. Document processing with business validation

Legal or finance receive contracts, invoices or case files. An agent extracts, classifies, validates and feeds the internal systems. Managed Agents gives you the persistent session and the invocation of reading, OCR and ERP-writing tools. SDD gives you the criteria for which fields are critical, which exceptions require human intervention and how output quality is validated.

Without a business spec, the agent does what you technically ask it — but the result isn't reliable for a regulated department. With a spec, human validation concentrates on the exceptions that matter.

3. Internal product agents that cross domains

Research feeds a PRD, the PRD generates stories, the stories determine acceptance criteria, the criteria reach the implementation agent. A pipeline like this, with Managed Agents, is simple to set up. Without SDD, it produces artifacts that look complete but don't connect with the product's original intent. With SDD, each phase inherits the structured context of the previous one and traceability reaches all the way to the root spec.

Related reading: if this narrative connects with your stack, in context engineering: the discipline for teams with AI we develop the technical block of how context flows between phases, and in multi-stage AI workflows 2026 the three agentic workflow patterns that consistently appear in real implementations.

How to start: minimum SDD + orchestration stack in 30 days

If you're evaluating Managed Agents for a specific use case, the most expensive mistake isn't taking too long to adopt it. It's adopting it before you have the specification layer solved. The correct order is:

1
Week 1 · Write the use-case constitution

Immutable rules: what the agent can do, what it can't, which tools it can invoke, what data it touches, which actions require human approval. This translates into tool scope configuration in Managed Agents.

2
Week 2 · Define specification templates per phase

What input each phase expects, what output it produces, which acceptance criteria apply. The template is the contract the agent has to meet.

3
Week 3 · Connect the prompt playbook to the harness

Prompts stop being ad hoc text and become versioned artifacts in the repo. Each prompt references the spec that backs it. Managed Agents executes them but doesn't invent them.

4
Week 4 · Observability and review loop

Each execution leaves a trace in the session log and is validated against the template criteria. What fails feeds the next iteration of the spec, not of the prompt. That way learning accumulates iteration after iteration.

This minimum stack is reproducible. It doesn't require a full organizational transformation to start — it does require that someone on the team take explicit responsibility for maintaining the specs as the source of truth. It's exactly the role an AI Center of Excellence fulfills when it's well designed, and it's the core of onext AI-Accelerated Development: our methodology for industrializing AI development by combining SDD, context engineering and agent governance in a single system.

Why this window is short

Managed Agents isn't the end of the race. It's the start of a new phase. The next iteration of the product will include multi-agent coordination and self-evaluation, today in research preview. When those capabilities enter GA, teams that haven't solved the specification layer will deploy agents that coordinate with each other and self-evaluate against criteria no one has written in a structured way. The result will be a kind of agentic debt we haven't yet seen at scale.

The good news: the market isn't educated yet. Few vendors are explicitly positioning SDD as the policy layer over an orchestration platform. Thoughtworks included SDD in the Technology Radar but hasn't connected it with orchestration platforms. McKinsey talks about orchestration but not spec-driven. Anthropic provides the platform but is "intentionally unopinionated" about how you govern it. The methodological gap remains open.

The teams that cover that gap before the market closes it will be able to say, 12 months from now, that they arrived first at the combination that has already become standard. Those that don't will pay the bill of a brilliant infrastructure on top of an improvised methodology.

Managed Agents gives you the engine. SDD gives you the steering wheel. Driving without a steering wheel isn't going faster — it's going nowhere, faster.

Primary sources: "Claude Managed Agents overview" (Anthropic Docs, Apr 2026), "Scaling Managed Agents: Decoupling the brain from the hands" (Anthropic Engineering, Apr 2026), "Anthropic's Claude Managed Agents gives enterprises a new one-stop shop but raises vendor lock-in risk" (VentureBeat), "Agentic coding at enterprise scale demands spec-driven development" (VentureBeat), "Spec-Driven Development — Adoption at Enterprise Scale" (InfoQ), "The 95% problem" (MIT NANDA / State of AI in Business 2026).

Further reading: Spec-Driven Development: AI in controlled code | Multi-stage AI workflows 2026 | Context Engineering: the discipline for teams with AI | AI agents in production: the quality gap

onext methodology: onext AI-Accelerated Development is the methodology with which onext's AI Centers of Excellence implement SDD as the policy layer over agentic orchestration platforms (Managed Agents, LangGraph, in-house deployments) so that migration between engines is replaceable and control of the agent stays in the team's hands. Without stopping deliveries.

Jordi García
Written by
Jordi García
Tech Lead at onext

Jordi García is Tech Lead at onext. He works on bringing AI into governed production across development and product teams —with Spec-Driven Development, context engineering and human verification at every step— and authors onext's technical insights on the method, quality and cost of applied AI.

LinkedIn →

Are you evaluating Managed Agents or an agentic orchestration platform?

In 30 minutes we diagnose which use case is ready for agentic orchestration and design the SDD layer that sustains it. With replaceable infrastructure and team control. Without stopping deliveries.

See how we work

12 teams transformed. 0 sprints lost.