@@ -54,14 +54,21 @@ Addresses **10 of 10 [OWASP Agentic Top 10](https://genai.owasp.org/resource/owa
5454│ │ │ │
5555│ ▼ ▼ │
5656│ ┌───────────────────┐ ┌───────────────────────────┐ │
57- │ │ Agent Hypervisor │ │ Agent SRE │ │
57+ │ │ Agent Runtime │ │ Agent SRE │ │
5858│ │ │ │ │ │
5959│ │ Execution Rings │ │ SLO Engine + Error Budget│ │
6060│ │ Resource Limits │ │ Replay & Chaos Testing │ │
6161│ │ Runtime Sandboxing│ │ Progressive Delivery │ │
6262│ │ Termination Ctrl │ │ Circuit Breakers │ │
6363│ └───────────────────┘ └───────────────────────────┘ │
6464│ │
65+ │ ┌───────────────────┐ ┌───────────────────────────┐ │
66+ │ │ Agent Marketplace │ │ Agent Lightning │ │
67+ │ │ │ │ │ │
68+ │ │ Plugin Discovery │ │ RL Training Governance │ │
69+ │ │ Signing & Verify │ │ Policy Rewards │ │
70+ │ └───────────────────┘ └───────────────────────────┘ │
71+ │ │
6572└─────────────────────────────────────────────────────────────────┘
6673```
6774
@@ -71,9 +78,11 @@ Addresses **10 of 10 [OWASP Agentic Top 10](https://genai.owasp.org/resource/owa
7178| ---------| ------| -------------|
7279| ** Agent OS** | [ ` agent-os-kernel ` ] ( https://pypi.org/project/agent-os-kernel/ ) | Policy engine — deterministic action evaluation, capability model, audit logging, action interception, MCP gateway |
7380| ** AgentMesh** | [ ` agentmesh-platform ` ] ( https://pypi.org/project/agentmesh-platform/ ) | Inter-agent trust — Ed25519 identity, SPIFFE/SVID credentials, trust scoring, A2A/MCP/IATP protocol bridges |
74- | ** Agent Hypervisor ** | [ ` agent-hypervisor ` ] ( https://pypi.org/project/ agent-hypervisor /) | Execution sandboxing — 4-tier privilege rings, saga orchestration, termination control, joint liability, append-only audit log |
81+ | ** Agent Runtime ** | [ ` agent-runtime ` ] ( packages/ agent-runtime /) | Execution supervisor — 4-tier privilege rings, saga orchestration, termination control, joint liability, append-only audit log |
7582| ** Agent SRE** | [ ` agent-sre ` ] ( https://pypi.org/project/agent-sre/ ) | Reliability engineering — SLOs, error budgets, replay debugging, chaos engineering, progressive delivery |
76- | ** Agent Compliance** | [ ` ai-agent-compliance ` ] ( https://pypi.org/project/ai-agent-compliance/ ) | Unified installer and compliance documentation |
83+ | ** Agent Compliance** | [ ` ai-agent-compliance ` ] ( https://pypi.org/project/ai-agent-compliance/ ) | Regulatory compliance — GDPR, HIPAA, SOX audit frameworks |
84+ | ** Agent Marketplace** | [ ` agent-marketplace ` ] ( packages/agent-marketplace/ ) | Plugin lifecycle — discover, install, verify, and sign plugins |
85+ | ** Agent Lightning** | [ ` agent-lightning ` ] ( packages/agent-lightning/ ) | RL training governance — governed runners, policy rewards |
7786
7887## Quick Start
7988
@@ -106,8 +115,10 @@ Or install individual packages:
106115``` bash
107116pip install agent-os-kernel # Just the policy engine
108117pip install agentmesh # Just the trust mesh
109- pip install agent-hypervisor # Just the hypervisor
118+ pip install agent-runtime # Just the runtime supervisor
110119pip install agent-sre # Just the SRE toolkit
120+ pip install agent-marketplace # Just the plugin marketplace
121+ pip install agent-lightning # Just the RL training governance
111122```
112123
113124## Framework Integrations
@@ -133,7 +144,7 @@ Works with **12+ agent frameworks** including:
133144| Agent Goal Hijacking | ASI-01 | ✅ Policy engine blocks unauthorized goal changes |
134145| Excessive Capabilities | ASI-02 | ✅ Capability model enforces least-privilege |
135146| Identity & Privilege Abuse | ASI-03 | ✅ Zero-trust identity with Ed25519 certs |
136- | Uncontrolled Code Execution | ASI-04 | ✅ Hypervisor execution rings + sandboxing |
147+ | Uncontrolled Code Execution | ASI-04 | ✅ Agent Runtime execution rings + sandboxing |
137148| Insecure Output Handling | ASI-05 | ✅ Content policies validate all outputs |
138149| Memory Poisoning | ASI-06 | ✅ Episodic memory with integrity checks |
139150| Unsafe Inter-Agent Communication | ASI-07 | ✅ AgentMesh encrypted channels + trust gates |
@@ -155,7 +166,7 @@ Works with **12+ agent frameworks** including:
155166
156167### Security Model & Boundaries
157168
158- This toolkit operates as ** Python middleware** — it intercepts agent actions at the application level, not at the OS or hypervisor level. Understanding this boundary is critical:
169+ This toolkit operates as ** Python middleware** — it intercepts agent actions at the application level, not at the OS or hardware level. Understanding this boundary is critical:
159170
160171| What it does | What it does NOT do |
161172| ---| ---|
0 commit comments