GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
      • Apple Intelligence
      • Gemini AI
      • Google DeepMind
      • Anthropic
      • Claude AI
      • Claude Code
      • OpenAI
      • ChatGPT
      • Codex
      • Perplexity
      • SpaceXAI
      • Grok AI
      • Microsoft Copilot
      • Meta AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Computing
  • Gaming
  • Mobile
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • Buying Guide
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • AI
    • Apple Intelligence
    • Gemini AI
    • Google DeepMind
    • Anthropic
    • Claude AI
    • Claude Code
    • OpenAI
    • ChatGPT
    • Codex
    • Perplexity
    • SpaceXAI
    • Grok AI
    • Microsoft Copilot
    • Meta AI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Follow US
AIAnthropicTech

Anthropic refines Claude Managed Agents with five new updates

Building an AI agent is one thing; keeping it running reliably in production is another. Anthropic’s latest updates address exactly that.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Jul 1, 2026, 4:48 AM EDT
Share
We may get a commission from retail offers. Learn more
Anthropic Claude Managed Agents update overview highlighting five new features: streaming sessions, agent overrides, deployment webhooks, reverse pagination, and credential scoping.
Image: Anthropic
SHARE

Building an AI agent is relatively easy. Keeping it running in production without it hallucinating, crashing, or leaking credentials is a completely different story. When Anthropic rolled out Claude Managed Agents earlier this year, the pitch was simple: let them handle the messy infrastructure layer—the secure sandboxing, long-running sessions, and tool execution—so developers could focus on what the agent actually does. It was a massive step toward making autonomous workflows viable at enterprise scale, addressing the runtime and orchestration challenges. But as anyone who builds on top of emerging platforms knows, the real test isn’t the initial launch; it’s the iterative updates that follow based on real-world friction. In a recent update, Anthropic pushed out a new batch of features for Managed Agents, and while they might sound like minor plumbing adjustments, they collectively solve some of the biggest headaches developers have been facing over the last few months.


Related /

  • Anthropic adds long-term memory to Claude Managed Agents
  • Claude agents can now “dream” their way to better performance
  • Anthropic just made AI agents boring—in the best way

At the top of the list is the introduction of streaming session event deltas. If you’ve been building user-facing applications with AI, you know that waiting for a long-running agent to finish a complex task in silence is a surefire way to frustrate a user. By streaming the event deltas as they happen, developers can now build much more responsive interfaces, surfacing exactly what the agent is thinking, doing, or executing in real-time.

Anthropic Claude Managed Agents diagram showing streaming session event deltas, where model output is streamed incrementally before the final response is assembled.
Image: Anthropic

But perhaps the most universally requested feature in this update is per-session agent overrides. Until now, the API required a fairly rigid setup: you define your agent—its model, system prompt, tools, and MCP servers—and that configuration is locked in as a versioned release. If you wanted to test how a different model handled a specific task, you generally had to create an entirely new agent configuration. With per-session overrides, you can take a stored agent and swap out parts of its DNA just for one specific session. Want to temporarily switch to a heavier model for a harder query, or inject a specialized tool for a single run? You can now do that on the fly without cluttering your workspace with duplicate agent profiles.

Anthropic Claude Managed Agents diagram demonstrating per-session agent overrides, allowing different models, system prompts, or tools without changing the base agent.
Image: Anthropic

The update also brings some much-needed quality-of-life improvements for backend orchestration. Anthropic has added new webhook event types, giving developers more granular hooks into the agent’s lifecycle to trigger downstream actions in their own applications.

Diagram showcasing Anthropic Claude Managed Agents deployment webhooks, delivering deployment lifecycle events such as failures and auto-paused deployments to subscribed endpoints.
Image: Anthropic

They’ve also introduced reverse pagination, which sounds mundane until you’re staring at a massive, long-running session log and just want to see the most recent events without fetching the entire history first.

Diagram explaining Anthropic Claude Managed Agents reverse pagination, enabling developers to navigate session history backward using previous page cursors.
Image: Anthropic

And for developers obsessed with performance metrics, Anthropic quietly dropped a brand new Managed Agents Observability tab into the developer console. Instead of guessing how much compute an agentic loop is burning through, you can now see session-level metrics, tracking exactly how many input and output tokens were consumed and how frequently specific tools were called.

Anthropic Claude Console showing the new Managed Agents Observability dashboard with session metrics, token usage, error rates, tool usage, and activity analytics.
Image: Anthropic

