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就是磁盘上的一个目录——指令、技能、工具、连接、通道、子Agent、调度规则均以文件形式存在——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项目,再阅读随包文档。