← 返回
未分类

Invariance Battery

Runtime assertion system that continuously verifies AI agent invariants — properties that must ALWAYS hold. Use when building reliable autonomous agents, aud...
运行时断言系统,持续验证AI智能体的不变性——必须始终保持的属性。用于构建可靠的自主智能体、审计...
evezart
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 247
下载
💾 0
安装
1
版本
#latest

概述

EVEZ Invariance Battery

Runtime assertion system for AI agents. Properties that must ALWAYS hold.

When to Use

  • Building autonomous agents that must maintain safety guarantees
  • Auditing agent behavior for gradual drift from design intent
  • Enforcing hard constraints that override any optimization objective
  • Building self-certifying AI systems that can prove their own compliance
  • Falsification testing — prove the agent VIOLATED an invariant, not just that it passed tests

Architecture

The Invariance Battery runs as a continuous verification layer:

Agent Action → Invariance Check → PASS (proceed) / FAIL (halt + report)
                     ↓
              Append-Only Spine (audit trail)

Invariant Types

  1. State Invariants — Properties of the agent's internal state that must always hold
  2. Action Invariants — Constraints on what actions the agent can take
  3. Temporal Invariants — Properties over time (no oscillation, monotonic improvement)
  4. Boundary Invariants — Hard limits the agent can never cross

Key Concepts

  • Battery = Collection: Multiple invariants checked in parallel, like electrical cells in series
  • Falsification > Verification: A single violation PROVES the agent failed. No number of passes proves it works.
  • Drift Detection: Gradual degradation of invariant scores over time
  • Spine Integration: Every check is written to the append-only spine

The Falsifier Gate

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

References

  • EVEZ-OS: falsifier gate enforcement
  • MAES: VERIFIED/PENDING/INVESTIGATING status model
  • poly_c formula: τ × ω × topo / 2√N

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-13 07:00 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Workflow Orchestrator

evezart
可视化工作流构建器,用于编排多智能体系统,支持分支、并行执行、错误处理和重试逻辑。适用于构建代理...
★ 0 📥 334

Agent Memory Layer

evezart
可扩展的AI代理记忆系统,支持短期、长期和情景记忆,用于构建代理记忆持久化和对话上下文管理。
★ 0 📥 356

Cross Domain Engine

evezart
利用EVEZ OODA循环架构发现不同研究领域的隐藏关联,用于寻找跨领域新关联、检测...
★ 0 📥 301