The Rundown AI homepage

Independent tool overview

eve at a glance

eve is Vercel's open-source, filesystem-first TypeScript framework for building durable backend AI agents. It packages the production plumbing—sessions, sandboxed compute, approvals, tools, skills, subagents, channels, schedules, and evals—into a directory structure that teams can inspect and version in Git.

Visit the official eve site ↗
eve product preview
Product type
Open-source TypeScript agent framework
Maintainer
Vercel
License
Apache 2.0
Maturity
Public beta
Best fit
Developers shipping durable backend agents
Last reviewed
August 29, 2026

Overview

What eve is

eve treats an agent as a directory. Markdown files define instructions and reusable skills, TypeScript files define tools and runtime configuration, and folders add channels, schedules, connections, or specialist subagents. The result is readable at a glance and fits naturally into code review and deployment workflows.

The framework's strongest argument is operational rather than conversational. Each conversation runs as a durable workflow that can pause and resume; generated code executes in a separate sandbox; sensitive actions can require human approval; and the same agent can be exposed through HTTP, Slack, Discord, Teams, Telegram, Twilio, GitHub, Linear, or custom adapters.

eve is currently in beta. It is a strong fit for TypeScript teams already comfortable with Vercel's platform and code-first agent architecture, but it is not a no-code chatbot builder. Expect to own model selection, tool safety, eval coverage, observability, application logic, and the usage costs of the infrastructure and model providers behind the agent.

Use cases

Who eve is best for

The strongest fit depends on the job you need the product to complete, not the size of its feature list.

Production agent backends

Build agents that need durable sessions, isolated execution, approvals, deployment, and recovery rather than a short-lived chat loop.

TypeScript teams

Keep instructions in Markdown and runtime behavior in typed code inside the same repository and review process.

Multi-channel agents

Expose one agent through HTTP and supported team channels without rebuilding the core logic for every surface.

Governed automation

Put approval gates around expensive or destructive tools and use evals as deployment checks.

Capabilities

Core eve features

1

Filesystem-first authoring

Uses conventional agent folders for instructions, tools, skills, connections, subagents, channels, schedules, and sandbox configuration.

2

Durable sessions

Checkpoints agent work with Vercel's Workflow SDK so long-running conversations can pause for people, survive failures or deployments, and resume.

3

Sandboxed compute

Runs agent-generated code outside the application runtime. Deployed agents can use Vercel Sandbox, while local adapters include Docker, microsandbox, or just-bash.

4

Human approvals

Lets tool authors declare when an action needs approval, including conditional gates based on the proposed input.

5

Tools, skills, and connections

Supports typed tools, on-demand Markdown skills, MCP servers, OAuth connections, and model-provider fallbacks through AI Gateway.

6

Subagents and schedules

Agents can delegate to specialist directories with their own instructions and tools, or initiate work on a recurring schedule.

7

Channels and deployment

Includes HTTP by default and adapters for popular collaboration channels; an eve project deploys as a regular Vercel project with preview environments.

8

Evals in CI

The eve eval workflow can score behavioral suites and prevent a prompt, tool, or instruction regression from shipping.

Process

How the eve workflow works

  1. Step 1

    Scaffold the agent

    Start a new project with the current eve initializer or install eve into an existing TypeScript application.

  2. Step 2

    Define its role

    Write the always-on instructions in agent/instructions.md and choose or configure a model in agent/agent.ts.

  3. Step 3

    Add constrained capabilities

    Create typed tools and narrowly scoped skills, then add approval requirements to actions that are expensive, sensitive, or difficult to reverse.

  4. Step 4

    Connect systems and surfaces

    Configure MCP or service connections, then add HTTP, Slack, GitHub, or other channel adapters required by the use case.

  5. Step 5

    Test failure paths

    Exercise session continuation, timeouts, authorization, approval denial, tool errors, sandbox boundaries, and model-provider fallbacks.

  6. Step 6

    Deploy with eval gates

    Ship the Vercel project, validate the preview deployment, and run representative evals in CI before production promotion.

Cost

eve pricing and free plan

The eve framework is open source under the Apache 2.0 license and does not carry a separate framework subscription. A real deployment can still incur usage charges for Vercel hosting, Workflow, Sandbox, AI Gateway or model-provider calls, storage, and connected third-party services. Costs therefore depend on the architecture and agent workload rather than a fixed eve plan.

eve framework

Free and open source

