Vercel open-sources Eve agent framework
TECH

Vercel open-sources Eve agent framework

29+
Signals

Strategic Overview

  • 01.
    On June 17, 2026, Vercel released eve, an open-source (Apache-2.0) framework for building, running, and scaling AI agents, published as the npm package 'eve'.
  • 02.
    eve is filesystem-first: an agent is a directory on disk where each folder and file maps to one capability, an approach the framework frames as the contract for the agent.
  • 03.
    Six production capabilities ship built in: durable execution, sandboxed compute, human-in-the-loop approvals, subagents/connections, evals, and multi-channel deployment.
  • 04.
    Vercel unveiled eve on stage at its Vercel Ship conference in London, alongside enterprise controls and a broader Agent Stack.

The directory is the contract: Next.js conventions, applied to agents

eve's central bet is that an agent should be a directory on disk, where each folder and file maps to exactly one capability [3]. This is the same file-based-convention philosophy that made Next.js legible: structure encodes behavior, so reading the directory tells you what the agent can do. Subagents extend the model recursively. A subagent is the same directory shape one level down inside a subagents/ folder, each with its own instructions, tools, and sandbox, and each starting from a clean context window [1]. Multi-channel deployment follows the same logic, where a single agent serves every surface and each channel — Slack, Discord, Teams, Telegram, Twilio, GitHub, Linear, or a custom defineChannel surface — is just a small adapter file [1].

The mental model landed quickly with developers, who recognized the launch pitch — "Next.js for agents" — as file-based routing applied to agent design. The appeal is that the same convention that made web projects skimmable now makes an agent's capabilities skimmable: you do not read code to learn what an agent does, you read its folder tree.

Production batteries, not a starter kit: why durable execution and sandboxing matter now

Where the AI SDK is a lower-level library that gives full control but leaves developers to assemble durable execution, sandboxing, approvals, and evals themselves, eve packages those concerns into an opinionated framework [4][6]. Every conversation becomes a checkpointed durable workflow that can pause, survive a crash or deploy, and resume [1]. Agent-generated code is treated as untrusted and kept out of the application runtime entirely, with each agent getting its own isolated sandbox — a direct answer to the risk of executing model-written code as if it were trusted [1].

That distinction is why eve reads as more than a convenience layer. Together with built-in human-in-the-loop approvals and evals, the claim is that a developer can stand up a production-shaped agent locally in under a minute and deploy it unchanged [1][7]. The hard, unglamorous parts of shipping an agent — recovering from a crash mid-task, fencing off code the model wrote, gating risky actions behind a human — are the default rather than an exercise left to the builder.

Apache-2.0 in name, Vercel-only in practice: the lock-in tension

Although eve is licensed under Apache-2.0 [2], the framework bundles Vercel's own AI SDK, AI Gateway, Sandbox, Workflow SDK, and Chat SDK, steering production deployments toward Vercel's hosted infrastructure [5]. That tension was the sharpest counter-signal in an otherwise enthusiastic reception. One prominent critic — an Astro co-founder — flagged that eve is effectively vercel-only, requiring a full bet on the company's runtime, sandbox, and workflow stack.

Hands-on first impressions echoed the framing from a different angle: the developer experience is genuinely strong if you already live in the Vercel ecosystem, which is precisely the condition that makes the lock-in real. And in developer-community discussion, skeptics drew a line between demo and durability — a showcased support agent with a high auto-resolve rate is the easy part to demo, while evals and observability once an agent is handling production edge cases are the hard part. The open question is whether eve's batteries-included design is enough to offset committing the whole agent stack to one vendor.

Dogfooding at scale: eve is the framework Vercel already runs on

eve is not a greenfield experiment. It is the same framework Vercel uses to build and run its own production agents, so open-sourcing it standardizes a battle-tested internal stack while driving adoption of Vercel's broader agent infrastructure [1][5]. Vercel reports running more than 100 agents internally on eve [1][7], and in developer-community discussion a self-identified Vercel engineer described the internal pattern directly: a main instruction file delegates to subagents that act as subject-matter experts for different functions.

That history is what lets Vercel position eve less as a library to try and more as infrastructure for the agent era. The strategic logic mirrors Next.js: ship the conventions you already use internally, let them become the default way an ecosystem builds, and the platform underneath becomes the natural place to run the result.

