eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
16 lines (15 loc) • 531 B
TypeScript
import { type AgentIdentity, type StartOperation } from "#subagents/handles/store.js";
/**
* Mints deterministic parent-controlled ownership data before the child exists,
* so durable step replays derive the same handle record.
*/
export declare function mintStartOperation(input: {
readonly callId: string;
readonly name: string;
readonly nodeId: string;
readonly parentSessionId: string;
readonly parentTurnId: string;
}): {
readonly identity: AgentIdentity;
readonly operation: StartOperation;
};