EveryDev.ai
Sign inSubscribe
Home
Tools

2,788+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents1815
  • Coding1295
  • Infrastructure600
  • Marketing467
  • Projects433
  • Research403
  • Analytics351
  • Design338
  • Security243
  • MCP242
  • Testing238
  • Data230
  • Integration178
  • Prompts160
  • Learning159
  • Communication154
  • Extensions150
  • Voice130
  • Commerce125
  • DevOps108
  • Web80
  • Finance21
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Eve
    Eve icon

    Eve

    Agent Frameworks
    Featured

    Eve is Vercel's open-source agent framework that lets developers build, run, and scale production AI agents using a file-based convention—no infrastructure assembly required.

    Visit Website

    At a Glance

    Pricing
    Open Source
    Free tier available

    Free forever plan for personal projects and web apps on Vercel, which hosts Eve agents.

    Pro: $20/mo
    Enterprise: Custom/contact

    Engagement

    Available On

    Windows
    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksAI InfrastructureMulti-agent Systems

    Alternatives

    Sentient FoundationProject TapestryAgentspan
    Developer
    VercelSan Francisco, CAEst. 2015$863M raised

    Listed Jun 2026

    About Eve

    Eve is an open-source agent framework from Vercel, designed to let developers build, run, and scale AI agents in production without manually assembling infrastructure. It draws an explicit parallel to Next.js: just as a Next.js folder becomes a route by convention, an Eve file becomes an agent capability by convention, with no boilerplate or manual wiring required. The public preview is open now, and the CLI wizard gets a developer from nothing to a running local dev server in under a minute.

    What It Is

    Eve is a file-first agent framework where an agent is defined as a directory of files, each describing one component of the agent's behavior. agent.ts sets the model and options; instructions.md is the system prompt prepended to every model call; files under tools/ are typed TypeScript functions using defineTool with Zod schemas; files under skills/ are markdown documents loaded contextually by the model; and subagents/, channels/, and schedules/ directories extend the agent further. Because everything is a file, the entire agent lives in Git with diffs, reviews, and history like any other codebase.

    Production Infrastructure Built In

    Eve ships with durable execution, a sandboxed compute environment, human-in-the-loop approvals, multi-channel support, tracing, and evals—all included by default.

    • Durability is built on Vercel's open-source Workflow SDK: every conversation is checkpointed step by step, so a session can survive a crash or redeploy and resume exactly where it stopped.
    • Sandboxing isolates agent-generated code from the application runtime entirely; locally it uses Docker, microsandbox, or just-bash, and in production it switches to Vercel Sandbox automatically.
    • Approvals are a single field on a tool definition (needsApproval), which can accept a function to evaluate dynamically; the agent pauses indefinitely without consuming compute until a person responds.
    • Tracing produces a standard OpenTelemetry span tree that exports to Braintrust, Honeycomb, Datadog, Jaeger, or any other tracing service, and surfaces in Vercel's Observability tab under "Agent Runs" when deployed.
    • Evals let developers write scored test suites alongside the agent, checking tool calls, rule adherence, and expected reply content; these can run locally or be wired into CI as a deploy gate.

    Connections, Channels, and Scheduling

    Agents connect to external services through connection files that point at MCP servers or any OpenAPI-compatible API, with Eve brokering auth so the model never sees credentials or URLs. At launch, Vercel states supported integrations include Slack, GitHub, Snowflake, Salesforce, Notion, and Linear, plus any OAuth or API-key-protected service.

    Channels work by convention: running eve channel add slack writes a single channels/slack.ts file, and the deployed agent immediately answers in Slack with platform-native UI elements like approval buttons and select menus. Schedules are one additional file with a cron expression, which on Vercel deploys automatically as a Vercel Cron Job.

    How Vercel Uses Eve Internally

    Vercel states it runs over a hundred agents in production on Eve today. According to Vercel's own published claims:

    • d0, the most-used internal tool, handles more than 30,000 questions a month by letting any employee ask warehouse data questions in Slack, scoped to their own permissions.
    • "Lead Agent", an autonomous SDR, works every inbound lead immediately and follows up independently.
    • "Vertex", the support agent, resolves 92% of support tickets on its own across the help center, docs, and Slack, escalating the remaining 8% to the human team.
    • "V", a routing agent, receives all Slack tasks and dispatches them to whichever specialist agent in the fleet is best suited.

    Current Status: Public Preview

    Eve is currently in public preview. Vercel states that a year ago agents triggered less than 3% of deployments on Vercel, and that figure has risen to around 29%, with agents expected to account for half of all deployments in the near future. Source code and discussions are public at github.com/vercel/eve, and documentation is available at eve.dev/docs, with the docs also bundled inside the npm package at node_modules/eve/docs once installed. Eve works with any model and any MCP server, and support for deployment targets beyond Vercel is described as forthcoming.

    Eve - 1

    Community Discussions

    Be the first to start a conversation about Eve

    Share your experience with Eve, ask questions, or help others learn from your insights.

    Pricing

    FREE

    Hobby

    Free forever plan for personal projects and web apps on Vercel, which hosts Eve agents.

    • Import repo and deploy in seconds
    • Automatic CI/CD
    • Web Application Firewall
    • Global automated CDN
    • Fluid compute

    Pro

    Popular

    Everything needed to build and scale apps and agents on Vercel, including Eve deployments.

    $20
    per month
    • All Hobby features
    • $20 of included usage credit
    • Advanced spend management
    • Team collaboration & free viewer seats
    • Faster builds + no queues
    • Cold start prevention
    • Enterprise add-ons

    Enterprise

    Critical security, performance, observability, platform SLAs, and support for large teams.

    Custom
    contact sales
    • All Pro features
    • Guest & Team access controls
    • SCIM & Directory Sync
    • Managed WAF Rulesets
    • Multi-region compute & failover
    • 99.99% SLA
    • Advanced Support
    View official pricing

    Capabilities

    Key Features

    • File-based agent definition (agent.ts, instructions.md, tools/, skills/)
    • Durable execution with step-by-step checkpointing via Vercel Workflow SDK
    • Sandboxed compute environment (Docker, microsandbox, or Vercel Sandbox in production)
    • Human-in-the-loop approvals via needsApproval field on tool definitions
    • Multi-channel support (Slack, and more) via convention-based channel files
    • Cron-based scheduling via schedule files deployed as Vercel Cron Jobs
    • MCP server and OpenAPI-compatible API connections with brokered auth
    • OpenTelemetry-based tracing exportable to Braintrust, Honeycomb, Datadog, Jaeger
    • Scored eval test suites runnable locally or in CI
    • Preview deployments per commit with channel support
    • Local dev server with terminal UI showing real-time step traces
    • TypeScript tool definitions with Zod schema validation
    • Skill files (markdown) loaded contextually by the model
    • Subagent support via subagents/ directory
    • Works with any LLM model and any MCP server

    Integrations

    Slack
    GitHub
    Snowflake
    Salesforce
    Notion
    Linear
    Braintrust
    Honeycomb
    Datadog
    Jaeger
    Docker
    MCP servers
    OpenAPI-compatible APIs
    Vercel Sandbox
    Vercel Cron Jobs
    Vercel Observability
    API Available
    View Docs

    Reviews & Ratings

    No ratings yet

    Be the first to rate Eve and help others make informed decisions.

    Developer

    Vercel

    Vercel is a platform for frontend developers that provides the developer experience, tools, and processes to create high-quality web applications.

    Founded 2015
    San Francisco, CA
    $863M raised
    862 employees

    Used by

    OpenAI
    Anthropic
    PayPal
    Nike
    +39 more
    Read more about Vercel
    WebsiteGitHubX / Twitter
    12 tools in directory

    Similar Tools

    Sentient Foundation icon

    Sentient Foundation

    Open-source AGI foundation uniting builders, researchers, and communities to develop transparent, collaborative artificial general intelligence.

    Project Tapestry icon

    Project Tapestry

    An open-source platform by the AI Alliance designed to enable collaborative, sovereign AI development across organizations and communities.

    Agentspan icon

    Agentspan

    An open-source, durable runtime and SDK for AI agents that survive process crashes, scale across machines, and pause for human approval without losing state.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    406 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    279 tools

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    201 tools
    Browse all topics
    Back to all toolsSuggest an edit
    Discussions