Skip to content

Commit 7a3fdb9

Browse files
fix(security): complete dependency confusion fix — replace all pip install agent-os with agent-os-kernel
Replace all remaining instances of `pip install agent-os` (unregistered on PyPI) with `pip install agent-os-kernel` (the actual package) across docs, examples, TypeScript extensions, CLI source, tests, and SVG assets. Also fixes `pip install emk` references to point to `agent-os-kernel[full]` since emk is a submodule, not a standalone PyPI package. Completes the fix started in PR microsoft#325 which only covered notebooks. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 057b908 commit 7a3fdb9

File tree

23 files changed

+32
-32
lines changed

23 files changed

+32
-32
lines changed

docs/deployment/azure-foundry-agent-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Each middleware works independently. Use any combination based on your requireme
8282
pip install agent-governance-toolkit[full]
8383

8484
# Or install individual packages
85-
pip install agent-os agentmesh agent-sre
85+
pip install agent-os-kernel agentmesh-platform agent-sre
8686
```
8787

8888
---

docs/tutorials/06-execution-sandboxing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ layers of defense:
5555

5656
- Python ≥ 3.11
5757
- `pip install agent-runtime` (v2.0.2+)
58-
- For capability guards: `pip install agent-os`
58+
- For capability guards: `pip install agent-os-kernel`
5959

6060
---
6161

packages/agent-compliance/docs/submissions/adversa-mcp-security-submission.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Identifies malicious schema patterns:
8888

8989
```bash
9090
# Install
91-
pip install agent-os
91+
pip install agent-os-kernel
9292

9393
# Scan an MCP configuration file
9494
mcp-scan scan mcp-config.json

packages/agent-compliance/docs/submissions/owasp-genai-implementation-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The stack consists of four components:
1111

1212
| Component | Role | Install |
1313
|---|---|---|
14-
| **Agent OS** | Governance kernel — policy, sandbox, memory, MCP security | `pip install agent-os` |
14+
| **Agent OS** | Governance kernel — policy, sandbox, memory, MCP security | `pip install agent-os-kernel` |
1515
| **AgentMesh** | Identity & trust — DIDs, SPIFFE, handshake, reputation | `pip install agentmesh` |
1616
| **Agent SRE** | Observability — SLOs, anomaly detection, chaos, OpenTelemetry | `pip install agent-sre` |
1717
| **Agent Runtime** | Runtime control — kill switch, execution rings, saga rollback | `pip install agent-runtime` |
@@ -1044,7 +1044,7 @@ This implementation guide is a community contribution to the OWASP GenAI project
10441044
To reproduce the examples, install the stack:
10451045

10461046
```bash
1047-
pip install agent-os agentmesh agent-sre agent-runtime
1047+
pip install agent-os-kernel agentmesh-platform agent-sre agent-runtime
10481048
```
10491049

10501050
All source code is available under the MIT license. PRs and issues welcome at

packages/agent-os/assets/demo-terminal.svg

Lines changed: 1 addition & 1 deletion
Loading

packages/agent-os/docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Learn by doing with our Jupyter notebooks:
5959

6060
```bash
6161
# Core package
62-
pip install agent-os
62+
pip install agent-os-kernel
6363

6464
# With all features
6565
pip install agent-os-kernel[full]

packages/agent-os/docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Common issues and solutions for Agent OS.
4343

4444
2. **Install in the correct environment:**
4545
```bash
46-
python -m pip install agent-os
46+
python -m pip install agent-os-kernel
4747
```
4848

4949
### Import errors with optional dependencies

packages/agent-os/docs/tutorials/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
## Step 1: Install (30 seconds)
1111

1212
```bash
13-
pip install agent-os
13+
pip install agent-os-kernel
1414
```
1515

1616
## Step 2: Create Your First Agent (2 minutes)

packages/agent-os/docs/tutorials/vscode-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ jobs:
509509
python-version: '3.11'
510510

511511
- name: Install AgentOS
512-
run: pip install agent-os
512+
run: pip install agent-os-kernel
513513

514514
- name: Run Policy Validation
515515
run: agent-os validate --policy policies/ --strict

packages/agent-os/docs/unified-vision.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ spec:
336336
### Step 1: Start with Agent OS
337337
338338
```bash
339-
pip install agent-os
339+
pip install agent-os-kernel
340340
```
341341

342342
```python

0 commit comments

Comments
 (0)