Claude Managed Agents is Anthropic's vertically integrated agent stack, a managed harness that runs Claude models only, while Augment Cosmos, a unified cloud agents platform, routes each turn across Anthropic, OpenAI, AWS Bedrock, Google Vertex AI, and open-source models through its Prism layer. That single difference drives model dependency, routing breadth, and the cost of leaving later.
TL;DR
Claude Managed Agents provides a fully managed environment for Claude, including configurable tools, MCP servers, skills, sandboxed execution, and multi-agent orchestration, billed at $0.08 per session-hour plus tokens. Cosmos runs agents across multiple model providers on one platform with per-turn routing. Choose Managed Agents if you are committed to Claude and want Anthropic to operate the harness; choose Cosmos if model-switching costs and shared team context matter most.
Why This Comparison Matters Now
I spent two weeks running agent workloads through both stacks, and the same three architecture questions kept surfacing: which models you can reach, who operates the harness, and what it costs to leave. Anthropic's answer is a fully managed harness that bundles five beta APIs, managed sandboxes, and credential plumbing with Claude-only model access. Augment's answer is a platform where Prism routes across several model providers, backed by a Context Engine that reads entire repositories through semantic dependency-graph analysis.
Procurement caught up to this in early 2026. Reviews that used to stop at seat count now also consider model dependencies and token architectures as cost and risk factors. Gartner's June 2026 guidance projects that AI coding costs will pass the average developer salary by 2028 as token consumption climbs, and recommends routing high-frequency work to smaller models while reserving frontier models for complex tasks. That recommendation is exactly what a model routing layer exists to automate. This piece works through both stacks on architecture, pricing, certifications, retention, and migration, so you can score them against your own constraints.
The Agentic SDLC
How teams like Stripe, Ramp, and Uber move from solo coding agents to a coordinated, team-level system.

What Claude Managed Agents Ships

Claude Managed Agents launched in public beta on April 8, 2026, gated behind the managed-agents-2026-04-01 beta header. Anthropic describes it as a fully managed harness for running Claude as an autonomous agent with secure sandboxing, built-in tools, and server-sent event streaming. The harness is built from five beta APIs.
| API | Function |
|---|---|
| Files API | Upload and manage files across multiple API calls |
| Skills API | Create and manage custom agent skills |
| Agents API | Define reusable, versioned agent configurations |
| Sessions API | Run stateful agent sessions in managed cloud sandboxes |
| Environments API | Configure sandbox templates for agent sessions |
Execution runs in a managed sandbox with network access denied by default, using Seatbelt on macOS and Bubblewrap on Linux. Anthropic reports an 84% reduction in permission prompts and has open-sourced the runtime for auditability. Its credential model keeps Git tokens outside agent context: tokens are wired into the local Git remote so push and pull work from inside the sandbox without the agent ever handling the token, and MCP OAuth tokens sit in a vault behind a dedicated proxy. For teams evaluating what a lab ships versus what they still have to build, the Anthropic Agent SDK breakdown is a useful companion read.
Recent beta updates added Memory in public beta; multi-agent sessions and the Dreaming and Outcomes features, where Dreaming agents review past sessions to surface patterns; self-hosted sandboxes; and an MCP tunnels research preview for reaching servers inside a private network. Multi-agent orchestration lets one agent coordinate others working in parallel, each with an isolated context.
Pricing: Two Meters Running at Once
Session-hour billing runs alongside token billing. The headline runtime rate is $0.08 per session-hour for active runtime only; idle or terminated sessions do not incur it. Anthropic's own worked example for a one-hour support-ticket session, with prompt caching active, totals $0.525: $0.08 of runtime and $0.445 of tokens.
| Cost Component | Rate |
|---|---|
| Model inference (input/output) | Standard Claude token rates (Opus 4.8: $5/$25 per MTok; Sonnet 5: $2/$10 introductory through August 31, 2026) |
| Session runtime | $0.08 per session-hour, running state only |
| Web search | $10 per 1,000 searches |
Two things follow from that structure. Tokens dominate: in Anthropic's example, they account for roughly 85% of the total. And routing stays inside one family. Gartner's guidance points toward directing simple, high-frequency tasks to cheaper models, but inside Claude Managed Agents, that routing only happens within the Claude lineup. Augment's available model list reaches further, including GPT-5.1 at roughly 75% of Sonnet's cost, Gemini 3.1 Pro at roughly 92%, and Kimi K2.6 at a fraction of Sonnet's price. As token volume rises, that spread is where cost control lives or dies.
What Augment Cosmos Ships

