Extend eve agents with installable extensions
eve agents now support installable extensions that bundle tools and skills for distribution via npm.
You can now package tools, connections, skills, instructions, and hooks into extensions that any agent can import. Extensions can be published to package registries like npm, then installed, versioned, and upgraded like any other project dependency.eve A browser-use extension might ship tools for navigating a site, a memory extension can capture context with hooks and recall it with tools, and a self-improvement extension pairs hooks with dynamic instructions. Scaffold a new extension with a single command: This creates the package, installs dependencies, and initializes Git. The generated package is shaped like an agent, with tools, connections, skills, and hooks following the same file conventions.
When the extension is ready, running generates the publishable package.eve extension build To use an extension, install the package and import it from a file in :agent/extensions/ The filename sets the namespace, so the extension's search tool runs in the agent as .crm__search Extensions allow you to: Read the to get started.documentation Read more Declare a config schema using a standard schema library, such as Zod. Consumer settings are validated on import and typed everywhere the…