Structured models of where things run and how they layer.

Deployment & tier topology

Intent — Structured models of where things run and how they layer (the managed-deployment topology, each service's tier class, and the agent-substrate's layer boundaries), so deploy scripts and layering lints reason about a declared topology, not scattered constants.

SummaryStructured models of where things run and how they layer.
TargetBridge · System models
Formtyped-ir
Movepackage — a constraint shipped with its sensors
Modelis-a-model — a structured model you check a system property against
EnforcementHard (deterministic) — structured models held true by the deploy-parity + layer-boundary lints
Derivationmodel-from-code — induced from the code, reconciled at build

Its place in the environment — a variant / known-use of Executable Source of Truth, under KNOW · Maintain authoritative system knowledge. Preserved here for its technical texture; the construction kit shows how it folds.

Motivation — the failure it kills

Deployment facts (which layer a service is in, its tier, what may depend on what) end up hardcoded in deploy scripts and import checks. Hardcoded, they drift from the real topology: a service moves tier, a layer boundary is quietly crossed, and the deploy or an architectural invariant breaks. And an agent reasoning about "can layer X import layer Y?" needs the boundary declared, not inferred.

Why it's not just "encode the topology in the deploy scripts"

Topology in the deploy scripts is a copy. It drifts from the real service set and from the layering the code actually has. These structured models declare the topology once (managed-deployment loader, tier classification, layer-boundary contracts), and parity lints check the declaration against reality (deploy phase tables, import-layer checks). One declared topology, validated against the running system, means a moved tier or a crossed boundary fails a lint at author time — the scattered constants had no such check, so they drifted until a deploy broke.

Mechanism

The Deployment-topology loader is the typed loader for the managed-deployment topology; the Service-tier registry classifies each service's tier; the Layer-boundary contracts declare the layer boundaries for the agent substrate. Deploy scripts and layering lints (the deploy-phase-table parity lint, the import-layer checks) read them and gate on divergence.

Prerequisites

Consequences & costs

Known uses

Related mechanisms

Governed by

The mechanisms that hold this model true — inverted from their Governs edges at build time, never hand-written. A direct governor names this model; a trunk mechanism governs every model.