arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
24 lines • 605 B
TypeScript
export interface AutoRefreshOptions {
cwd: string;
maxAgeHours?: number;
silent?: boolean;
force?: boolean;
}
/**
* Check if graph DB needs refresh and auto-refresh if stale
* Called on session start (first command)
*/
export declare function checkAndRefreshGraph(options: AutoRefreshOptions): Promise<{
refreshed: boolean;
reason?: string;
}>;
/**
* Get graph DB staleness info
*/
export declare function getGraphStaleness(cwd: string): {
exists: boolean;
lastIngest?: string;
ageHours?: number;
isStale: boolean;
};
//# sourceMappingURL=auto-refresh.d.ts.map