eve

Guides creation and debugging of eve framework backend AI agent projects.

30.0k|4.8k|Updated Feb 23, 2024
One-click install
npx skills add https://github.com/ComposioHQ/composio --skill eve
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eve
Source: https://github.com/ComposioHQ/composio/tree/main/.agents/skills/eve
Command: npx skills add https://github.com/ComposioHQ/composio --skill eve

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires eve, and includes references (resource) components.

What problem does it solve?

Building durable backend AI agents with the eve framework requires knowing its filesystem-first conventions for instructions, skills, tools, connections, channels, sandboxes, subagents, schedules, and evals, and this Skill routes you to the correct version-matched documentation before you write any code.

Core Features & Use Cases

  • Documentation Routing: Directs you to the bundled docs at node_modules/eve/docs/README.md so guidance always matches the installed eve version.
  • Project Scaffolding Guidance: Covers installing eve via npm and scaffolding new agents with npx eve init when the package is not yet present.
  • Use Case: When editing an eve agent's subagent configuration or debugging a schedule, use this Skill to locate the exact guide in the bundled docs instead of relying on outdated or memorized framework knowledge.

Quick Start

Ask the assistant to help create or debug an eve agent project and have it read the bundled eve documentation first.

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 on disk. Then read node_modules/eve/docs/README.md for the full documentation index before writing any code.

Where is the eve framework 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 and should be preferred over external or memorized guidance.

What can an eve agent directory contain?

An eve agent is a directory on disk containing instructions, skills, tools, connections, channels, subagents, and schedules as files. The eve framework compiles and runs this directory as a durable backend AI agent.

What should I do if eve is not installed yet?

Install the package with npm install eve, or scaffold a new agent directly with npx eve init <agent-name>. Installing first ensures the bundled documentation matches the version you will actually use.

Why should I not rely on this Skill for eve framework guidance?

This Skill acts only as a router to the bundled documentation, which is the source of truth. Framework guidance copied from memory or older docs may not match your installed eve version and can lead to incorrect code.