What You Are Building

You are building a system where every action an autonomous agent takes carries its own proof of governance. When an agent senses something, decides something, or actuates something in the physical or digital world, you want to be able to answer three questions after the fact, and ideally block the action before the fact if any answer is wrong:

  • Identity: was the source of this input the device or party it claimed to be, and not a spoof or replay?
  • Policy: was this action permitted given the source's authority and the governing rules in force?
  • Audit: can you deterministically reconstruct what inputs led to this action, who contributed them, and how the decision was reached?

The people who need this are teams deploying agents that touch consequential state: vehicle and infrastructure coordination, industrial actuation, multi-party sensing networks, anything where "the model did it" is not an acceptable answer to a regulator or an incident review. The goal is not three dashboards. The goal is that identity, policy, and audit are structural properties of every action, checked together, so that in the described embodiments an action failing any one of them does not proceed.

The approach described here is the Five-Property Governance Chain, disclosed in U.S. Provisional Application No. 64/049,409.

Why the Obvious Approaches Fall Short

The normal way to build this is to assemble three mature, independent subsystems, each of which is good at its own job.

For identity, you reach for public-key infrastructure: enroll each device with a certificate authority, issue it a credential, and check the signature on each message. PKI is a well-understood, widely deployed standard, and for many systems it is exactly right. Its subject is the credential: a credential validates on its own terms, and enrollment is organized around each device reaching an enrollment server before it operates. The disclosed approach instead evaluates the ongoing operational continuity of the device itself.

For policy, you reach for an authorization engine: a rules service that returns permit or deny for a given principal and action. This too is standard and useful. Its decision is typically binary and evaluated against one dimension at a time, and the caller's identity arrives as an already-settled fact from a separate layer. The disclosed evaluator instead takes identity evidence as one of several inputs judged together.

For audit, you reach for logging: emit an event to a log store on every significant action. Logging is essential. Logs are written after decisions and reference identity and policy by duplicated identifiers, so a full decision chain is reconstructed by correlating systems that were designed independently. The disclosed lineage field instead travels inside the action record.

The distinction is in the seams. Where identity, policy, and audit live in separate substrates, each is carried by its own object and validated at its own checkpoint. The disclosed architecture puts all three in one object and one checkpoint, so the audit record itself carries the verified identity the policy check saw and the continuity evidence that distinguishes a genuine input from a replay presented with a valid credential.

The Architecture

The disclosed approach closes the seams by making governance a single composed chain imposed on every governed mutation, rather than three subsystems consulted independently. Per the filed specification, the chain has five properties, and the disclosure describes an action proceeding when every property validates end to end.

1. Authority-credentialed observation. Every input is a governed observation, not raw telemetry. Per the spec, a governed observation carries, at minimum, an authority-credential field, a device-identity field, spatial and temporal references, a time-to-live, a payload, and a lineage field. The authority credential is evaluated against a governance-configurable authority taxonomy that carries hierarchical trust semantics, not a binary valid-or-invalid flag. The taxonomy supports dynamic escalation and de-escalation, where an entity is temporarily elevated under policy-defined conditions with a maximum duration and scope, and every escalation is itself recorded.

2. Evidential weighting in a shared store. Observations entering a shared governed observation store are weighted by the contributing authority level, the sensing modality's reliability, and inter-source consistency. A high-authority, corroborated observation carries more evidential weight than a low-authority or inconsistent one. This is what lets policy be graduated rather than a single binary gate.

3. Composite admissibility evaluation. Before any mutation is admitted, it is evaluated across multiple cognitive-domain fields together: per the spec, dispositional, integrity, confidence, and capability fields. The evaluation produces a graduated outcome, described in the spec as accepted, gated, deferred, or rejected, rather than a bare permit or deny. This is the checkpoint where the composed identity and policy evidence is judged as a whole.

4. Governed actuator execution. The disclosure describes physical actuation as conditioned on composite admissibility approval. Actuation is not a separate code path that trusts an upstream decision; it is gated by the same evaluation, so in the described embodiments the chain is the path to actuation.

5. Lineage-recorded provenance. Every observation, evaluation, and action is linked through a deterministic lineage field. Per the spec, the lineage field records the contributing-device identifier, references to source observations where the observation is derived from others, a derivation-function identifier where applicable, and a cryptographic integrity attestation over the fields. Lineage fields compose: one observation's lineage links to the lineage of the observations it was derived from, producing a cross-device, cross-authority provenance record that permits deterministic reconstruction of how a decision was reached.

Two properties of the composition are what make this more than the sum of the parts.

First, identity is continuity, not a static certificate. The disclosed identity mechanism is trust-slope continuity. Each transmitting device computes a dynamic device hash from inputs such as device entropy, sensor readings, configuration and clock state, and prior transmission content, so the hash evolves gradually across successive transmissions in a way reflective of the device's real operational state. Receivers keep a history of a device's hashes and compute a trust-slope metric measuring whether a newly received hash is consistent with genuine operational evolution. Per the spec, this detects spoofing and replay through discontinuities in the hash sequence regardless of whether the spoofing device possesses a valid static credential, and it does not require enrollment with a central certificate authority or storage of long-lived secrets. The continuity-validation output is consumed directly by the composite admissibility evaluator, so identity feeds the same checkpoint as policy rather than living in a separate layer.

