data-cap
    Preparing search index...

    Interface ComputedArtifacts

    Files this run would write, computed but not yet written -- shared between generateDataArtifacts (writes when nothing blocks) and checkArtifacts (never writes, only diffs).

    interface ComputedArtifacts {
        result: ReportResult;
        writes: readonly { content: string; path: string }[];
    }
    Index
    result: ReportResult

    The full report, including every finding across every requested generator.

    writes: readonly { content: string; path: string }[]

    Every file this run would write.