From 043bbdafc26f346f3319e3412f33141f4ab5b1bb Mon Sep 17 00:00:00 2001 From: Sdvegas21 Date: Wed, 15 Apr 2026 11:24:38 -0700 Subject: [PATCH] =?UTF-8?q?Add=20mvar-security=20stack=20cross-references?= =?UTF-8?q?=20=E2=80=94=20MVAR=20+=20ClawZero=20+=20ClawSeal=20ecosystem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three-layer AI security infrastructure: - Runtime: MVAR (information flow control) - Execution: ClawZero (what the agent does) - Memory: ClawSeal (what the agent remembers) ClawSeal uses MVAR's QSEAL cryptographic primitives. ClawZero uses MVAR as its execution enforcement engine. --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index e6cd803..6b07c3f 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,27 @@ privileged execution sinks. See ClawZero for a 60-second demo of MVAR protecting an OpenClaw agent: https://github.com/mvar-security/clawzero +## The mvar-security Stack + +MVAR is part of a three-layer AI security infrastructure: + +| Layer | Tool | What it secures | +|-------|------|-----------------| +| **Runtime** | **MVAR** (this repo) | How information flows through the agent | +| **Execution** | [ClawZero](https://github.com/mvar-security/clawzero) | What the agent does | +| **Memory** | [ClawSeal](https://github.com/mvar-security/ClawSeal) | What the agent remembers | + +**Integration:** +- **ClawSeal** uses MVAR's QSEAL cryptographic primitives for tamper-evident memory signing +- **ClawZero** uses MVAR as its execution enforcement engine + +Install the full stack: +```bash +pip install mvar-security # Runtime enforcement +pip install clawzero # OpenClaw execution firewall +pip install clawseal # Cryptographic memory +``` + ## See It Block an Attack in <60 Seconds ```bash