eve

Build and debug durable AI agents with the eve filesystem-first framework.

Updated Jul 31, 2026
One-click install
npx skills add https://github.com/AarnavBaddam/skills --skill eve-aarnavbaddam
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eve
Source: https://github.com/AarnavBaddam/skills/tree/main/eve
Command: npx skills add https://github.com/AarnavBaddam/skills --skill eve-aarnavbaddam

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eve.

What problem does it solve? Building production AI agents requires managing sessions, tools, channels, and observability, which is difficult to structure and debug without a dedicated framework. This Skill guides you through creating, editing, and debugging agents with the eve framework, whose filesystem-first runtime compiles an agent directory into a durable backend agent. ## Core Features & Use Cases - Agent Scaffolding and Development: Create new agents with npx eve init and structure instructions, skills, tools, connections, channels, subagents, and schedules as files on disk. - Version-Matched Documentation: Read the bundled docs at node_modules/eve/docs/ so guidance always matches the installed eve version. - Production Observability: Debug deployed agents using Vercel Agent Runs via the Vercel MCP server or vercel agent-runs CLI to inspect runs, traces, tool calls, and token usage. - Use Case: You want to build a support agent with durable sessions and scheduled tasks. Scaffold it with eve, follow the bundled docs to define tools and channels, deploy to Vercel, then inspect agent run traces to diagnose unexpected behavior. ## Quick Start Scaffold a new eve agent by running npx eve init my-agent, then read node_modules/eve/docs/README.md before writing any agent code.

Frequently Asked Questions about eve

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new agent with the eve framework?

Run npx eve init <agent-name> to scaffold a new agent directory, or install eve with npm install eve in an existing project. Then read node_modules/eve/docs/README.md for the full documentation index before writing agent code.

How do I debug a deployed eve agent on Vercel?

Use Vercel Agent Runs observability through the Vercel MCP server or the vercel agent-runs CLI command. These expose run metadata, lifecycle events, full traces with turns, tool calls, and token usage for your deployed agent.

Where is the eve framework documentation located?

The complete documentation ships inside the eve package at node_modules/eve/docs/, starting with README.md. These bundled docs match your installed version exactly, so always read them instead of relying on external sources.

What features does the eve framework support for agents?

eve supports durable sessions, tools, skills, connections, channels, sandboxes, subagents, schedules, evals, and frontend clients. An agent is a directory on disk that eve compiles and runs as a durable backend agent.

Why is the vercel agent-runs command not found?

The agent-runs subcommand requires a recent Vercel CLI version. Check your version with vercel --version and upgrade with npm i -g vercel@latest, then run vercel agent-runs --help to see available subcommands.