@rauchg: Agents are particularly hard-to-debug software. For one, and by design, AI models behave in non-deterministic ways. Eve…
Summary
Vercel launched Eve, an agent framework with built-in observability, debugging, durable execution, and sandboxed compute, aiming to simplify production agent development.
View Cached Full Text
Cached at: 06/27/26, 08:01 PM
Agents are particularly hard-to-debug software.
For one, and by design, AI models behave in non-deterministic ways. Even two identical prompts don’t always yield the same output.
But agents are also complex distributed systems. They involve multiple steps of computation across functions and sandboxes, touching dozens of API services that can go down, rate limit you, etc.
Nailing down observability out of the box for http://eve.dev on Vercel was a key priority for the team, and the feedback so far has been ↓
eve – The Agent Framework - Vercel
Source: https://vercel.com/eve
The framework for building agents
Like Next.js for web apps, but for agents. Markdown for instructions and skills, TypeScript for tools. Durable by default.
An agent is a directory
Define instructions and skills in markdown, tools in TypeScript, and deploy. The framework compiles the directory, wires up durable workflows, and connects channels.
Leverages all Vercel AI primitives
AI Gateway for model calls, Sandboxes, Workflows, and Connect. All critical agent infrastructure works out of the box, no gluing point solutions together.
Everything you need for production agents
Enterprise governance, observability, and sandboxed compute come standard. Focus on building, not infrastructure.
- Durable executionWorkflows survive crashes and restarts. Every step is checkpointed. Agents park when waiting, resume on the next message.
- Sandboxed computeAgents spin up isolated VMs on demand. File system access, bash execution, and code runs, all completely isolated.
- Multi-channel deliveryOne agent codebase deploys to web chat, Slack, API, cron, CLI, and custom apps.
- Human-in-the-loopTools that need confirmation trigger approval gates. Sessions park until resolved, then resume seamlessly.
- SubagentsDelegate specialized work to child agents with their own prompts, tools, and sandbox.
- EvaluationsDefine test suites with scoring rubrics. Run evals on every deployment and on a schedule.
Build your first agent today.
Vercel Developers (@vercel_dev): You can now trace and debug eve agent runs with Vercel Observability.
Inspect model and tool calls, runtime errors, and token usage in one place.
Similar Articles
@rauchg: Agentic self-improvement. Give your agent the ability to introspect its past runs, spot inefficiencies, errors, redunda…
Eve is a framework for building durable, production-ready AI agents with built-in observability, introspection, and self-improvement capabilities, designed to work seamlessly with Next.js and Vercel deployments.
@rauchg: eve evals itself with 𝚎𝚟𝚎 𝚎𝚟𝚊𝚕. Web frameworks made testing an ecosystem choice. e.g.: React didn’t ship with a …
eve now ships with built-in eval capabilities for agents, addressing the need for first-class testing in AI agent development.
@rauchg: Make the model a cog in a machine you own. AI SDK → open model API http://Eve.dev → open Agent API AI Gateway → open ZD…
Eve is a new open-source framework for building durable, self-hosted AI agents, inspired by Next.js, emphasizing data ownership and production-ready features like sandboxing, human-in-the-loop, and evals.
@rauchg: The filesystem is beautiful. Want your http://eve.dev agent to have GitHub powers? Define 𝚝𝚘𝚘𝚕𝚜/𝚐𝚒𝚝𝚑𝚞𝚋.𝚝𝚜 …
Vercel's Guillermo Rauch announces Eve, a framework for building durable AI agents with GitHub integration, featuring sandboxing, human-in-the-loop, and open-source self-hosting.
@rauchg: “The others make the easy part easier. Vercel makes the hard part easy” – direct quote today from tech lead for AI agen…
Guillermo Rauch announces eve, a durable AI agent framework from Vercel Labs that runs natively with React and Next.js, featuring built-in sandboxing, human-in-the-loop, and evaluation capabilities.