Install
openclaw skills install invariance-batteryRuntime assertion system that continuously verifies AI agent invariants — properties that must ALWAYS hold. Use when building reliable autonomous agents, auditing agent behavior for drift, enforcing safety constraints, or building self-certifying AI systems. Covers invariant definition, runtime checking, drift detection, and falsification reporting.
openclaw skills install invariance-batteryRuntime assertion system for AI agents. Properties that must ALWAYS hold.
The Invariance Battery runs as a continuous verification layer:
Agent Action → Invariance Check → PASS (proceed) / FAIL (halt + report)
↓
Append-Only Spine (audit trail)
From EVEZ-OS: before any agent action is committed, it must pass through the falsifier gate.
@invariant("action_cost < budget_threshold")
def check_budget(action):
return action.estimated_cost < BUDGET_LIMIT
# If ANY invariant fails, the action is BLOCKED
# and the failure is written to the spine forever