惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
Y
Y Combinator Blog
月光博客
月光博客
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
小众软件
小众软件
H
Help Net Security
Last Week in AI
Last Week in AI
B
Blog RSS Feed
宝玉的分享
宝玉的分享
N
Netflix TechBlog - Medium
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Vercel Ship AI 2025 recap
Dan FeinProduct · 2025-10-27 · via Vercel News

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.

Link to headingAI SDK 6 adds agent-first architecture

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.

Now in beta, AI SDK 6 includes:

  • Agent abstraction: Define once, deploy everywhere

  • Tool execution approval: Built-in human-in-the-loop review

  • 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 = await fetchWeather(city);

return weather;

},

});

// Agent that can call the approved tool in a loop

export const agent = new ToolLoopAgent({

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.

Get started with AI SDK 6

Explore the complete documentation for agent abstractions, tool approval patterns, and migration guides.

Read the docs

Link to headingMarketplace for Agents and AI tools

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.Explore AI Agents and services in the Vercel Marketplace.

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.

AI agents and services on the Vercel Marketplace

Learn how agents and services work together, and see the full launch cohort.

Read the announcement

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.

Read more about built-in durability with Workflow Development Kit.

Build durable workflows

Get started with the Workflow Development Kit documentation, examples, and quickstart guides.

Get started

Link to headingVercel Agent joins your team

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

  • $100 promo credit to get started

Try Vercel Agent

Join the beta and get $100 credit to start using AI code reviews and automated investigations.

Get started

Link to headingPython support with zero configuration

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.

Zero-config Python backends on Vercel

Learn how to deploy FastAPI, Flask, and other Python frameworks with zero configuration.

Learn more

Link to headingAn Agent on every desk

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.

Join the program

Work with our team to build and deploy your first production agent.

Express interest

Link to headingOpen source lead agent

The new OSS lead agent helps go-to-market teams research and qualify inbound leads automatically.

Built with Next.js, AI SDK, Workflow DevKit, and the Vercel Slack Adapter, it demonstrates how teams can combine open source components to automate daily work.

Deploy the lead agent

Clone the template and customize it for your go-to-market workflows.

View template

Link to headingOpen source data analyst agent

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.

Deploy the data analyst agent

Get the template and connect it to your database and Slack workspace.

View template

Link to headingThe future of the AI Cloud

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.

You can just ship agents.