Augment Code launched Cosmos on May 4, 2026. It is generally available and included on all paid plans, so there is no preview gate or add-on to negotiate. Cosmos bundles Prism model routing, BYOK model access, the Context Engine, and shared organizational memory, and it runs across laptops, Dev-VMs, and the cloud through VS Code, JetBrains, the CLI, and the web.
Prism is the piece that directly addresses lock-in. Augment describes it as a planner that selects among underlying models on each user turn, with cache-aware switching that changes models only when the expected gain outweighs the cost of evicting the cache. Routing spans the connected providers, with named families including GPT-5.5, Kimi K2.6, Claude Opus 4.7, Claude Sonnet 4.6, and Gemini 3.1 Pro.
What actually stood out in daily use was less about any single number and more about the context of each stack. During a refactor that touched a caller three files away from the diff, Cosmos flagged it because the Context Engine had traced the dependency chain across the repository rather than reasoning from a single session transcript. On boilerplate turns, Prism quietly dropped to a cheaper model and only switched back when the task warranted it, which is the behavior you want but rarely see exposed. Code review followed the same pattern: before commenting, it pulled dependency chains, call sites, related tests, and prior history into view.
Augment reports its own benchmarks for the underlying capabilities. Code generation reaches 70.6% SWE-bench Verified accuracy, and automated code review reaches a 59% F-score, with 65% precision and 55% recall. Those are company-reported figures for the general product rather than outcomes I reproduced turn by turn, and the Prism cost advantage rests on Augment's internal multi-turn benchmark, scoped to the workloads Augment measured and not independently replicated. I would treat the routing-cost claim as directional until you run your own turns.
Head-to-Head: Architecture and Commercial Terms
The table below summarizes the structural differences against each vendor's official documentation.
| Dimension | Claude Managed Agents | Augment Cosmos |
|---|---|---|
| Model access | Claude models only | Prism routing across Anthropic, OpenAI, Bedrock, Vertex, open source; BYOK |
| Pricing model | $0.08/session-hour plus standard Claude token rates | Single platform line item; per-turn routing to cheaper, adequate models |
| Execution | Managed cloud sandboxes; self-hosted sandboxes | Laptops, Dev-VMs, and cloud, bridged by daemons |
| Context model | Session memory: Dreaming reviews past sessions | Context Engine across 400,000+ files, plus tenant-shared and private memory |
| Private network access | MCP tunnels, research preview | 100+ MCP integrations with OAuth |
| Governance certifications | SOC 2 Type II, ISO 27001:2022, ISO/IEC 42001:2023; HIPAA-ready, BAA available (API/Enterprise scope) | SOC 2 Type II, ISO/IEC 42001; both Coalfire audited |
| Model-switching cost | Full migration event: prompts, evals, trust boundaries | Per-turn routing; no migration event to change models |
One scoping note matters for procurement. Anthropic's Trust Center scopes its certifications to Claude via Anthropic's API and to Claude Enterprise. Claude Managed Agents is not listed as a named product in that compliance table, so confirm which scope covers Managed Agents workloads before signing.
Lock-In Determines Exit Cost
Every architectural difference above rolls up into one exposure: what it costs to leave. Analyst- and vendor-commissioned research alike have begun framing model-provider dependency as an operational-risk line, and that framing warrants a skeptical read when it comes from a vendor selling itself as the remedy. The underlying mechanics are real regardless of who is making the argument.
Migration usually starts with prompt reformatting, evaluation re-baselining, and cache invalidation, then extends into credential movement, sandbox-rule review, and trust-boundary re-review. Prompt formats differ between providers, so evaluation harnesses need to be re-baselined when you switch. When a proprietary harness also manages credential injection and sandbox boundaries, moving off it means re-auditing the entire trust boundary, which must account for guidance such as the NSA's May 2026 MCP security advisory and the OASIS COSAI threat categories.
The organizations reducing this exposure are building routing layers above the labs. Microsoft is the clearest example: it built its in-house MAI model family under AI CEO Mustafa Suleyman while keeping its OpenAI relationship, with Satya Nadella arguing that companies should move from consuming a frontier model to participating at the frontier. Cosmos packages that same architecture, a separate control plane that keeps multiple model suppliers reachable, for teams that want multi-provider routing without staffing an internal platform group to build it.
Governance, Certifications, and Data Retention
Both vendors hold ISO/IEC 42001: Anthropic since January 13, 2025, and Augment since August 5, 2025, but the details differ in scope and retention.
| Criterion | Augment Code | Anthropic (Claude API/Enterprise) |
|---|---|---|
| SOC 2 Type II | Listed in security materials | Available under NDA |
| ISO/IEC 42001 | August 5, 2025, Coalfire audited; first AI coding assistant certified | January 13, 2025 |
| ISO 27001 | Not listed | ISO 27001:2022 |
| Training on customer code | Never, with a contractual indemnification clause | Not used for Team, Enterprise, and API users |
| Zero Data Retention | Data minimization plus no-training policy; no named ZDR mode in available materials | Named ZDR arrangement for eligible API features |
| CMEK | AWS KMS | Customer-managed keys documented in Trust Center |
| Deployment options | SaaS, VPC, on-premise, air-gapped | Managed cloud; self-hosted sandboxes for Managed Agents |
Anthropic's certification breadth is wider. HIPAA with a BAA, CSA Star, and NIST 800-171 all appear on its Trust Center, and Anthropic reached ISO 42001 about seven months before Augment. Augment counters on deployment control: SaaS, VPC, on-premise, and air-gapped options that Anthropic's documentation does not describe, plus a no-training commitment backed by contractual indemnification. The score depends on whether your compliance regime prioritizes certification count or deployment control.
What CTOs Actually Evaluate
Augment's CTO evaluation checklist scores tools on determinism, auditability, context persistence, team-scale administration, security compliance, and reversibility. Applied here, three dimensions do most of the discriminating work.
- Security compliance provides vendors with evidence, and the checklist pushes buyers to examine data retention periods and whether retention is configurable. Anthropic offers a named ZDR arrangement; Augment frames its posture around enterprise governance rather than a true ZDR mode.
- Reversibility is where the stacks split hardest: rolling back AI-generated changes is a tooling problem, but rolling back an entire orchestration layer spans inference metering, orchestration capture, workflow rules, and contract entanglement.
- Model-switching cost deserves its own line, because with Gartner projecting AI coding spend to overtake developer salaries, the ability to route each task to the cheapest adequate model becomes a budget item rather than a nicety.
The checklist also tells buyers to discount vendor productivity claims, model a conservative year-one adoption curve, and budget a senior-review line during rollout.
Price the Exit Before You Sign the Entrance
Anthropic manages harness bundles, sandboxing, tools, credentials, MCP servers, and skills today, and it can become a migration project tomorrow. Cosmos adds a platform layer for per-turn model selection across five providers, so changing models is a routing decision rather than a migration event. That trade is easy to underprice because prompt formats, eval baselines, cache assumptions, workflow rules, credentials, and trust boundaries all move together when you leave a single-lab stack.
Choose Claude Managed Agents if you are already committed to Claude, want Anthropic operating the harness end-to-end, and need the research-preview MCP tunnels for private-network tool access, accepting that changing labs later triggers the full migration workstream. Choose Cosmos if model-switching cost, per-task routing, and organizational context across repositories and sessions weigh heaviest, and you would rather not build and operate that routing layer yourself. Before your next agent-platform procurement, run both candidates through the six checklist dimensions and put a dollar figure on the exit. If that number changes, your answer was locked in all along.
Frequently Asked Questions About Claude Managed Agents and Cosmos
These are the questions engineering leaders ask when they are weighing a single-lab agent stack against a multi-provider platform.
Related Comparisons
Written by

Molisha Shah
GTM
Molisha is an early GTM and Customer Champion at Augment Code, where she focuses on helping developers understand and adopt modern AI coding practices. She writes about clean code principles, agentic development environments, and how teams are restructuring their workflows around AI agents. She holds a degree in Business and Cognitive Science from UC Berkeley.