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

    Interface CandidateLinkedPR

    Compact summary of an issue's first linked PR, surfaced on candidate outputs (#97 / scout 0.9.0). isStalled is true when the PR is open and has not been updated for STALLED_PR_THRESHOLD_DAYS (default 30) — a revive-opportunity signal callers can render or filter on.

    state mirrors autopilot's existing tri-state classifier ('merged' is folded in from scout's merged: true boolean), not scout's raw enum.

    interface CandidateLinkedPR {
        isStalled: boolean;
        number: number;
        state: "closed" | "open" | "merged";
        updatedAt?: string;
        url: string;
    }
    Index

    Properties

    isStalled: boolean

    True when the PR is open AND updatedAt is more than 30 days old.

    number: number
    state: "closed" | "open" | "merged"
    updatedAt?: string

    ISO timestamp of the PR's last update (when scout surfaces it).

    url: string