UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

7 lines (6 loc) 338 B
import type { AgentSourceManifest } from "#discover/manifest.js"; import { type CompiledAgentManifest } from "#compiler/manifest.js"; /** * Compiles one discovery manifest into the normalized manifest loaded by the runtime. */ export declare function compileAgentManifest(manifest: AgentSourceManifest): Promise<CompiledAgentManifest>;