mirra-sdk
One wrapper call gives any agent a persistent recognized identity, tamper-evident portable memory of its relationships, behavior that adapts per relationship, and execution that only happens when verified.
import mirra
wrapped = mirra.wrap(my_agent, principal="team-key-1", profile="dev_balanced")
wrapped.identity # recognized across sessions, not met fresh
wrapped.remember("alice", "…") # signed scroll — verify-on-read, fail-closed
wrapped.recall("alice") # only cryptographically verified memories
wrapped.interact("alice", "hi") # context built from alice's own history
wrapped.execute("shell.exec", "…") # deterministic, signed decision record
This is Edge 1 (the SDK) of the MIRRA platform's one-core/three-edges
architecture. The SDK speaks only the frozen v1 core contract
(mirra-core-contract); the enforcement engine (MVAR via ClawZero) and the
signed memory store (ClawSeal) plug in beneath it, and optional capability
providers can be injected at runtime for identity enrichment and epistemic
verification.
The four pillars
| Pillar | API | Guarantee |
|---|---|---|
| Recognition | wrapped.identity |
Same principal → same identity + fingerprint across sessions; keys generated on first run, never stored in a repo |
| Portable signed memory | remember / recall / verify |
Sign-on-write, verify-on-read; tampered memories are dropped, never returned |
| Per-relationship behavior | interact / build_context |
The agent sees each subject's own verified history |
| Permissioned execution | execute / protect_tool |
Deterministic allow/block with an Ed25519-signed witness; forged records fail verification; no engine → refuse |
Profiles: build against dev_balanced (safe actions allow, hostile ones
block, risky ones step up). The default is prod_locked — the fail-closed
production posture where every action is refused unless the caller supplies
risk context or step-up approval. If you omit profile and everything blocks,
that is the lockdown working as designed.
Fail-closed by design
- No enforcement engine → every action is blocked, never silently allowed.
- No memory backend →
wrap()raises, never runs with unsigned memory. - Damaged identity keystore → raises, never silently mints a new identity.
- Tampered scroll or forged decision record → fails verification.
Demo
Installed (pip):
mirra-demo # live 5-check report; run twice — the second run proves recognition
From a checkout:
python3 demo/demo_sdk.py # narrative version of the same proof
See DEMO.md for the five-minute walkthrough.
Tests
python3 -m pytest tests/ -q
The suite is organized by acceptance criterion: test_recognition.py,
test_signed_memory.py, test_differentiated_behavior.py,
test_permissioned_execution.py, test_boundary.py (public/private leak gate).
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mirra_sdk-0.1.1.tar.gz.
File metadata
- Download URL: mirra_sdk-0.1.1.tar.gz
- Upload date:
- Size: 36.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec1e03e0691a0e41a4c51b1c21db0545be1434e768833b9d9adc03e7ed31edfa
|
|
| MD5 |
f52866d419435fff6186371891523eea
|
|
| BLAKE2b-256 |
28ee603526be52f1a989bf19443ba1c7138139e38025d588bad141d8f118273a
|
File details
Details for the file mirra_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: mirra_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 34.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64e93758554b240bc2fb625354a9d581d47f0021550e2557560fc95eb93f3512
|
|
| MD5 |
8413c76c22f54a36ead64a35958589a3
|
|
| BLAKE2b-256 |
c447eb5d5e66d0c480cc3e1a1ac6c93dc8bae9bfe3e375795c2e66fe6ffb43eb
|