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

    Interface PRCommentBundle

    The full comment bundle returned for a single PR. Field order matches the typical narrative arc of a PR review (top-level reviews → inline comments → general thread chatter), so the host's extraction prompt can walk the bundle linearly.

    interface PRCommentBundle {
        issueComments: PRIssueCommentEntry[];
        mergedAt: string;
        prTitle: string;
        prUrl: string;
        repo: string;
        reviewComments: PRReviewCommentEntry[];
        reviews: PRReviewEntry[];
        truncated?: boolean;
    }
    Index

    Properties

    issueComments: PRIssueCommentEntry[]
    mergedAt: string

    ISO-8601 timestamp the PR was merged or closed; whichever applies.

    prTitle: string
    prUrl: string
    repo: string
    reviewComments: PRReviewCommentEntry[]
    reviews: PRReviewEntry[]
    truncated?: boolean

    Set to true when any of the three comment streams hit the pagination cap (#1456). These endpoints return oldest-first, so a truncated bundle is missing the NEWEST reviewer voices — corpus consumers should treat the bundle as partial. Omitted when every stream fetched completely.