AutoBE
    Preparing search index...

    Interface AnalyzeQualityEntry

    Scoped quality record for the analyze pipeline. Designed to extend later to module, unit, or claim scopes; PR1 emits only overall and file.

    Juntak

    interface AnalyzeQualityEntry {
        quality: AnalyzeCompletionQuality;
        reasons: AnalyzeContinuationReason[];
        scope: "overall" | "file";
        target: string;
    }
    Index

    Properties

    Final classification computed from reasons.

    Deduplicated reasons in first-seen order.

    scope: "overall" | "file"

    Granularity of this entry. PR1 always one of "overall" or "file".

    target: string

    "*" for overall scope; filename for file scope.