The DropJune 17, 2026via Vercel Blog
Vercel Ship 2026 recap
Why it matters
Vercel is positioning itself as the infrastructure layer for agentic software by releasing a full stack of production-ready agent tools (eve framework, Vercel Connect, Agent Stack, Vercel Services, Vercel Agent). This matters because it signals the shift from 'agents as research' to 'agents as deployable products' — and Vercel is betting the winner takes the platform.
Key signals
- Vercel shipped eve (open-source agent framework), Vercel Connect (secure external integrations), and Vercel Agent (autonomous production monitoring) at Ship 2026
- Vercel Agent in Private Beta monitors production, autonomously investigates alerts, opens PRs for review
- Vercel Sandbox isolates agent execution; agents get temporary, scoped credentials instead of long-lived tokens
- Vercel Services (launching July 1) adds microservices as first-class citizen; backend services can communicate without touching public internet
- 2,500+ builders attended Vercel Ship 2026 in London; 200 shipped agents in OpenAI + Vercel hackathon
- Vercel's internal agent 'Vertex' autonomously handles 91% of support tickets, saves 5,000 engineer-hours/month
- Enterprise support: Vercel Passport (private-by-default apps), Enterprise Managed Users (identity/audit), BYOC AWS (Private Beta)
- AI SDK now supports FastAPI, Flask, Express, Hono; Vercel Marketplace adds Aurora, DynamoDB, OpenSearch access
- Claude Managed Agents on Vercel: Anthropic hosts agent loop, execution runs in customer-owned Vercel Sandbox
The hook
Vercel just shipped five new agent primitives in a single week. Here's what changed for builders.
For a decade, Vercel has shaped how the web gets built. Now, we’re doing the same for agents. The companies that win the next decade will build on infrastructure designed for agents from the start, and over 2,500 people gathered in London this week to do just that at Vercel Ship 2026.
Guillermo kicked off Ship by sharing his vision for Vercel: a true full-stack platform where you can deploy anything, including software that can think.
has three parts: Agentic infrastructure
In the next keynote, Tom walked through each primitive in the , an end-to-end set of building blocks for agents. Hedi introduced , a secure way for agents to connect with external systems. And Shar gave a full demo of , Vercel's new agent framework that implements the Agent Stack in minutes, in a single directory. Agent StackVercel Connecteve
No matter the workload, every agent needs to connect to models, run workflows across many steps, and connect to the systems and people that make it useful. Vercel gives you every primitive you need to build all three capabilities.
launched at Ship 2026 in London as the newest building block in the Agent Stack. Vercel Connect
Connect provides agents with secure access to the tools, data, and services they work with, without requiring a long-lived provider token stored in your environment variables. Your app or agent requests a temporary credential scoped to the one task in front of it, so there’s no standing secret left to leak.
After building hundreds of agents at Vercel, we noticed that the architecture underneath had the same shape. is that shape as an open-source framework, and it's how we build, run, and scale production agents at Vercel. eve
eve Agents live in a single directory, with instructions in markdown and tools in TypeScript. Durable execution, sandboxed compute, approvals, subagents, and evals are already wired in.
Guillermo also highlighted Vercel's ability to host full stack applications, with support for additional backend frameworks, ...