Vercel AI Updates: June 19, 2026
1. Vercel Agent Enters Private Beta as an Autonomous Production Layer
Vercel. In its Ship 2026 recap, Vercel detailed Vercel Agent, an intelligence layer for deployments built on the eve framework and the Agent Stack and now in private beta. The agent monitors production, investigates alerts and anomalies on its own, and opens pull requests with proposed fixes for developer review. Its permission model pairs a plan mode with scoped, temporary credentials, so the agent runs as its own read-only identity by default and plans the permissions a task needs before asking for approval in a single step. Source
2. AI SDK Workflow Fixes Provider-Executed Tool Approvals on Resume
Vercel. The AI SDK shipped @ai-sdk/workflow@1.0.0-beta.100, correcting how WorkflowAgent handles tool approvals when a workflow resumes. The prior behavior stripped all approval request and response messages on resume, which meant provider-executed tools such as MCP through OpenAI’s Responses API never received their approvals and could not run. The fix preserves provider-executed approvals while still removing local ones after execution, so approval information reaches the provider through convertToLanguageModelPrompt, matching the behavior already used in streamText. Source