eve

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

Updated Sep 5, 2026
One-click install
npx skills add https://github.com/dsgalkar/dnyaneshwar_portfolio --skill eve-dsgalkar
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eve
Source: https://github.com/dsgalkar/dnyaneshwar_portfolio/tree/main/.agents/plugins/vercel/skills/eve/upstream
Command: npx skills add https://github.com/dsgalkar/dnyaneshwar_portfolio --skill eve-dsgalkar

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eve, vercel.

What problem does it solve? Building backend AI agents that persist across sessions requires managing instructions, tools, connections, and schedules as scattered configuration. This Skill guides you through the eve framework, which treats an agent as a directory of files on disk that eve compiles and runs, 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 instructions, skills, tools, connections, channels, subagents, and schedules are all files compiled by the framework. - Agent Runs Observability: Inspect runtime activity of deployed agents through the Vercel MCP server or the vercel agent-runs CLI, including traces, turns, tool calls, token usage, and subagent data. - Version-Matched Documentation: Always read the bundled docs at node_modules/eve/docs/ so guidance matches the installed eve version exactly. - Use Case: You deployed an eve agent on Vercel and it behaves unexpectedly. Use this Skill to query recent runs and full traces via vercel agent-runs instead of guessing from source code. ## Quick Start Ask the assistant to scaffold a new eve agent with npx eve init my-agent and then read 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?

Scaffold a new eve agent by running `npx eve init <agent-name>`, which creates the agent directory on disk. 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 Agent Runs observability through the Vercel MCP server or the `vercel agent-runs` CLI to inspect recent runs, lifecycle events, full traces, tool calls, and token usage. Run `vercel agent-runs --help` to see the current subcommands.

What is the eve framework for AI agents?

eve is a filesystem-first framework for durable backend AI agents where an agent is a directory on disk. Instructions, skills, tools, connections, channels, subagents, and schedules are all files that eve compiles and runs.

Why is 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 verify with `vercel agent-runs --help`.

Where is the official eve documentation located?

The complete eve documentation ships inside the installed package at node_modules/eve/docs/, starting with README.md. These bundled docs match your installed version exactly, so prefer them over external sources.