Overview
Vercel Eve is an **AI agent framework** open-sourced by Vercel on June 18, 2026, under the **Apache 2.0 license**, serving as Vercel's official answer in the Agent era. Its core design philosophy is **"file system first"** — **each agent corresponds to a disk directory**, and all states, memories, and tool outputs reside in the file system rather than in black-box memory or closed databases. This makes debugging, tracing, auditing, and cross-process recovery of agents as natural as debugging a regular Node.js project.
It comes with **six production-grade capabilities**: **persistent execution** (crash recovery), **sandboxed computation** (secure isolated code execution), **human-in-the-loop approval** (requiring human review for critical steps), **multi-channel support** (HTTP / Webhook / Slack / Discord, etc.), **versioned state**, and **observability**. This brings Vercel's consistent "developer experience first" philosophy to the agent framework.
Ecosystem-wise, Eve forms a closed loop with the Vercel AI SDK, Next.js, and v0.dev — v0 for design, Next.js for deployment, and Eve Agent for running long tasks, covering everything from prototype to production. The Apache 2.0 license allows enterprises to self-host without being locked into the Vercel platform.
The latest version supports quick project initialization via `npx eve@latest init my-agent`, emphasizing writing instructions and skills in Markdown, tools in TypeScript, and enabling persistence by default (Durable by default), further simplifying the development process.
Key Features
- File System First Design: Each agent corresponds to a disk directory; all states, memories, and tool outputs are persisted to disk, making debugging and auditing as natural as a regular Node.js project
- Persistent Execution: Agents can recover from the last checkpoint after a crash, significantly improving long-running task reliability; persistence is enabled by default (Durable by default)
- Sandboxed Computation: Code execution occurs in an isolated sandbox with clear security boundaries
- Human-in-the-Loop Approval: Critical steps can be configured to require human review; key operations (deployment, database writes, payments) automatically pause for confirmation
- Multi-Channel Support: Agents can be triggered simultaneously via multiple entry points such as HTTP, Webhook, Slack, and Discord
- Versioned State: State changes can be versioned, facilitating rollback and comparison
- Apache 2.0 Open Source: Commercially usable and self-hostable without being locked into the Vercel platform
- Vercel Ecosystem Integration: Forms a closed loop with Vercel AI SDK, Next.js, and v0.dev, covering everything from prototype to production
Use Cases
- The go-to framework for developers wanting to add agent capabilities to Next.js / Vercel applications
- Production scenarios requiring long-running agent tasks (data migration, report generation, scheduled inspections)
- Enterprise agents with high debugging and auditing requirements (finance, compliance, legal)
- Full-stack rapid prototyping using v0.dev for design and Eve for backend agents
- Open-source enthusiasts looking to avoid the closed ecosystems of Claude Code / Codex
Pros
- File system first makes agents no longer a "black box"
- Six production-grade capabilities ready out of the box, no need to build infrastructure from scratch
- Apache 2.0 open source + self-hosting, no vendor lock-in
- Closed loop with Next.js / v0.dev / Vercel AI SDK, the most familiar stack for frontend developers
- From Vercel, with consistently top-tier DX (Developer Experience)
Pricing
**Completely open source and free** (Apache 2.0), commercially usable, self-hostable, and modifiable. **Model API costs** are covered by the developer's own OpenAI / Anthropic / xAI / local model accounts. **Vercel platform** deployment can leverage the unified billing convenience of Vercel AI Gateway.
Summary
Vercel Eve is the "Next.js moment" for the agent framework space — bringing Vercel's consistent philosophy of "developer experience first + file system intuition + end-to-end development flow" to agents. If you are a Next.js / Vercel user, Eve is almost a no-brainer choice; if you are building enterprise-grade agent products requiring auditing, long-running task recovery, and human-in-the-loop approval, Eve saves months compared to building infrastructure from scratch; if you are already deeply tied to LangGraph / CrewAI / AutoGen, you can wait and compare.