
이미지: @ClaudeDevs (X) 영상 갈무리 · METAL LAB 편집
Summary
- Anthropic's account released a new cookbook on August 27, 2026, connecting Claude Managed Agent to Vercel's Chat SDK
- Vercel's Chat SDK handles the interface while Claude Managed Agent does the actual work behind the scenes
- The code is available as-is in the managed-agents/chat-sdk path of the github.com/anthropics/claude-quickstarts repository
Vercel Handles the Chat Window, Claude Handles the Work
Anthropic's account released a new cookbook on August 27, 2026, showing how to connect a Claude Managed Agent to Vercel's Chat SDK. As the published image caption puts it, the setup has "Vercel's Chat SDK on the surface, with Claude Managed Agent working behind it." In other words, the interface uses Vercel's ready-made chat UI, while Anthropic's agent supplies the actual brains that answer questions and carry out tasks. The full code is available in the managed-agents/chat-sdk path of the github.com/anthropics/claude-quickstarts repository.
A Problem Managed Agents Keep Solving
Claude Managed Agent isn't just a chatbot that spits out answers — it's an AI agent that can search, generate files, and even handle scheduling on a user's behalf. But hooking an agent like this into a real product always runs into the same wall: building the screen users actually interact with. Even when the agent's brain is solid, the front end — the chat window, message streaming, loading indicators — has had to be built from scratch every time. As METAL LAB covered just a week earlier, on August 20, Anthropic had already released a cookbook connecting Claude Managed Agent to the AG-UI protocol, demonstrating sample interfaces like a financial assistant through AG-UI, an open protocol built by CopilotKit. This new Vercel Chat SDK cookbook extends that same trend — swapping the same agent into different front-end layers, with the list of combinations growing steadily.

What Actually Changes
For developers, this means they can spin up an agent-powered service by plugging into Vercel's off-the-shelf Chat SDK, without building the front end from scratch. The setup is straightforward: pull the example from the repository, run it as-is, then swap in your own API keys and agent configuration to fit your service. Combined with the budget caps and advisor model features released on August 9, and the memory and session-viewer overhaul from August 19, this cookbook adds another piece to Claude Managed Agent's parallel expansion — building out both its core capabilities and the ways it connects to different interfaces.




Comments