Capability Map

The 34-problem architecture map.

34 problems the AI governance landscape is trying to solve. One architecture addresses all of them. Below each problem is the standards it maps to and how Synchronicity responds.

The frame. A modern airport runs millions of decisions a day without the pilots making those decisions themselves. A separate authority evaluates each proposed action against policy, signs off, and only then does the action happen. Autonomous AI needs the same separation. Models propose. Synchronicity decides. Execution carries out only what was signed.


Autonomous Agent Behavior

Constraining what an autonomous agent can actually do, even when its reasoning argues otherwise.

01

An autonomous agent fires a deletion, transfer, or external action it was never authorized to perform

OWASP AISVS C5.6 · NIST AI RMF Govern-3.2 · NIST SP 800-207 §2.1 Tenet 6

Every proposed action is canonicalized as a SPAD (Structured Proposed Action Descriptor) and submitted to the external governance authority before execution. The authority returns PERMIT, DENY, or HOLD. Execution systems are architecturally prevented from acting without a valid signed decision artifact. Default-deny on failure.

02

An agent invokes tools, APIs, or credentials outside its assigned scope

OWASP AISVS C9.7 · NIST SP 800-207 §3.4.1

Action descriptors carry tool identity, parameters, and invoking actor. Tool eligibility is evaluated as a deterministic policy rule against the actor's authorized capabilities at evaluation time.

03

An agent chains multiple individually-permitted actions to accomplish a prohibited outcome

EU AI Act Art. 9 (risk management) · Art. 14 (human oversight) · OWASP AISVS C5.6.5

Each action in the chain is independently evaluated. Policy rules can reference prior decision artifacts in the same session, allowing detection of action-sequence patterns that pass individually but collectively violate policy.

04

An agent acts on prompt-injected instructions from untrusted input

OWASP AISVS C9.7.7 · NIST AI 100-2 (Adversarial Machine Learning)

Action descriptors include input lineage metadata. Policy rules can require attested provenance for high-risk actions. Actions originating from untrusted sources are denied at the governance layer regardless of what the model reasoned its way into.

05

An agent escalates privileges beyond its assigned scope

NIST SP 800-207 §2.1 Tenets 1–3 · ISO/IEC 42001 §8.2

Actor scope is bound to policy at evaluation time. The agent cannot self-escalate because the governance authority — not the agent — holds the authoritative actor-to-capability binding.


Decision Provenance and Audit

Producing evidence that survives an adversarial regulator, an internal audit, or a hostile court.

06

A regulator demands proof of which rules governed a specific AI decision

EU AI Act Art. 12 · NIST AI RMF Measure-2.8 · IEEE 7001

Every evaluation produces a signed decision artifact containing the policy version identifier, cryptographic policy content hash, constraint violation identifiers (for DENY outcomes), and a signed timestamp. Reproducible, tamper-evident, deterministically replayable.

07

An auditor needs to reconstruct a historical AI decision exactly

EU AI Act Art. 12 · ISO/IEC 42001 §8.5

A replay verification component re-executes any historical evaluation using the exact policy snapshot active at the original evaluation time. Output matches the original decision artifact.

08

A team needs to detect bias across thousands of AI decisions

IEEE P7003 · EU AI Act Art. 10 · NIST AI RMF Measure-2.11

All PERMIT, DENY, and HOLD outcomes are written to a unified append-only log as entries of a common event class. This prevents selective logging and enables population-level bias analysis by downstream analytics. The architecture provides the evidence substrate; bias detection runs on top.

09

Logs are tampered with after the fact to hide a bad decision

EU AI Act Art. 12 · ISO/IEC 27001 A.12.4 · NIST SP 800-53 AU-9

Decision artifacts are cryptographically signed at generation. The append-only log architecture prevents retroactive modification. Tampering is detectable through signature verification of any historical artifact.

10

Policy is changed after a decision to make it look compliant in hindsight

EU AI Act Art. 12 · IEEE 7001

Each decision artifact records a cryptographic content hash of the exact policy in force at the moment of evaluation. Subsequent policy changes do not affect the historical record; replay verification will fail if anyone attempts post-hoc substitution.


Multi-Jurisdiction and Multi-Tenant

Running one AI system across overlapping legal regimes and isolated tenants without rule bleed.

11

Operating an AI system across EU, US, and sector-specific rules simultaneously

EU AI Act · NIST AI RMF · sector rules (HIPAA, GLBA, FCRA, FERPA)

Policies are composable and version-controlled. Jurisdictional, sector, and organizational policy layers are evaluated with deterministic precedence rules. The decision artifact records which layers contributed to the outcome.

12

Different tenants need different governance rules in the same deployment

ISO/IEC 42001 §6.1.2 · SOC 2 CC6.1

Action descriptors carry a tenant identifier. Policies are tenant-scoped at evaluation time. Cross-tenant policy bleed is architecturally prevented because evaluation context binds tenant to policy snapshot.

13

