[Haik]: ckpt, auto spawn sub agent feature done and toggleable via settings

This commit is contained in:
haikdc
2026-03-20 12:25:49 -07:00
parent 6dcfb19b17
commit 03c1cb1c91
4 changed files with 116 additions and 1 deletions
@@ -24,6 +24,7 @@ export interface AppSettings {
browser_homepage: string;
auto_select_mode_on_new_agent: boolean;
expand_new_chats_in_dashboard: boolean;
auto_reveal_sub_agents: boolean;
dev_mode: boolean;
}
@@ -55,6 +56,7 @@ const initialState: SettingsState = {
browser_homepage: 'https://www.google.com',
auto_select_mode_on_new_agent: false,
expand_new_chats_in_dashboard: false,
auto_reveal_sub_agents: true,
dev_mode: false,
},
loading: false,