From 2 August 2026, the EU AI Act makes the obligations for high-risk AI systems enforceable. Among them: automatic record-keeping (Article 12), effective human oversight (Article 14), and the ability to demonstrate that the system behaved within the rules. For autonomous AI agents that act on their own, the practical question becomes: how do you prove it?
The open-source meniw-protocol records every agent decision (allow or block) in an append-only, SHA-256 hash-chained ledger anchored to a machine-readable norm. An auditor verifies it with a single command — and any alteration breaks the chain.
pip install meniw-protocol meniw-verify compliance.ledger.jsonl # VALID (chain intact) / INVALID (exit 1)
The governance layer evaluates each action before it executes: a prohibited action cannot run, and irreversible actions require at least two distinct co-signers — keeping a human in control of consequential, non-reversible decisions.
Every decision yields a verifiable, tamper-evident compliance receipt. Compliance becomes a cryptographic fact an auditor, regulator, customer or insurer can check independently — without trusting the operator.
This is a technical governance tool that helps meet the EU AI Act's record-keeping (Art. 12) and human-oversight (Art. 14) obligations. It is not legal advice and does not by itself constitute a conformity assessment. Always consult qualified counsel for your specific obligations.
Install: pypi.org/project/meniw-protocol · Download bundle (declaration + verifier): universal-declaration · Source & spec: GitHub · Governance Layer: overview