export interface BashRunParams { command: string; cwd: string; timeout_s?: number; env?: Record; profile?: string; } export interface BashRunDTO { exit_code: number | null; signal: string | null; stdout: string; stdout_truncated: boolean; stderr: string; stderr_truncated: boolean; timed_out: boolean; duration_ms: number; }