Waveframe Labs mark Waveframe Labs
Waveframe Labs banner
Waveframe Guard

Deterministic enforcement at the execution boundary.

Waveframe turns human governance into deterministic execution control. Authority is compiled, proposals are normalized, CRI-CORE decides admissibility, and Waveframe Guard prevents blocked actions from reaching production systems.

pip install waveframe-guard cricore-contract-compiler cricore-proposal-normalizer
Core Flow

Human governance becomes production control.

This is the canonical Waveframe architecture: authority is authored, compiled, bound to proposals, evaluated, enforced, and then allowed to touch production only when the contract permits it.

Waveframe canonical architecture diagram showing governance becoming production execution through Ledger, Compiler, Contract, Normalizer, CRI-CORE, Guard, and Cloud evidence services.
ALLOWED
BLOCKED
NEVER EXECUTES WHEN BLOCKED
Why It Exists

Most AI governance arrives too late.

Logs, dashboards, and prompt instructions can be useful, but they do not reliably stop a bad action at the moment it is about to execute.

  • Monitor after execution
  • Rely on prompts
  • Depend on model behavior
  • Cannot prevent execution
Waveframe Guard enforces decisions before actions execute.
Developer Use

Two lines to govern execution.

Install the SDK, bind a published contract, and wrap the function that should never run unless governance requirements are satisfied.

Install

pip install waveframe-guard

Guard can enforce locally against published contract artifacts generated by the governance workflow.

SDK Example

from pathlib import Path
from waveframe_guard import install_guard, guard

install_guard(
    actor={"id": "user-1", "role": "intern"},
    contract_path=Path("contracts/finance-policy-1.0.0.contract.json")
)

@guard
def transfer_funds(amount):
    return bank.transfer(amount)
Execution blocked: required role not satisfied: manager
Deployment Model

Local Guard and Cloud have different jobs.

Local enforcement gives developers fast feedback and resilient runtime checks. Waveframe Cloud is the authority and evidence plane: distribution, registry, audit durability, and receipts.

Local Guard

SDK
  • Simulation
  • Developer testing
  • Local policy evaluation
  • Cached contract enforcement
  • Blocks invalid function execution

Waveframe Cloud

Authority
  • Authoritative contract registry
  • Authority distribution
  • Immutable audit logs
  • Organizational identities
  • Durable receipts
  • Production governance evidence
Architecture

A deterministic governance ecosystem.

Each component has a narrow responsibility, so authority can be inspected, replayed, distributed, normalized, evaluated, and audited without relying on model behavior.

Governance Ledger Normalizes governance, gates publication, and preserves lineage.
Contract Compiler Produces stable compiled contracts with deterministic identity.
Compiled Contract Versioned authority artifact used by runtime enforcement.
Proposal Normalizer Builds the canonical proposal envelope for CRI-CORE.
CRI-CORE Evaluates admissibility before the proposed action runs.
Execution Decision Allowed actions continue. Blocked actions never execute.