STRATAM io
Sovereign · no shadow SaaS account

Run sovereign (local)

Product profile on hardware you control. Keys never mint a foreign tenancy for the memory layer.

Product fabric

import secrets
from stratam import product_fabric

key = secrets.token_bytes(32)
f, boundary = product_fabric(key, require_registered_channel=False)
token = boundary.issue("ops", "agency-scope", may_write=True)
boundary.remember(f, "Clearance procedure prefers local storage.", token)

Environment inject (host / KMS)

export STRATAM_KMS_ROOT="$(openssl rand -base64 32)"
# optional: STRATAM_KMS_SIGNING / ATTEST / BOUNDARY / KID
python -c "from stratam import load_key_material_from_env, product_from_keys
keys = load_key_material_from_env()
f, b = product_from_keys(keys, require_registered_channel=False)
print('product fabric ready')"

Console product mode

python examples/ui/server.py --profile product

What stays on host

ComponentLeaves host?
Memory fabric stateNo (in-process / your volume)
KMS materialNo if you inject locally
Optional LLM judges for evalOnly if you call external APIs for benchmarks

Identity proofing and HSM custody remain embedding app / VOROR responsibilities.

Lab defaults are not protective. Product path refuses repo-known keys. Home · Demo console (non-PHI)