Earlier this year we introduced the foundations of the AI Cloud: a platform for building intelligent systems that think, plan, and act. Last week at Ship AI, we showed what comes next.
We launched new SDKs, infrastructure, and open source templates that make building production-ready agents as intuitive as building a standard feature. You can now define, deploy, and operate intelligent workflows on the same platform that powers your apps.
Whether you're building your first agent or delivering it to millions of users, these releases make AI development as accessible and scalable as web development.
Define an agent once and reuse it across any app or workflow. Instead of wiring together prompts and APIs for each use case, AI SDK 6 introduces an agent abstraction that works everywhere.
Type-safe by design: End-to-end type safety across models and UI
The new tool approval system lets you gate any action that needs human review. Define a tool with needsApproval: true and the agent will pause until someone confirms:
const weather =tool({
description:'Get the weather in a city',
inputSchema: z.object({ city: z.string()}),
needsApproval:true,// approval gate
execute:async({ city })=>{
const weather =awaitfetchWeather(city);
return weather;
},
});
// Agent that can call the approved tool in a loop
exportconst agent =newToolLoopAgent({
model:"openai/gpt-5",
instructions:'You are a concise weather assistant.',
tools:{ weather },
});
An agent with human-in-the-loop approval for weather queries.
You can install the beta with npm i ai@beta to get started.
The Vercel Marketplace now lets you discover, install, and connect production-ready agents and AI services directly to your projects.
Agents like CodeRabbit, Corridor, and Sourcery automate development workflows, while integrations with Autonoma, Braintrust, Browser Use, Chatbase, Descope, Kernel, Kubiks, and Mixedbread bring model access, analytics, and observability into one place.
Explore AI Agents and services in the Vercel Marketplace.
Each integration includes unified billing, native observability, and secure credentials management to improve the experience in building on a network of AI-powered tools.
Link to headingWorkflow Development Kit brings reliability-as-code
Long-running work needs retries, background steps, and stateful checkpoints. Traditionally, that means wiring together message queues, schedulers, and state storage. use workflow turns reliability into code.
Add use workflow to any TypeScript function to make it durable:
Automatically retries failed steps
Persists progress between executions
Adds built-in observability for every run
It's open source and runs on any platform, making async work reliable and observable. Works for AI agent loops, data pipelines, commerce workflows, or any process that needs to survive crashes and resume exactly where it stopped.
Vercel automatically detects when a function is durable and dynamically provisions the ideal infrastructure to support it in real time.
Vercel automatically detects when a function is durable and dynamically provisions the ideal infrastructure to support it in real time.
Vercel Agent is your intelligent assistant for shipping on Vercel.
The Agent reviews code, proposes validated patches, and investigates anomalies using real production data. When it detects performance or error spikes, it automatically opens an AI investigation and summarizes the cause and actionable next steps.
Now in beta, Vercel Agent includes:
AI code reviews with validated suggestions
Anomaly alerts that trigger automated investigations
Python developers can now deploy on the AI Cloud with zero configuration.
Now in beta, the Vercel Python SDK runs frameworks like FastAPI and Flask natively on Vercel, while interacting with platform primitives such as Sandboxes, Blob storage, and Runtime Cache.
You can install the beta with pip install vercel to get started.
We believe every company will run its own agents. Purpose-built assistants that accelerate real work. Our new program, An Agent on Every Desk, helps teams ship their first one.
We'll guide you from idea to production: identifying high-value workflows, providing starter templates, and getting an agent live fast.
The OSS Data Analyst Agent brings natural language analytics to your team.
It connects Slack and SQL so anyone can ask questions about their data and get instant, query-driven answers. It's a reference architecture for building your own text-to-SQL agents with the AI SDK.
Ship AI brought the tools for moving from calling models to building agents that actually work in production. The SDK handles the abstraction. Workflows make things durable. The marketplace gives you ready-made agents or the services to build your own. Python support means your backend frameworks run here too.
The pieces fit together because they solve the same problem: making agent development feel like web development. Define your logic, deploy it, let the platform handle the rest.