Add global session history and naming workflow

This commit is contained in:
Dmitry Lyalin
2026-02-12 23:29:34 -05:00
parent d82f66973f
commit 0806784b90
27 changed files with 1434 additions and 895 deletions
@@ -15,6 +15,14 @@ interface PersistentStateData {
tipsShown?: number;
hasSeenScreenReaderNudge?: boolean;
focusUiEnabled?: boolean;
sessionRecovery?: {
sessionId: string;
sessionName: string;
sessionPath: string;
projectRoot: string;
dirtyExit: boolean;
updatedAt: string;
};
// Add other persistent state keys here as needed
}