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

    Interface DailyOutput

    interface DailyOutput {
        actionableIssues: CompactActionableIssue[];
        actionMenu: ActionMenu;
        attention: AttentionSummary;
        briefSummary: string;
        capacity: CapacityAssessment;
        commentedIssues: CommentedIssue[];
        digest: DailyDigestCompact;
        failures: PRCheckFailure[];
        listUpdates?: MergedPRListUpdate[];
        repoGroups: CompactRepoGroup[];
        strategySummary?: StrategyResult | null;
        summary: string;
        warnings: DailyWarning[];
    }
    Index

    Properties

    actionableIssues: CompactActionableIssue[]
    actionMenu: ActionMenu
    attention: AttentionSummary

    Unified attention-bucket counts (#1352) — same classifier the dashboard stamps per-PR.

    briefSummary: string
    commentedIssues: CommentedIssue[]
    digest: DailyDigestCompact
    failures: PRCheckFailure[]
    listUpdates?: MergedPRListUpdate[]

    Curated-list entries auto-marked done this run because their PR merged (#1463). Present only when at least one entry was actually struck — merge-free runs (and runs with no curated list / no matching entry) omit the field entirely so existing consumers and goldens see no change.

    repoGroups: CompactRepoGroup[]
    strategySummary?: StrategyResult | null

    Periodic contribution-strategy snapshot (#1270). Populated when the cadence trigger fires AND the user has crossed the merge floor. The /oss action menu renders this inline ahead of the action options; absent or null on runs where the gate stays silent.

    summary: string
    warnings: DailyWarning[]

    Non-fatal warnings from ancillary pipeline phases (repo metadata, analytics, Gist checkpoint, etc.). Always an array — empty on clean runs. See #1042.