@suluk/cockpit - v0.2.0
    Preparing search index...

    Interface ModuleGrade

    interface ModuleGrade {
        grade: "A" | "B" | "C";
        score: number;
        costCoverage: number;
        warnings: number;
        notes: string[];
    }
    Index

    Properties

    grade: "A" | "B" | "C"
    score: number

    0..1 — cost-declaration coverage minus a documentation-warning penalty.

    costCoverage: number

    fraction of the module's operations that declare a cost (the real, author-attributable signal).

    warnings: number

    real documentation problems (audit warns) on the module's authored ops.

    notes: string[]