eve

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eve, vercel.

What problem does it solve? Building backend AI agents often means 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 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. - Vercel Agent Runs Debugging: Inspect runtime activity of deployed agents through the Vercel MCP server or the vercel agent-runs CLI, including traces, turns, messages, reasoning, tool calls, and token usage. - 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 list recent runs, inspect full traces with tool input/output, and diagnose the issue before changing 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 in 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 eve agent project?

Scaffold a new eve agent by running `npx eve init <agent-name>`, which creates the agent directory structure. 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. These expose recent runs, lifecycle events, full traces with turns, messages, reasoning, tool calls, and token usage.

What components can an eve agent directory contain?

An eve agent is a directory on disk containing instructions, skills, tools, connections, channels, sandboxes, subagents, schedules, and evals, all represented as files. The eve framework compiles and runs this directory.

Why is vercel agent-runs command not found?

The `vercel 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 framework documentation?

The complete eve documentation ships inside the installed package at node_modules/eve/docs/, starting with README.md which contains the full index and reading order. These bundled docs always match your installed version exactly.