Interface IDiagnosticsInfo

Diagnostics info from antigravity.getDiagnostics.

VERIFIED: returns 176KB JSON string with 8 top-level keys: isRemote, systemInfo, extensionLogs, rendererLogs, mainThreadLogs, agentWindowConsoleLogs, languageServerLogs, recentTrajectories.

interface IDiagnosticsInfo {
    isRemote: boolean;
    raw: Record<string, unknown>;
    systemInfo: {
        operatingSystem: string;
        timestamp: string;
        userEmail: string;
        userName: string;
    };
}

Properties

isRemote: boolean

Whether IDE is running remotely (SSH)

raw: Record<string, unknown>

Raw JSON for fields not yet typed

systemInfo: {
    operatingSystem: string;
    timestamp: string;
    userEmail: string;
    userName: string;
}

System info