Cross-border data flows trigger conflicting governance requirements

EU AI Act Art. 10 · GDPR Art. 44–50 · ISO/IEC 27701

Geographic and jurisdictional attributes in the SPAD trigger policy layers specific to data residency, transfer restrictions, and consent state. The decision artifact records which jurisdictional rules were applied.

14

A model is used by a regulated entity but hosted by an unregulated provider

EU AI Act Art. 28 (deployer/provider obligations) · NIST SP 800-161 (supply chain)

Synchronicity sits architecturally outside both the model and the host. Governance is enforced at the action layer regardless of who operates the model or where it runs. Compliance posture is portable.


Failure Modes and Resilience

Behaving safely when something breaks — the model, the network, the governance system itself.

15

The model fails or returns malformed output

IEEE 7009-2024 (fail-safe design) · NIST AI RMF Manage-2.4

Default-deny semantics. If the SPAD cannot be parsed, the policy snapshot is unavailable, or the evaluation engine fails, the response is DENY or HOLD. Unsafe states are designed to be unreachable under the specified threat model.

16

The governance system itself becomes unavailable

IEEE 7009-2024 · NIST SP 800-53 CP-2

A service availability monitor detects authority unavailability and forces the execution layer into DENY mode. The system fails closed by design rather than degrading to permissive behavior.

17

A policy version cannot be retrieved at evaluation time

IEEE 7009-2024 · EU AI Act Art. 15

A policy snapshot availability monitor detects missing policy versions and returns DENY or HOLD. Actions cannot proceed without a verifiable policy basis.

18

An agent operates in an air-gapped or offline environment

NIST SP 800-53 SC-36 (distributed processing and storage) · IEC 62443 (industrial control systems)

Edge-native deployment supports offline decision artifact verification. Governance decisions are evaluable without network connectivity, enabling SCADA, drone, defense, and remote-operation use cases.


Human Oversight

Keeping humans in the loop where it matters, and routing risk signals to the right operator.

19

Some decisions require a human in the loop, but agents bypass approval

EU AI Act Art. 14 · NIST AI RMF Govern-1.5

Policy rules can require HOLD outcomes for specific action classes. HOLD outcomes route to designated human approvers. Execution cannot proceed without a subsequent PERMIT artifact signed after human approval.

20

A human needs to terminate or override an autonomous process in real time

EU AI Act Art. 14 · ISO/IEC 42001 §6.1.3

Termination authority is a structural element of the architecture. Human operators can revoke policy bindings, force DENY responses, or terminate an entire agent's authorization in real time. Because the governance authority — not the agent — holds the binding, the agent cannot circumvent termination by self-modification.

21

Operators don't know when to intervene because risk signals are buried

EU AI Act Art. 14 · NIST AI RMF Govern-5.1

HOLD outcomes carry structured reason codes for escalation tracking. Operator dashboards subscribe to the unified log and surface escalations in real time with full action context, eliminating the “buried in audit logs” problem.


Performance and Real-Time Constraints

Running governance fast enough that it doesn’t become an excuse to skip it.

22

Governance evaluation must happen in real time without breaking the user experience

OWASP AISVS C5.6.5 · NIST AI RMF Measure-2.5

The architecture is designed for sub-50 millisecond evaluation latency. Policy resolution is optimized for in-path evaluation, with no I/O dependencies in the hot path.

23

High-throughput AI systems generate too many decisions to govern in line

ISO/IEC 42001 §8.5

The architecture targets 10,000+ requests per second per node, with horizontal scaling enabled because policy snapshots are the only shared state. Production validation is part of the active development roadmap.


Supply Chain, Provenance, and Identity

Knowing exactly which model, tool, and actor produced each proposed action — and whether they’re still the same one.

24

An AI system uses models or tools from untrusted third parties

NIST SP 800-161 · EU AI Act Art. 25 · OWASP AISVS C7

Action descriptors include cryptographic identifiers for invoked models and tools. Policy rules can require attested provenance. Untrusted artifacts can be denied at the governance layer without modifying the underlying agent.

25

The system needs to prove compliance without disclosing the underlying policy

EU AI Act Art. 78 (confidentiality) · Recital 71 · Directive (EU) 2016/943 (trade secrets) · GDPR Art. 5

The decision artifact records what was evaluated and the outcome without requiring exposure of the proprietary policy itself. This protects regulated organizations whose internal governance rules are trade-secret-sensitive.

26

Agent identity is forged or spoofed

NIST SP 800-63 · NIST SP 800-207 §3.3

Every SPAD is cryptographically bound to a specific actor identity at a specific moment in time. Replay attacks fail verification.

27

The underlying model is updated, fine-tuned, or swapped at runtime — policy was written against the old behavior

NIST AI RMF Manage-2.2 · Manage-4.1 · ISO/IEC 42001 §8.4 (AI system impact assessment) · EU AI Act Art. 72 (post-market monitoring)