By the numbers: the adoption curve behind the bet

By the numbers: the adoption curve behind the bet
Vercel's agent-adoption surge: coding-agent deployments climbed from under 3% to over 50% of commits while AI Gateway token volume rose from 2M to 20M.

Vercel anchored the launch in usage data. It runs more than 100 agents in production on eve [1][7], including an internal data-analyst agent, d0, that handles more than 30,000 questions a month [3][7]. At Vercel Ship, the company framed the broader shift: coding-agent deployments grew from fewer than 3% to more than 50% of all commits — roughly 17x over six months — and token volume through Vercel AI Gateway rose from 2 million to 20 million [5]. The repo itself reflected immediate developer interest, gathering roughly 890 stars in just over a day [2][7].

The numbers do double duty. They justify eve's existence — if agents already trigger most of your deployments, the tooling to build them stops being optional — and they advertise the destination, since each metric is a measure of activity flowing through Vercel's own platform.

Historical Context

2026-05-17
Vercel Labs introduced Zero, a systems programming language designed for AI agents to read, repair, and ship native programs, preceding the eve launch.
2026-06-17
Vercel unveiled eve on stage at the Vercel Ship conference in London, alongside enterprise controls and an Agent Stack.

Power Map

Key Players
Subject

Vercel open-sources Eve agent framework

VE

Vercel

Creator and maintainer of eve; open-sourced the framework it uses internally and positions itself as the infrastructure company for the agent era.

GU

Guillermo Rauch

Vercel Founder and CEO; framed eve and the Agent Stack as Vercel's bet on agent-era infrastructure at Vercel Ship.

AG

Agent/AI developers

Target users wanting full code-level control over agent behavior rather than low-code GUI builders.

VE

Vercel AI SDK

Lower-level foundation that eve builds on internally for provider abstraction, streaming, and tool use.

EN

Enterprises

Targeted by accompanying Vercel for Enterprise Apps and Agents with identity/access controls and the option to deploy within a company's own AWS account.

Fact Check

7 cited
  1. [1] Introducing eve
  2. [2] vercel/eve: The Framework for Building Agents
  3. [3] Vercel Releases Eve: An Open-Source AI Agent Framework Where Each Agent is a Directory of Files Mapped to Capabilities
  4. [4] Vercel launches eve, an open-source framework that treats agents as directories
  5. [5] Vercel launches new framework and enterprise controls for agentic AI infrastructure
  6. [6] Vercel eve: The Next.js for Agents
  7. [7] Vercel launches new framework and enterprise controls for agentic AI infrastructure

Source Articles

Top 5

THE SIGNAL.

Analysts

"Each software generation needs new infrastructure, and Vercel intends to be that infrastructure for the agent era: 'Each new generation of software needs a new generation of infrastructure. For the agent era, that's Vercel.'"

Guillermo Rauch
Founder and CEO, Vercel

"eve aims to do for agents what Next.js did for the web: 'Next.js ended this for the web, and eve is doing the same for agents.'"

Vercel
Official positioning, Vercel blog
The Crowd

"Introducing eve, an agent framework. agent/ agent.ts instructions.md tools/ skills/ sandbox/ schedules/ Like Next.js, for agents."

@@vercel6812

"Vercel cooked something genuinely special here. 🤯 They open-sourced the exact framework they use to run 100+ AI agents internally. And the way it works changes how you think about building agents. It's called Eve. An agent is a folder. Tools are files. Skills are markdown"

@@VaibhavSisinty851

"some thoughts on eve, especially re: @flueai and the larger agent builder space. The biggest surprise: eve is vercel-only. You can't deploy it outside of vercel and it requires a full bet on their stack -- vercel runtime, vercel sandbox, vercel workflows, vercel cron jobs, etc."

@@FredKSchott434

"What do you think about eve that was announced today by Vercel team?"

@u/Ok_Eye_128815
Broadcast
Vercel just shipped Eve. I plugged my own tools into it.

Vercel just shipped Eve. I plugged my own tools into it.

Ship 26 London - Keynote

Ship 26 London - Keynote

How Vercel Built Hundreds of AI Agents to Run Vercel | Tom Occhino, CPO

How Vercel Built Hundreds of AI Agents to Run Vercel | Tom Occhino, CPO