Skip to content

Commit 924bf88

Browse files
fix: align package name to ai-agent-governance (matches PyPI)
The package was published to PyPI as ai-agent-governance but pyproject.toml and docs referenced ai-agent-compliance. Updated 18 references across 7 files. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c33fece commit 924bf88

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5555
isolation, resource quotas, and Docker/Firecracker execution environments.
5656
- **Agent SRE** (`agent-sre`) — Observability toolkit with chaos-engineering probes,
5757
canary deployment framework, and automated incident response.
58-
- **Agent Compliance** (`ai-agent-compliance`) — Unified compliance installer mapping
58+
- **Agent Compliance** (`ai-agent-governance`) — Unified compliance installer mapping
5959
OWASP ASI 2026 (10/10), NIST AI RMF, EU AI Act, and CSA Agentic Trust Framework.
6060
- Mono-repo CI/CD: lint (ruff) × 5 packages, test matrix (3 Python versions × 4 packages),
6161
security scanning (safety), CodeQL SAST (Python + JavaScript).

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This is a mono-repo with five packages:
5757
| `agentmesh` | `packages/agent-mesh/` | Inter-agent trust and identity mesh |
5858
| `agent-hypervisor` | `packages/agent-hypervisor/` | Runtime sandboxing and capability isolation |
5959
| `agent-sre` | `packages/agent-sre/` | Observability, alerting, and reliability |
60-
| `ai-agent-compliance` | `packages/agent-compliance/` | Unified installer and compliance docs |
60+
| `ai-agent-governance` | `packages/agent-compliance/` | Unified installer and compliance docs |
6161

