mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
Fix sidebar lables not showign up
This commit is contained in:
@@ -380,6 +380,12 @@ export interface GlobalSettings {
|
||||
/** Mute completion notification sound */
|
||||
muteDoneSound: boolean;
|
||||
|
||||
// Notification Command
|
||||
/** Custom command to execute for all notifications (empty = disabled) */
|
||||
notificationCommand: string;
|
||||
/** How to pass notification data to the command */
|
||||
notificationCommandMode: 'args' | 'stdin' | 'env';
|
||||
|
||||
// AI Model Selection (per-phase configuration)
|
||||
/** Phase-specific AI model configuration */
|
||||
phaseModels: PhaseModelConfig;
|
||||
@@ -699,6 +705,8 @@ export const DEFAULT_GLOBAL_SETTINGS: GlobalSettings = {
|
||||
defaultPlanningMode: 'skip',
|
||||
defaultRequirePlanApproval: false,
|
||||
muteDoneSound: false,
|
||||
notificationCommand: '',
|
||||
notificationCommandMode: 'args',
|
||||
phaseModels: DEFAULT_PHASE_MODELS,
|
||||
enhancementModel: 'sonnet',
|
||||
validationModel: 'opus',
|
||||
|
||||
Reference in New Issue
Block a user