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.