6262
### Coding Guidelines
6363

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Covers **10 of 10 [OWASP Agentic Top 10](https://owasp.org/www-project-agentic-a
3535
```
3636
┌─────────────────────────────────────────────────────────────────┐
3737
│ Agent Governance Toolkit │
38-
│ pip install ai-agent-compliance[full] │
38+
│ pip install ai-agent-governance[full] │
3939
├─────────────────────────────────────────────────────────────────┤
4040
│ │
4141
│ ┌───────────────────┐ ┌───────────────────────────┐ │
@@ -68,13 +68,13 @@ Covers **10 of 10 [OWASP Agentic Top 10](https://owasp.org/www-project-agentic-a
6868
| **AgentMesh** | [`agentmesh-platform`](https://pypi.org/project/agentmesh-platform/) | Inter-agent trust — Ed25519 identity, SPIFFE/SVID credentials, trust scoring, A2A/MCP/IATP protocol bridges |
6969
| **Agent Hypervisor** | [`agent-hypervisor`](https://pypi.org/project/agent-hypervisor/) | Execution isolation — 4-tier privilege rings, saga orchestration, kill switch, joint liability, hash-chain audit |
7070
| **Agent SRE** | [`agent-sre`](https://pypi.org/project/agent-sre/) | Reliability engineering — SLOs, error budgets, replay debugging, chaos engineering, progressive delivery |
71-
| **Agent Compliance** | [`ai-agent-compliance`](https://pypi.org/project/ai-agent-compliance/) | Unified installer and compliance documentation |
71+
| **Agent Compliance** | [`ai-agent-governance`](https://pypi.org/project/ai-agent-governance/) | Unified installer and compliance documentation |
7272

7373
## Quick Start
7474

7575
```bash
7676
# Install the full governance stack
77-
pip install ai-agent-compliance[full]
77+
pip install ai-agent-governance[full]
7878
```
7979

8080
```python

RELEASE_NOTES_v1.0.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
| **AgentMesh** | Zero-trust identity mesh with DID, trust scoring, delegation chains | `pip install agentmesh-platform` |
1919
| **Agent Hypervisor** | Execution rings, resource limits, kill switch, saga orchestration | `pip install agent-hypervisor` |
2020
| **Agent SRE** | SLOs, error budgets, circuit breakers, chaos engineering | `pip install agent-sre` |
21-
| **Agent Compliance** | Unified installer and compliance documentation | `pip install ai-agent-compliance` |
21+
| **Agent Compliance** | Unified installer and compliance documentation | `pip install ai-agent-governance` |
2222

2323
## Security & Compliance
2424

@@ -72,7 +72,7 @@ See [docs/PROPOSALS-INDEX.md](docs/PROPOSALS-INDEX.md) for the full list.
7272
## Quick Start
7373

7474
```bash
75-
pip install ai-agent-compliance[full]
75+
pip install ai-agent-governance[full]
7676
```
7777

7878
```python

packages/agent-compliance/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
*One install for the complete governance stack — kernel · trust mesh · runtime supervisor · reliability engineering*
88

9-
[![PyPI](https://img.shields.io/badge/pypi-ai--agent--compliance-blue.svg)](https://pypi.org/project/ai-agent-compliance/)
9+
[![PyPI](https://img.shields.io/badge/pypi-ai--agent--compliance-blue.svg)](https://pypi.org/project/ai-agent-governance/)
1010
[![CI](https://github.com/microsoft/agent-governance-toolkit/actions/workflows/ci.yml/badge.svg)](https://github.com/microsoft/agent-governance-toolkit/actions/workflows/ci.yml)
1111
[![GitHub Stars](https://img.shields.io/github/stars/microsoft/agent-governance-toolkit?style=social)](https://github.com/microsoft/agent-governance-toolkit/stargazers)
1212
[![Sponsor](https://img.shields.io/badge/sponsor-❤️-ff69b4)](https://github.com/microsoft/agent-governance-toolkit)
1313
[![Python](https://img.shields.io/badge/python-3.9+-blue.svg)](https://python.org)
1414
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
1515

1616
```
17-
pip install ai-agent-compliance[full]
17+
pip install ai-agent-governance[full]
1818
```
1919

2020
[Architecture](#architecture)[Quick Start](#quick-start)[Components](#components)[Why Unified?](#why-a-unified-governance-stack)[Ecosystem](#the-agent-governance-ecosystem)[OWASP Compliance](docs/OWASP-COMPLIANCE.md)[Traction](docs/TRACTION.md)
@@ -32,7 +32,7 @@ pip install ai-agent-compliance[full]
3232
```
3333
┌─────────────────────────────────────────────────────────────────┐
3434
│ agent-compliance │
35-
│ pip install ai-agent-compliance[full] │
35+
│ pip install ai-agent-governance[full] │
3636
├─────────────────────────────────────────────────────────────────┤
3737
│ │
3838
│ ┌───────────────────┐ ┌───────────────────────────┐ │
@@ -93,14 +93,14 @@ Install only what you need:
9393

9494
```bash
9595
# Core: kernel + trust mesh
96-
pip install ai-agent-compliance
96+
pip install ai-agent-governance
9797

9898
# Full stack: adds hypervisor + SRE
99-
pip install ai-agent-compliance[full]
99+
pip install ai-agent-governance[full]
100100

101101
# À la carte
102-
pip install ai-agent-compliance[hypervisor]
103-
pip install ai-agent-compliance[sre]
102+
pip install ai-agent-governance[hypervisor]
103+
pip install ai-agent-governance[sre]
104104
```
105105

106106
---
@@ -177,13 +177,13 @@ python examples/governed_agent.py
177177

178178
```bash
179179
# LangChain
180-
pip install langchain ai-agent-compliance
180+
pip install langchain ai-agent-governance
181181

182182
# CrewAI
183-
pip install crewai ai-agent-compliance
183+
pip install crewai ai-agent-governance
184184

185185
# AutoGen
186-
pip install pyautogen ai-agent-compliance
186+
pip install pyautogen ai-agent-governance
187187
```
188188

189189
---

packages/agent-compliance/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=68.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "ai-agent-compliance"
6+
name = "ai-agent-governance"
77
version = "1.0.2"
88
description = "Unified installer and compliance documentation for the Agent Governance Toolkit"
99
readme = "README.md"

packages/agent-compliance/src/agent_compliance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Agent Compliance - Unified installer and compliance documentation.
55
66
Install the full stack:
7-
pip install ai-agent-compliance[full]
7+
pip install ai-agent-governance[full]
88
99
Components:
1010
- agent-os-kernel: Governance kernel with policy enforcement

0 commit comments

Comments
 (0)