eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 669 B
TypeScript
import type { AgentSourceManifest } from "#discover/manifest.js";
import { type CompiledAgentManifest } from "#compiler/manifest.js";
import { type CompilerDiagnostic } from "#compiler/diagnostics.js";
import { type AgentSourceRegistry } from "#compiler/source-graph.js";
export interface CompileAgentManifestOptions {
readonly diagnostics?: CompilerDiagnostic[];
readonly sourceRegistries?: readonly AgentSourceRegistry[];
}
/** Compiles one discovery graph through the canonical source composition pipeline. */
export declare function compileAgentManifest(manifest: AgentSourceManifest, options?: CompileAgentManifestOptions): Promise<CompiledAgentManifest>;