Second, the chain is recursive and closed. Per the spec, every primitive's output enters the chain as an authority-credentialed observation, and every actuation passes back through every primitive's governance. The described embodiments provide no privileged path that skips a property. That closure is what supports the strong statement the search query asks for: not that an action was probably fine, but that within the closed chain it proceeds only where identity, policy (admissibility), and audit (lineage) held together.

How to Approach the Build

This is an architecture you implement yourself. The steps below are the order a developer would sensibly follow.

Step 1: Define your governed observation as the only unit of exchange. Nothing enters your system as raw telemetry. Every input is wrapped in a structure carrying, at minimum, the fields the spec enumerates. An illustrative interface sketch, faithful to the disclosed fields but not a library:

// Illustrative only - you implement this to fit your domain
GovernedObservation {
  authorityCredential   // source's credential in your taxonomy
  deviceIdentity        // dynamic device hash (see Step 3)
  spatialRef, temporalRef, ttl
  payload               // domain-specific content
  lineage {             // provenance
    contributingDeviceId
    sourceObservationRefs[]   // what this was derived from
    derivationFn
    integrityAttestation      // signature over the fields
  }
}

Step 2: Model your authority taxonomy. The taxonomy is governance-configurable and domain-specific: the spec gives examples for defense, healthcare, and warehouse/port domains, among others. Decide your levels, and decide the escalation and de-escalation conditions, maximum durations, and scopes for temporary elevation. Record every escalation as its own governed event.

Step 3: Implement trust-slope continuity for identity. At each transmitter, compute a dynamic device hash from evolving device state and attach it to every observation. At each receiver, keep a policy-windowed history of hashes per source and implement a trust-slope validator that scores a new hash against the sequence. Its output is not a boolean you branch on directly; it is evidence fed into Step 5. Note the tradeoff: continuity needs a history to judge against, so a brand-new source has a short slope, and you will want policy-defined tolerance windows for legitimate discontinuities like maintenance and device replacement, exactly as the spec calls for.

Step 4: Stand up the shared observation store with evidential weighting. Weight each observation by authority level, modality reliability, and inter-source consistency. This is what turns three separate yes/no checks into a single weighted body of evidence.

Step 5: Build the composite admissibility evaluator as your single checkpoint. This is the heart of the build. Evaluate each proposed mutation across your cognitive-domain fields together, dispositional, integrity, confidence, and capability, with the trust-slope output and the evidential weighting as inputs, and emit a graduated outcome (accepted, gated, deferred, rejected). Route every actuation through this same evaluator; do not let any actuation path bypass it.

Step 6: Make lineage a write requirement, not an afterthought. Every observation, every evaluation, and every action writes a lineage record that references its sources and carries an integrity attestation. Because lineage composes, a later audit walks the references backward and deterministically reconstructs the full chain. Design this before you write your first actuator, because retrofitting composable lineage onto a system that already logs to a side channel is the hard path.

Step 7: Verify closure. Audit your own call graph for any path that senses, decides, or actuates without going through Steps 1 through 6. The security property comes from closure; a single ungoverned path defeats it.

What This Does Not Give You

Be clear-eyed about the boundaries.

This is an architecture, not a drop-in library. There is no package to install and no SDK behind this guide. You implement every component yourself, and the interface sketches above are illustrative, not runnable.

It is disclosed in a patent filing. It has not been presented here as a benchmarked or production-proven product, and this guide states no performance numbers, latency figures, or security guarantees beyond the structural properties the specification describes.

The strength of the property is structural and only as good as your closure. If any code path can sense, decide, or actuate outside the chain, the end-to-end statement does not hold for that path. The architecture makes governance provable where it is universal; it does not retroactively govern what bypasses it.

It does not replace the primitives it composes. You still need real cryptography for the integrity attestations, a real store for observations, and real policy authoring for your taxonomy. Trust-slope continuity is an identity approach with a different threat model than PKI, not a superset of it, and it depends on having enough history to judge continuity, so it fits systems with ongoing communication between parties better than one-shot interactions.

Finally, the disclosed examples center on spatial and sensor-actuator systems. The chain is described as technology-neutral, but you are responsible for judging whether it fits your domain.

Disclosure Scope

The architectural approach described in this guide, the Five-Property Governance Chain, is disclosed in U.S. Provisional Application No. 64/049,409. Every mechanism described above, the governed observation primitive, the authority taxonomy, trust-slope continuity identity, evidential weighting, composite admissibility evaluation, governed actuator execution, and lineage-recorded provenance, traces to that filing. This guide is educational: it explains an architecture so that a skilled developer can understand and build it themselves. It is not a warranty, not a benchmark, and not an offer of software, and nothing here should be read as a claim that a shipping implementation exists.

Frequently asked questions

What problem does this guide address?

An architectural how-to for making every AI action provably satisfy identity, policy, admissibility, lineage, and continuity, using the Five-Property Governance Chain approach disclosed in U.S. Provisional Application No. 64/049,409.

Which patent filing discloses this architecture?

The architecture described in this guide is disclosed in U.S. Provisional Application No. 64/049,409. The full filing text is published on this site at qu3ry.net/patents/undefined.

Do I need a license to build this?

This guide is educational and describes an architecture disclosed in a pending patent application; it is not legal advice. Adaptive Query licenses the portfolio, and licensing conversations start at [email protected] or on the licensing page.