Source: Anthropic official announcement — Apr 8 2026 + earlier ai-research (web research, 2026-04-11) Type: Product Launch Product: Claude Managed Agents Date: 2026-04-08
Blog claims now cited directly from Anthropic: +10 percentage points on structured file generation vs. standard prompting loops (internal testing); customer examples include Notion (parallel workspace tasks), Rakuten (cross-department enterprise agents), Asana (AI Teammates), Sentry (bug detection + patch writing), plus Vibecode, Atlassian, legal tech, and meeting prep applications.
Anthropic’s hosted agent service, launched April 8, 2026 in beta. Managed Agents eliminates 3-6 months of infrastructure work by providing sandboxed code execution, checkpointing, credential management, scoped permissions, and end-to-end tracing out of the box. You define agents in natural language or YAML; Anthropic handles the runtime.
What it does
- Runs long-horizon agents on Anthropic’s infrastructure — no need to build your own sandbox, checkpointing, or credential store
- Build and manage agents via the Console, Claude Code, or the new CLI
- Agent definitions can be natural language or YAML
- Built-in OAuth support: token exchange, refresh, and consent flows are handled automatically
- All endpoints require the
managed-agents-2026-04-01beta header
Pricing
- Runtime: $0.08 per runtime hour
- Tokens: Standard Claude model usage pricing on top
- Estimate: ~$58/month for a 24/7 always-on agent (before token costs)
Advanced features (limited preview)
These are not generally available yet — access is gated:
- Memory tooling — agents persist context across runs
- Multi-agent orchestration — coordinate multiple managed agents
- Self-evaluation — agents assess their own output quality
Key Takeaways
- Managed Agents is the hosted, turnkey option for running Claude agents — you skip the infrastructure entirely
- Natural language or YAML definitions mean non-engineers can define agent behavior
- OAuth is built in, which removes one of the hardest parts of agent-to-service integrations
- At 58-100+/month depending on token volume — compare with self-hosted agents on Railway/Fly/similar platforms at ~$5/month
- Advanced features (memory, multi-agent, self-eval) are in limited preview — expect these to expand
- Requires the
managed-agents-2026-04-01beta header on all API calls
[YouTube field-test signal — Nate Herk 2026-04-27] Hands-on test of the Managed Agents Console (raw/I_Tested_Claude_s_New_Managed_Agents..._What_You_Need_To_Know.md) surfaced operator-perspective findings the docs don’t lead with: (1) No Claude subscription required — a $5 minimum top-up on an API key is the only entry barrier (lower than Claude Code’s Pro/Max subscription), explicitly positioned as the path for chat-only users who never touched Code or Cowork. (2) Five-step Console flow: agent → environment → MCP server connections → credential vault → test run — credentials live in vaults that can be shared across team members, OAuth flow auto-handled. (3) Guided Edit caveat: describing context inside the agent chat doesn’t always update the actual system prompt (version history shows two versions identical despite chat-prompted change); the explicit “Guided Edit” button is the reliable way to mutate prompts. (4) Same toolset as Claude Code under the hood — bash / read / web search / fetch — author’s framing: “essentially the Agent SDK with a nicer wrapper.” (5) Author verdict — disappointed: “If you’re already in Claude Code this isn’t much. If you’re chat-only and never used Code or Cowork, this is a huge value-add.” Operator decision rule = chat-only users → Managed Agents; existing Code users → stick with Code/Cowork unless you need cloud sandbox + team-shared credential vaults.
- Notion-as-managed-agent-host pattern noted: teams drag Notion tasks to a different status column, the connected Claude agent picks them up and processes — turns Notion into a queue surface, no agent UI required.
[Reddit signal — r/ClaudeCode 2026-05-10] Adjacent shipment — Anthropic financial-services reference repo. github.com/anthropics/financial-services (raw/reddit-1t9p3ho.md, 315 score / 50 comments) ships 10 prebuilt workflow agents that run either via the Claude Cowork plugin or the Managed Agents API — same agent definitions, two execution surfaces. Concretizes the “Managed Agents as the substrate for vertical-domain reference repos” thesis. The 10 agents cover the major financial verticals (investment banking, equity research, private equity, asset management):
- Pitch Agent — fully branded pitch decks from comps, precedent transactions, LBO analysis
- Meeting Prep Agent — pre-meeting briefing packs
- Market Researcher — sector/theme → industry overview + competitive landscape + peer comparison + idea short list
- Earnings Reviewer — updates models from earnings calls + filings, drafts research note outlines
- Model Builder — works directly in Excel (DCF / LBO / three-statement / comps) in real time
- Valuation Reviewer — aggregates GP packages, runs valuation templates for LP reporting staging
- GL Reconciler — identifies breaks, traces root causes, routes for approval
- Month-End Closer — accruals, rollforwards, variance commentary
- Statement Auditor — validates LP financial statements pre-distribution
- KYC Screener — parses onboarding documents, runs rules-based checks, flags inconsistencies Sister to the cookbook coverage of multiagent + outcomes — both ship May 2026 on the same Managed Agents API surface; cookbook is generic patterns, financial-services is the first vertical-specific reference repo from Anthropic.
[Anthropic announcement — 2026-05-11] Claude Platform on AWS GA. Managed Agents now distributable on AWS infrastructure with AWS authentication, billing, and commitment retirement (raw/reddit-1ta7p4n.md, ClaudeOfficial 104 score). Same-day SDK support shipped via [[claude-ai/anthropic-sdk-releases-may-2026|anthropic-sdk-python v0.101.0 + anthropic-sdk-typescript aws-sdk v0.3.0]]. Operates as a separate distribution from Amazon Bedrock — Anthropic operates the AWS service directly, ships features same-day as native API. Bedrock remains available for teams needing AWS-as-data-processor (strict regional residency, AWS-only processing). See W20 release digest for full context.
Try It
- Open the Anthropic Console and look for Managed Agents in the beta section
- Define a simple agent in natural language (e.g., “Monitor this GitHub repo and summarize new issues daily”)
- Set up OAuth credentials for any services the agent needs to access
- Deploy and monitor via the Console dashboard or CLI
- Compare the cost against self-hosted alternatives — the break-even is roughly when infrastructure maintenance exceeds $58/month
- AWS path: if your org has AWS commitments, install Python SDK
0.101.0(or TSaws-sdk@0.3.0), authenticate via AWS, and target Claude Platform on AWS as the runtime — same Managed Agents surface, AWS billing.
Related
- Cross-Topic Connections — cross-topic synthesis comparing Routines vs Managed Agents vs Dispatch with a decision framework
- Claude Code Agent Teams
- Claude Code Subagents
- The Advisor Strategy (advisor_20260301) — another server-side tool; pairs with hosted agent loops for intelligence-on-demand
- Claude Agent Hierarchy — When to Use Which
- The Complete Guide to Building Skills for Claude
- AI Marketing Automation Use Cases
Open Questions
- What are the compute limits per agent (CPU, memory, network)?
- How does checkpointing work — can you resume a failed agent mid-task?
- What’s the SLA for uptime on managed agent infrastructure?
- When will memory tooling and multi-agent orchestration move to general availability?