Fix sidebar lables not showign up

This commit is contained in:
anonymous
2026-01-10 20:10:17 -08:00
committed by Shirone
parent 4ab54270db
commit acce06b304
4 changed files with 13 additions and 5 deletions

View File

@@ -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',