eve

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

Updated Aug 21, 2025
One-click install
npx skills add https://github.com/Adithiya-S/AI-Study-Companion --skill eve-adithiya-s
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eve
Source: https://github.com/Adithiya-S/AI-Study-Companion/tree/main/.agents/skills/eve/upstream
Command: npx skills add https://github.com/Adithiya-S/AI-Study-Companion --skill eve-adithiya-s

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eve, vercel.

What problem does it solve? Building backend AI agents often involves scattered configuration and opaque runtime behavior. This Skill guides you through the eve framework, where an agent is a directory on disk containing instructions, skills, tools, connections, channels, subagents, and schedules as plain files, and helps you debug deployed agents using Vercel Agent Runs observability. ## Core Features & Use Cases - Filesystem-First Agent Development: Create and edit eve agents where every component (instructions, tools, connections, channels, sandboxes, subagents, schedules, evals) is a file compiled and run by eve. - Version-Matched Documentation: Reads the bundled docs at node_modules/eve/docs/ so guidance always matches the installed eve version. - Runtime Observability: Debug deployed agents on Vercel through Agent Runs, inspecting run metadata, lifecycle events, traces, tool calls, and token usage via the Vercel MCP server or the vercel agent-runs CLI. - Use Case: You scaffold a new agent with npx eve init, define its tools and subagents as files, deploy to Vercel, then inspect a failing production run's full trace to find the exact tool call that errored. ## Quick Start Ask the assistant to scaffold a new eve agent and walk you through the bundled documentation 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 eve agent project?

Scaffold a new agent with npx eve init <agent-name>, or install eve into an existing project with npm install eve. Then read the bundled documentation at node_modules/eve/docs/README.md before writing any 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. It exposes run metadata, lifecycle events, full traces with turns, messages, tool calls, and token usage for deployed agents.

Where is the official eve framework documentation?

The complete documentation ships inside the eve npm package at node_modules/eve/docs/. Start with the README.md there, which contains the full index and recommended reading order matching your installed version.

What can an eve agent directory contain?

An eve agent directory can contain instructions, skills, tools, connections, channels, sandboxes, subagents, schedules, and evals, all defined as files on disk. The eve framework compiles and runs the agent from this directory.

Why is vercel agent-runs command not found?

The agent-runs subcommand requires a recent Vercel CLI version. Check your version with vercel --version, upgrade with npm i -g vercel@latest, then verify availability with vercel agent-runs --help.