eve

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

eve

eve

eve is a filesystem-first framework for durable backend AI agents. An agent is a directory on disk — instructions, skills, tools, connections, channels, subagents, and schedules are all files — and eve compiles and runs it.
eve是一款优先基于文件系统的后端持久化AI Agent框架。一个Agent就是磁盘上的一个目录——指令、skills、tools、connections、channels、subagents和schedules均以文件形式存在——eve会编译并运行它。

Source of truth

权威参考文档

The complete documentation ships inside the
eve
package. Do not rely on this skill for guidance — always read the bundled docs, which match the installed version exactly:
node_modules/eve/docs/
Start with
node_modules/eve/docs/README.md
. It contains the full index and recommended reading order. Before writing any eve code, read the relevant guide there first.
If
eve
is not installed yet, install it (
npm install eve
) or scaffold a new agent with
npx eve init <agent-name>
, then read the bundled docs.
完整文档随
eve
包一同发布。请勿依赖本skill获取指导——请务必阅读捆绑的文档,其内容与安装的版本完全匹配:
node_modules/eve/docs/
node_modules/eve/docs/README.md
开始阅读。它包含完整索引及推荐阅读顺序。在编写任何eve代码之前,请先阅读其中相关的指南。
如果尚未安装
eve
,请执行安装命令(
npm install eve
)或使用
npx eve init <agent-name>
搭建新Agent,然后阅读捆绑的文档。