Bridge — a sanctioned cross-graph dependency declaration.

Schema 3 multi-graph IR documents may carry nodes from more than one engine instance once the future cross-graph aggregator lands. EPIC-2's CrossGraphRead pass refuses any cross-graph dep that is not explicitly bridged; this record is the allowlist. Three policy arms: legacy-allow (migration path, soft warning), test-only (stripped from production exports), read-only (read-only access to the source graph).

interface IRBridge {
    dep: string;
    from: string;
    policy: "legacy-allow" | "test-only" | "read-only";
    to: string;
}

Properties

Properties

dep: string
from: string
policy: "legacy-allow" | "test-only" | "read-only"
to: string