export interface GitContextInfo { branch: string; commit: string; commitMessage: string; author: string; timestamp: string; changedFiles: string[]; diffSummary: { insertions: number; deletions: number; filesChanged: number; }; } /** * Collects the current git context automatically from the working directory. * This is used to auto-fill the reentry status with real git data. */ export declare function collectGitContext(): Promise; /** * Infer the current project phase based on git data and recent changes. */ export declare function inferPhase(context: GitContextInfo, currentVersion: string): string; /** * Generate a suggested next step based on the last commit context. */ export declare function suggestNextStep(context: GitContextInfo): string; //# sourceMappingURL=git-context.d.ts.map