@squidcloud/client
    Preparing search index...

    Interface AnalyzeCodeResult

    Returns a source-code analysis answer and its evidence.

    interface AnalyzeCodeResult {
        answer: string;
        fetchTimestamp: string;
        repositories: SourceCodeRepositoryEvidence[];
        stale: boolean;
        warnings: string[];
        workspacePersistenceWarning?: string;
    }
    Index
    answer: string

    Contains the concise answer.

    fetchTimestamp: string

    Stores the latest snapshot fetch time.

    Lists repository evidence supporting the answer.

    stale: boolean

    Marks whether any source snapshot is stale.

    warnings: string[]

    Lists warnings encountered during analysis.

    workspacePersistenceWarning?: string

    Warns when a prepared workspace cannot persist.