@oss-autopilot/core - v3.14.5
    Preparing search index...

    Interface FetchCorpusOutput

    interface FetchCorpusOutput {
        bundles: PRCommentBundle[];
        failures: { error: string; prUrl: string }[];
        gistSyncWarning?: string;
        prCount: number;
        repo: string;
        skipped: number;
        warnings?: string[];
    }
    Index

    Properties

    bundles: PRCommentBundle[]
    failures: { error: string; prUrl: string }[]

    PRs that were attempted but errored (404, rate limit, transient API failure). Surfaced so the host can decide whether to retry or warn the user that the corpus is partial. Empty array when all attempted fetches succeeded. (#1209 L8)

    gistSyncWarning?: string

    Set when the post-mutation Gist checkpoint failed; the local mutation succeeded (#1370).

    prCount: number

    How many PRs were considered after recency + already-fetched filtering.

    repo: string
    skipped: number

    PRs skipped because commentsFetchedAt is already set (without --force).

    warnings?: string[]

    Non-fatal data-quality warnings (#1456). Currently produced when a bundle's comment streams hit the pagination cap, meaning the newest comments on that PR are missing from the corpus. Omitted on clean runs.