export interface DaemonConfig { projectId: string; apiUrl: string; apiKey: string; watchPath: string; checkOnChange: boolean; bridgeEnabled: boolean; verbose: boolean; } export interface DaemonState { isRunning: boolean; startedAt: string | null; filesChecked: number; violationsFound: number; tasksProcessed: number; lastActivity: string | null; }