Back
AI summary
Written by AI from the official notes. Check them for exact details.Claude Managed Agents now support event deltas in session event streams and backward pagination for session listings.
- Event streams now support event deltas for real-time message previews.
- Backward pagination added for session listings with
prev_pagecursor. - Override agent configuration for individual sessions with new parameters.
- Injection location setting for environment variable credentials introduced.
- Webhooks expanded to cover agent and deployment lifecycle events.
Why it matters: Developers and users of Claude Managed Agents should care for improved session management and real-time updates.
Full release notes5 changes
- Claude Managed Agents session event streams now support event deltas. Opt in with the
event_deltas[]query parameter onGET /v1/sessions/{session_id}/events/stream. Theevent_startandevent_deltaevents preview an agent message's text as it's generated, before the completeagent.messageevent arrives. - Listing sessions for Claude Managed Agents now supports backward pagination.
GET /v1/sessionsreturns aprev_pagecursor alongsidenext_page; pass it as thepageparameter to return to the previous page. See Pagination. - When creating a Claude Managed Agents session, you can now override the agent's configuration for that session. Pass
agentwithtype: "agent_with_overrides"to replace the model, system prompt, tools, MCP servers, or skills for a single session. The agent itself is unchanged. - Claude Managed Agents vaults now support an
injection_locationsetting on environment variable credentials (the Environment variable tab). It controls whether the credential's value is substituted, at egress, into the agent's outbound request headers, the request body, or both. - Webhooks for Claude Managed Agents now cover the agent, deployment, and deployment run lifecycle. You can react to a newly published agent version, a paused deployment, or a failed scheduled run without polling. See the Agent events, Deployment events, and Deployment run events tabs in Subscribe to webhooks.