UNPKG

eve

Version:

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

7 lines (6 loc) 485 B
/** Returns whether a token belongs to eve's framework-reserved session command namespace. */ export declare function isReservedSessionCommandToken(token: string): boolean; /** Returns whether a token is the stable command inbox for one workflow run. */ export declare function isSessionCommandHookToken(token: string): boolean; /** Derives the framework-reserved stable command inbox token for a session. */ export declare function sessionCommandHookToken(sessionId: string): string;