AutoBE
    Preparing search index...

    Interface AnalyzeRequirementsIRView

    Run-level snapshot of analyze's structured requirement claims, attached to AutoBeAnalyzeHistory.requirementsIR and AutoBeAnalyzeCompleteEvent.requirementsIR.

    V1 contains only decision claims (kind: "decision") plus an optional TOC navigation context. Per-file grouping, conflict status, version, and confidence flags are deliberately excluded — see the spec's "거짓 신호 회피" principle.

    Juntak

    interface AnalyzeRequirementsIRView {
        claims: AnalyzeRequirementClaim[];
        toc?: AnalyzeRequirementsIRToc;
    }
    Index

    Properties

    Properties

    Decision claims in the order produced by the builder. v1 builder preserves input decision order (mirrors AnalyzeDecisionLedger.dumpValidDecisions() insertion order). Empty array if no decisions were extracted. 00-toc.md decisions are excluded by the builder — TOC is navigation context, not a claim.

    Optional TOC navigation context. Absent when the run produced no TOC, or when reading an older history that pre-dates this feature.