The most critical update in this release, however, is arguably the quietest: credential injection scoping. Security has always been the elephant in the room for autonomous agents. If an agent has access to a sandbox and external tools, a clever prompt injection could theoretically trick it into reading its own environment variables or exfiltrating tokens. While Anthropic’s security architecture already separates the “brain” (the model) from the “hands” (the execution sandbox), credential injection scoping tightens the blast radius even further. It allows developers to define exactly which credentials get injected into which specific tool executions, ensuring that an agent only has access to a particular secret at the exact moment it needs it, rather than leaving the keys to the kingdom broadly accessible in the runtime environment.

Diagram illustrating Anthropic Claude Managed Agents credential injection scoping, showing secrets restricted to HTTP headers for secure API requests.
Image: Anthropic

Taken together, these five updates—streaming deltas, overrides, webhooks, reverse pagination, and scoped credentials—show a platform that is maturing rapidly. We are moving past the era of weekend hackathon projects and into a phase where enterprise-grade AI requires the same robust tooling, observability, and security controls as any other piece of critical cloud infrastructure. Anthropic clearly understands that to win the agent race, they don’t just need the smartest model; they need the most reliable runtime. And with this latest release, the gap between a cool prototype and a production-ready agent just got a little bit smaller.

We’ve added a few updates to Claude Managed Agents:

Streaming session event deltas, per-session agent overrides, new webhook event types, reverse pagination, and credential injection scoping. pic.twitter.com/AMJJYum8At

— ClaudeDevs (@ClaudeDevs) June 30, 2026

Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Claude AIClaude Code
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Apple removes iPhone 17 Pro models from its store
Apple unveils new iPhone 18 Pro cases and wrist strap
Apple adds AI-powered health features to Apple Watch and iPhone
Apple acquires Sonera, a startup building magnetic body sensors
iPhone 18 Pro introduces Apple’s first variable-aperture camera

Also Read

A promotional graphic for Adobe Acrobat showcasing an "Organic Chemistry Student Space." Chemistry PDF documents and notes are uploaded on the left, flanked by student profile avatars. In the center, yellow, green, and blue glass laboratory flasks hold colorful flowers, set against a bright yellow background. On the right, a white menu displays options to "Create" a "Study Guide," "Practice Quiz," or "Flashcards," with a cursor pointing toward "Flashcards."

Adobe Acrobat Student Spaces is now free worldwide

A screenshot of Adobe Premiere’s editing timeline featuring the Generative Media interface. A video clip on the timeline displays a woman wearing sunglasses and a yellow dress outdoors by a poolside table. An eyedropper cursor samples this clip as the "First frame" reference. The generative tool popup shows a text prompt starting with "Rising pull-back revealing neighborho…", with settings set to the Kling AI model, 1080p resolution, and 16:9 aspect ratio. Audio waveforms in green run beneath the video tracks.

Adobe unveils new AI-powered tools for Premiere and After Effects

A 3D graphic of digital document cards set against a warm pink and yellow gradient background. The central card displays a dark background with vibrant, glowing purple and blue floral petals, overlaid with white text that reads "Master services agreement." Surrounding the card are three white floating UI buttons with icons that say "Filter documents," "Analyze files in bulk," and "Export data to report."

Adobe Acrobat Studio can now search documents and analyze contracts

A geometric flat-art illustration centered on a dark green background, depicting security and data protection motifs. It features an arrangement of black and pastel-toned rectangular blocks, diagonal purple-and-black hatched patterns, and stylized gold keys and keyholes framing a large concentric circular lock mechanism.

Figma enterprise files can now be hosted in Japan

Apple iPhone 18 Pro lineup alongside Apple Watch Series 12, Apple Watch Ultra 4, and AirPods 5.

Apple’s new devices are up for preorder, except the iPhone Duo

Adobe Acrobat interface demonstration on a red-to-pink gradient background showing document-to-visual transformation features. In the center, an interactive report dashboard displays sales charts, growth metrics, and key performance indicators, labeled with a "Generate interactive report" button. To the right, a plain business report is transformed into a colorful, professionally designed blue-and-orange slide labeled with a "Stylize" action button.

Adobe turns dense PDFs into podcasts and presentations

Snapchat Plans event screens showing Birthday Party, camping, and Thanksgiving gatherings with dates, times, RSVPs, and friend lists.

Snapchat Plans makes “we should hang out” official

Close-up of the Opera browser interface highlighting the "+ New Tab" button positioned at the very top of the vertical tab sidebar, situated directly above the open tabs and Tab Islands.

Opera’s Vertical Tabs get a new top-first design

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.