data-cap
    Preparing search index...

    Interface CapabilityInventory

    The one authoritative model every report generator reads from -- see buildInventory. This type IS data-cap's Capability Model (ADR 0050), not a separate thing that produces one: CAPABILITY_MODEL_SCHEMA_VERSION above versions this exact interface. ADR 0050 deliberately kept the CapabilityInventory/buildInventory names rather than introducing a CapabilityModel/buildCapabilityModel wrapper, since this type was already the intended public model before that ADR existed -- a rename would duplicate an already-correct, already-public shape for no gain. A canonical, versioned, JSON-serializable projection of every discovered capability's fields and operations, active or not.

    interface CapabilityInventory {
        capabilities: readonly CapabilityNode[];
        schemaVersion: 3;
        warnings: readonly ParseWarning[];
    }
    Index
    capabilities: readonly CapabilityNode[]

    Every discovered, linked capability.

    schemaVersion: 3

    Always CAPABILITY_MODEL_SCHEMA_VERSION.

    warnings: readonly ParseWarning[]

    Parse/link warnings carried through from the discovery/linking pass that produced this inventory, each file root-relative like every other path this model publishes (OUT-01).