eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 425 B
TypeScript
import { type ProjectSource } from "#discover/project-source.js";
export declare function isEveProjectRoot(root: string, options?: {
readonly source?: ProjectSource;
}): Promise<boolean>;
/** Find the nearest package boundary and return it only when it owns an eve project. */
export declare function findEveProjectRoot(startPath: string, options?: {
readonly source?: ProjectSource;
}): Promise<string | undefined>;