How to Implement Governance at Execution — MO§ES
A practical guide to moving AI governance from post-hoc review to pre-execution enforcement — the shift from reactive to proactive governance.
Most AI governance is reactive. A system generates an output, a human or automated check reviews it, and if something is wrong, the output is flagged or discarded. This post-hoc approach is too late — by the time the review happens, the transformation has already been applied. MO§ES moves governance to the point of execution, blocking degrading transformations before they happen. This guide shows you how to make that shift.
Overview
Governance at execution means installing enforcement gates that run before a transformation is applied, not after. The gate measures the predicted commitment of the transformation and blocks it if it would degrade the signal below an acceptable threshold. This is the shift from reactive governance (catching problems after they occur) to proactive governance (preventing problems before they occur).
This is not a theoretical improvement. In the Conservation Law experiments, post-hoc review caught degradation only after it had already compounded across multiple iterations. Pre-execution gating prevented degradation from occurring at all, conserving commitment at 80-85% across 10 iterations.
Prerequisites
- An AI pipeline with identifiable transformation steps
- Current governance processes documented (even if informal)
- An NLI model for commitment measurement
- Authority to modify the pipeline to insert enforcement gates
- Understanding of governance enforcement and the MO§ES architecture
Step 1: Audit Your Current Governance Posture
Before you can move governance to execution, you need to know where it currently happens. Audit your pipeline and identify every point where a governance check occurs. For most organizations, the answer is: at the end, by a human, after the output is already generated.
Document each check: who performs it, what they look for, how long it takes, and what happens when they find a problem. This audit reveals two things: how much of your governance is reactive, and where the highest-risk transformations are.
# Example governance audit
checks = [
{"point": "final output", "type": "human review", "timing": "post-hoc"},
{"point": "agent-3 output", "type": "automated", "timing": "post-hoc"},
{"point": "intake", "type": "none", "timing": "n/a"}
]
Step 2: Identify Enforcement Points
An enforcement point is any location in your pipeline where a transformation can be checked before it is applied. Every transformation in your pipeline is a candidate enforcement point. The goal is to identify the points where a gate will have the most impact.
Prioritize enforcement points based on two factors: the degradation risk of the transformation (summarization and compression are high-risk; formatting is low-risk), and the recursion depth at which the transformation occurs (early transformations have more downstream impact than late ones).
Step 3: Define Governance Rules as Thresholds
Pre-execution gating requires measurable thresholds. Convert your governance policies into numeric thresholds that a gate can evaluate. This is the key conceptual shift: governance rules become commitment thresholds.
- "Do not weaken obligations" → commitment threshold of 0.80
- "Preserve contractual language" → Jaccard surface stability threshold of 0.70
- "Maintain modal force" → NLI entailment threshold of 0.85
- "Do not introduce new claims" → contradiction detection threshold of 0.95
Each threshold is a governance rule expressed as a number. The gate enforces the rule by checking the threshold before the transformation is applied.
Step 4: Install Pre-Execution Gates
At each enforcement point, install a gate that measures the predicted commitment of the transformation and blocks it if it falls below threshold. The gate runs synchronously, before the transformation is applied. If the gate blocks, the transformation does not happen — the signal is either passed through unchanged, retried with adjusted parameters, or escalated.
The gate is the enforcement mechanism. Without it, your thresholds are just policies — aspirations that transformations may or may not satisfy. With the gate, the thresholds are enforced at the point of execution.
Step 5: Wire Gates to the Audit Trail
Every gate decision must be logged. Connect each gate to the append-only audit trail and record: the signal hash, the transformation type, the commitment measurements before and after, the threshold, and the decision (pass, block, escalate). This creates a complete record of every governance decision in your pipeline.
The audit trail serves three purposes: it provides evidence for compliance reviews, it enables post-hoc analysis of gate effectiveness, and it creates a feedback loop for threshold tuning. A gate that blocks too often may have its threshold set too high; a gate that never blocks may have its threshold set too low.
Step 6: Retire Post-Hoc Review for Gated Transformations
Once pre-execution gates are operational and tested against a canonical corpus, post-hoc review of gated transformations becomes redundant. The gate has already verified that the transformation preserves commitment. Continuing to review gated transformations manually wastes the effort you invested in building the gates.
Shift human review effort to higher-value activities: threshold tuning (adjusting thresholds based on audit data), exception handling (reviewing transformations that were blocked or escalated), and audit analysis (looking for patterns in the audit trail that indicate systemic issues).
Common Pitfalls
- Keeping post-hoc review alongside gates: If you install gates but continue reviewing every output manually, you have not actually shifted your governance posture. You have just added overhead. Trust the gates and shift review effort.
- Setting thresholds without testing: Thresholds that are not tested against a canonical corpus are guesses. Test before deploying.
- Gating only high-risk transformations: Low-risk transformations can still degrade commitment, especially at high recursion depths. Gate broadly, then tune thresholds to reduce false positives.
- Not logging gate decisions: A gate that does not log its decisions is a black box. You cannot tune what you cannot see.
- Treating governance as a one-time shift: Governance at execution is not a one-time migration. It requires ongoing threshold tuning, audit analysis, and gate adjustment as your pipeline evolves.
Next Steps
Once governance is at execution, extend it with a full governance layer and commitment conservation enforcement. For the architectural context, see the MO§ES architecture page, and for the theoretical foundation, read the Conservation Law of Commitment.