eve

Builds durable backend AI agents using the filesystem-first eve framework.

Updated Aug 6, 2026
One-click install
npx skills add https://github.com/EricL2001/spoke-and-mirror --skill eve-ericl2001
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eve
Source: https://github.com/EricL2001/spoke-and-mirror/tree/main/agent/skills/eve
Command: npx skills add https://github.com/EricL2001/spoke-and-mirror --skill eve-ericl2001

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eve.

What problem does it solve? Building backend AI agents often involves scattered configuration and ad-hoc code. This Skill guides you through the eve framework, where an agent is a directory on disk — instructions, skills, tools, connections, channels, subagents, and schedules are all files that eve compiles and runs. ## Core Features & Use Cases - Filesystem-First Agents: Define agent instructions, skills, tools, and connections as plain files in a directory. - Full Agent Surface: Covers channels, sandboxes, subagents, schedules, and evals for durable backend agents. - Version-Matched Docs: Points you to the bundled documentation in node_modules/eve/docs so guidance always matches the installed version. - Use Case: Scaffold a new agent with npx eve init, then create skills, tools, and a schedule as files, and let eve compile and run the agent. ## 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?

Run npx eve init <agent-name> to scaffold a new agent directory, or install the package with npm install eve. Then read node_modules/eve/docs/README.md for the full index and recommended reading order before writing code.

What is the eve framework for AI agents?

eve is a filesystem-first framework for durable backend AI agents. An agent is a directory on disk containing instructions, skills, tools, connections, channels, subagents, and schedules as files, which eve compiles and runs.

Where is the eve documentation located?

The complete documentation ships inside the eve package at node_modules/eve/docs. Start with the README.md there, which contains the full index and matches your installed version exactly.

Can I define agent schedules and subagents as files in eve?

Yes, eve treats schedules, subagents, channels, sandboxes, tools, and connections as files within the agent directory. The framework compiles these files and runs the resulting agent.

What should I do before writing eve agent code?

Read the relevant guide in node_modules/eve/docs first, since the bundled docs match the installed version exactly. If eve is not installed, run npm install eve or scaffold an agent with npx eve init.