You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The private security package was renamed matrix_security -> morpheus_security
in its own repo. Update the public seam + call sites to import it by the new
name so the deploy contract stays consistent:
- runtime/security seam: from morpheus_security import ... / SECURITY_BACKEND
- gateway + runtime call-site references and 2 docs
- Matrix-Security-System repo-name references -> Morpheus-Security-System
Interface names only — no security rules or internals added. The bridge
sanitizer/exporter leak-filter patterns are deliberately left untouched.
Verified: seam falls back to noop when the package is absent, binds
SECURITY_BACKEND=morpheus_security when the renamed core is on the path.
@@ -96,7 +96,7 @@ Set under `services.<name>.*` in `openmatrix.config.json`. Each service returns
96
96
97
97
| Credential | Where | Unlocks |
98
98
|---|---|---|
99
-
| Deploy key / fine-grained PAT with read on `Matrix-Security-System`| deploy CI / image build |`pip install git+ssh://…/Matrix-Security-System` so the seam binds real enforcement. Absent → platform runs with `SECURITY_BACKEND=noop` (safe, inert). See `Matrix-Security-System/DEPLOY_ASSEMBLY.md`. |
99
+
| Deploy key / fine-grained PAT with read on `Morpheus-Security-System`| deploy CI / image build |`pip install git+ssh://…/Morpheus-Security-System` so the seam binds real enforcement. Absent → platform runs with `SECURITY_BACKEND=noop` (safe, inert). See `Morpheus-Security-System/DEPLOY_ASSEMBLY.md`. |
100
100
101
101
## 7. Per-component contract addresses (app) — fill AFTER `deploy_all.py`
102
102
@@ -115,9 +115,9 @@ The full chain is wired in code: **app → gateway → agent → dispatcher →
115
115
gate → tool → chain**. To exercise it end-to-end on Base Sepolia:
116
116
117
117
1.**Install both layers together** (per `DEPLOY_ASSEMBLY.md`): check out `0pnMatrx`,
118
-
then `pip install -e .` of `Matrix-Security-System` alongside it (deploy key).
118
+
then `pip install -e .` of `Morpheus-Security-System` alongside it (deploy key).
119
119
Confirm `python -c "import runtime.security as s; print(s.SECURITY_BACKEND)"`
0 commit comments