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

    Interface FetchCorpusOutput

    interface FetchCorpusOutput {
        bundles: PRCommentBundle[];
        failures: { error: string; prUrl: string }[];
        prCount: number;
        repo: string;
        skipped: number;
    }
    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)

    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).