Governance operates on the action layer, not the model layer. Two surfaces are observable to policy. First, every SPAD carries the cryptographic identifier of the model that produced it; a change in model identity is visible in the artifact and can trigger re-evaluation, elevated review, or HOLD as a policy decision. Second, behavior-relevant attributes of the proposed action — scope, tools invoked, sensitivity of targets, output characteristics — are evaluated against policy regardless of which model produced them. A new model that proposes the same out-of-scope action still gets denied. What the architecture does not claim to detect is silent within-version behavioral drift; that is the responsibility of the model-evaluation layer, and Synchronicity is designed to consume signals from it as additional SPAD metadata.


Threats Against the Governance System Itself

Treating the governance authority as a hardened control plane, not a soft underbelly.

28

The governance authority itself is targeted — DoS, policy poisoning, key compromise

NIST SP 800-53 SI-4 · OWASP AISVS C5.6 · NIST AI RMF Manage-2.4

The architecture treats the governance authority as a hardened control plane separate from the data plane. Unavailability triggers fail-closed semantics. Policy integrity is cryptographically verified before loading; poisoned policies fail verification and are refused. Key rotation is structural, not optional.

29

Multi-agent orchestration — Agent A delegates to Agent B, which delegates to Agent C

OWASP Top 10 for Agentic Applications (2025) · OWASP State of Agentic AI Security and Governance v2.01 (2026) · NIST AI Agent Security RFI 2026-00206

Each agent's actions are independently evaluated against its own policy scope. Delegation does not transfer authority — it creates a new evaluation context bound to the receiving agent's scope. Chains of delegation produce chains of decision artifacts, each independently verifiable.

30

Shadow AI — employees deploy unauthorized models on corporate data without governance

ISO/IEC 42001 §6.1 · NIST AI RMF Govern-1.4

The governance authority can be deployed as a mandatory gateway at the network or identity boundary. Actions originating from unauthorized models or sessions are denied because they cannot produce a valid signed SPAD recognized by the authority. Within the governed network boundary, shadow deployments are visible by their absence of governance artifacts. Bypass via out-of-band channels (personal devices, personal API keys) remains an identity and network-policy problem outside the governance layer's scope.


Standards Conformity and Procurement

Connecting one architecture to the conformity stories regulated buyers actually have to tell.

31

The organization needs ISO/IEC 42001 certification but lacks technical controls

ISO/IEC 42001 §6 · §8

Architectural components map directly to ISO 42001 controls — SPADs and actor metadata to §8.2 (AI system inventory), the append-only log to §8.5 (monitoring and measurement), policy version resolution to §6.1.2 (risk assessment), fail-closed semantics to §6.1.3 (risk treatment). Synchronicity provides the technical implementation layer that a certifiable management system requires.

32

The organization is bidding on EU AI Act-regulated work and needs a defensible conformity story

EU AI Act Art. 40 (presumption of conformity via harmonized standards)

The architecture is designed to support compliance with EU AI Act Articles 9 (risk management), 10 (data governance), 11 (technical documentation), 12 (logging), 13 (transparency), 14 (human oversight), and 15 (accuracy, robustness, cybersecurity). Final conformity assessment for high-risk systems remains the responsibility of a notified body, but the technical substrate is built to satisfy the underlying requirements.

33

The organization needs NIST AI RMF alignment for U.S. federal procurement

NIST AI RMF (Govern, Map, Measure, Manage)

Policy authoring supports Govern. The SPAD ontology supports Map. The append-only artifact log supports Measure. HOLD and termination authority support Manage. Synchronicity covers the technical control dimensions of the RMF; organizational governance, sociotechnical context, and stakeholder engagement remain the responsibility of the deploying organization.

34

Pre-Action Authorization (PAA) is emerging as a NIST control category

NIST AI Agent Security RFI 2026-00206

Synchronicity is built around Pre-Action Authorization — the control category NIST is currently scoping in the AI Agent Security RFI. If PAA becomes a formal NIST control, Synchronicity is the architectural reference for what compliance looks like.


How it integrates

Three integration patterns. One binary.

The governance authority deploys as a single Go binary. Three integration patterns let you match assurance level to deployment risk:

  • Inline gateway. Every agent action passes through the authority before execution. Highest assurance, mandatory for high-risk deployments.
  • Sidecar evaluation. The authority runs alongside the agent and is consulted by SDK or API. Lower friction, suitable for retrofitting existing systems.
  • Embedded library. The deterministic engine is linked directly into the host application for offline or edge use cases.

Synchronicity is available for OEM and embedded integration with GRC, AI assurance, and security platforms.

Why one architecture covers all 34

The Canonical Responsibility Principle.

Reasoning systems decide what to propose. The governance authority evaluates whether it complies with policy. Execution systems control how approved actions are carried out. Because every problem above reduces to “did this proposed action satisfy the relevant policy at the moment of proposal,” one architecture covers the entire landscape. The same engine governs an LLM agent, an RPA bot, a trading system, or an autonomous agricultural vehicle.