@oss-autopilot/core - v1.6.3
    Preparing search index...

    Interface StartupOutput

    Output of the startup command (combines auth, setup, daily, dashboard, issue list).

    Three valid shapes:

    1. Setup incomplete: { version, setupComplete: false }
    2. Auth failure: { version, setupComplete: true, authError: "..." }
    3. Success: { version, setupComplete: true, daily, dashboardUrl?, issueList? }
    interface StartupOutput {
        authError?: string;
        autoDetected?: boolean;
        daily?: DailyOutput;
        dashboardUrl?: string;
        issueList?: IssueListInfo;
        setupComplete: boolean;
        version: string;
    }
    Index

    Properties

    authError?: string
    autoDetected?: boolean

    True when username was auto-detected on first run (zero-config).

    daily?: DailyOutput
    dashboardUrl?: string

    URL of the interactive SPA dashboard server, when running (e.g., "http://localhost:3000")

    issueList?: IssueListInfo
    setupComplete: boolean
    version: string