@oss-autopilot/core - v3.7.0
    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[];
    }
    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[]