The framework source is available under Apache 2.0.

  • No separate eve license fee
  • Self-hosting and modification permitted under the license
  • Beta APIs may change

Local development

Infrastructure-dependent

Run locally with supported sandbox adapters and your chosen model credentials.

  • Model-provider charges may apply
  • Local compute and Docker costs are your responsibility
  • Connected services may have their own pricing

Vercel deployment

Usage-based platform costs

Production costs follow the Vercel services and model traffic the agent consumes.

  • Hosting and function usage
  • Workflow and Sandbox usage where applicable
  • AI Gateway or direct model-provider usage
  • Check current Vercel pricing before estimating production cost

Pricing checked . Check current pricing at the source ↗

Assessment

eve strengths and limitations

Where it stands out

  • Readable directory structure keeps agent behavior reviewable in Git
  • Durability, sandboxing, approvals, channels, subagents, schedules, and evals are integrated
  • Typed TypeScript tools reduce ambiguity at system boundaries
  • Model and connection adapters avoid locking every component to one provider
  • Local-to-production workflow aligns well with existing Vercel teams

What to consider

  • The framework is in beta, so APIs, behavior, and documentation can change before general availability
  • It is code-first and expects TypeScript, deployment, security, and production operations experience
  • Open-source software does not mean a production agent is free; model, sandbox, workflow, hosting, and service usage can become material
  • The easiest deployment path is closely aligned with Vercel services even though parts of the system use adapters
  • Teams still need careful authorization, least-privilege tools, data controls, eval design, monitoring, and incident procedures

Compare

eve alternatives

The right alternative depends on the specific output, workflow, controls and budget your project requires.

Agents

Agent Builder

Consider OpenAI Agent Builder when a visual workflow canvas and OpenAI's hosted agent stack are a better fit than a filesystem-first TypeScript framework.

Explore Agent Builder

Coding

AgentOps

Consider AgentOps when the immediate need is observing, testing, and debugging agents built with another framework.

Explore AgentOps

Business Operations

n8n

Consider n8n for a broader visual automation platform with agent steps and a large integration catalog.

Explore n8n

Agents

GitHub Agent HQ

Consider GitHub Agent HQ when the goal is orchestrating coding agents around repositories rather than building a general backend agent runtime.

Explore GitHub Agent HQ

Questions

eve FAQs

What is eve by Vercel?

eve is an open-source, filesystem-first TypeScript framework for durable backend AI agents. Instructions, skills, tools, connections, channels, subagents, and schedules are represented as files and folders.

Is eve free?

The framework itself is free and open source under Apache 2.0. You still pay for the models, hosting, workflows, sandboxes, storage, and third-party services used by a production agent.

Is eve production-ready?

Vercel says it runs its own agents on eve, but the public project is currently labeled beta and its APIs and behavior may change. Evaluate that stability tradeoff before adopting it for a critical system.

Does eve only work with Vercel?

The framework uses adapters for models and some infrastructure, and local sandbox options include Docker and microsandbox. Its documented production path is most integrated with Vercel, and support for other deployment platforms is still developing.

Which models can eve use?

eve supports model configuration and provider fallbacks through Vercel AI Gateway, so it is not limited to one model vendor. Availability and costs follow the selected providers.

How does eve handle dangerous agent actions?

Tool definitions can require human approval, including conditional approval based on the proposed input. That is useful, but teams must still design authorization, tool scope, validation, audit logs, and failure handling.

Bottom line

Our eve verdict

eve is a compelling batteries-included framework for TypeScript teams that want agent behavior to remain legible as files while gaining durability, isolated compute, approvals, channels, and evals. Its beta status and Vercel-centric production path are the main tradeoffs. Prototype a representative agent, measure the full infrastructure and model cost, and test safety and recovery paths before standardizing on it.

Visit eve website ↗
The Rundown University

AI training for the future of work.

Get access to all our AI courses, hundreds of real-world AI use cases, live expert-led workshops, an exclusive network of AI early adopters, and more.

AI Courses

Get unlimited access to all of our current & upcoming industry-specific AI courses for the duration of your subscription.

Daily Guides

To keep up with the rapid pace of AI, our team publishes AI implementation guides daily. Our library contains 300+ practical use cases to automate real-world work.

Workshops

Join weekly, live, interactive sessions with industry leaders who are at the forefront of AI for hands-on implementation guidance and exclusive insights.

Community

Network with an exclusive community of AI-first professionals who are working smarter with AI. Learn how early adopters are using AI in their work and businesses.