|
| 1 | +# Governance |
| 2 | + |
| 3 | +This document describes the governance model for the Agent Governance Toolkit (AGT). |
| 4 | + |
| 5 | +## Project Scope |
| 6 | + |
| 7 | +The Agent Governance Toolkit provides runtime governance for autonomous AI agents: |
| 8 | +deterministic policy enforcement, zero-trust identity, execution sandboxing, and |
| 9 | +reliability engineering. |
| 10 | + |
| 11 | +## Roles |
| 12 | + |
| 13 | +### Maintainers |
| 14 | + |
| 15 | +Maintainers have merge authority and are responsible for the project's technical |
| 16 | +direction, security posture, and release management. See [MAINTAINERS.md](MAINTAINERS.md) |
| 17 | +for the current list. |
| 18 | + |
| 19 | +**Responsibilities:** |
| 20 | +- Review and merge pull requests |
| 21 | +- Triage security vulnerabilities (MSRC coordination) |
| 22 | +- Manage releases and signing (ESRP) |
| 23 | +- Enforce contribution policies |
| 24 | + |
| 25 | +### Contributors |
| 26 | + |
| 27 | +Anyone who submits a pull request, files an issue, or participates in discussions. |
| 28 | +See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. |
| 29 | + |
| 30 | +### Community Extension Authors |
| 31 | + |
| 32 | +External contributors who build integrations under `packages/agentmesh-integrations/`. |
| 33 | +Extensions are community-maintained and clearly separated from core. |
| 34 | + |
| 35 | +## Core vs Community Extension Boundary |
| 36 | + |
| 37 | +| Path | Ownership | Review Policy | |
| 38 | +|------|-----------|--------------| |
| 39 | +| `packages/agent-os/` | Microsoft maintainers | Maintainer approval required | |
| 40 | +| `packages/agent-mesh/src/` | Microsoft maintainers | Maintainer approval required | |
| 41 | +| `packages/agent-hypervisor/` | Microsoft maintainers | Maintainer approval required | |
| 42 | +| `packages/agent-sre/` | Microsoft maintainers | Maintainer approval required | |
| 43 | +| `packages/agent-compliance/` | Microsoft maintainers | Maintainer approval required | |
| 44 | +| `packages/agent-runtime/` | Microsoft maintainers | Maintainer approval required | |
| 45 | +| `packages/agent-marketplace/` | Microsoft maintainers | Maintainer approval required | |
| 46 | +| `packages/agent-governance-dotnet/` | Microsoft maintainers | Maintainer approval required | |
| 47 | +| `packages/agentmesh-integrations/` | Community + maintainers | Maintainer review, community may author | |
| 48 | +| `docs/integrations/` | Community + maintainers | Maintainer review, community may author | |
| 49 | +| `docs/adr/` | Community + maintainers | Maintainer review for proposed ADRs | |
| 50 | +| `examples/` | Community + maintainers | Maintainer review | |
| 51 | + |
| 52 | +**Core packages** (agent-os, agent-mesh, agent-hypervisor, agent-sre, agent-compliance, |
| 53 | +agent-runtime, agent-marketplace, agent-governance-dotnet) are maintained exclusively |
| 54 | +by Microsoft. External contributions to core require a prior discussion in a GitHub Issue |
| 55 | +and explicit maintainer approval before a PR is opened. |
| 56 | + |
| 57 | +**Community extensions** under `packages/agentmesh-integrations/` are welcome from any |
| 58 | +contributor. Extensions must not modify core packages. Each extension must include its |
| 59 | +own README, tests, and license notice. |
| 60 | + |
| 61 | +## Decision Making |
| 62 | + |
| 63 | +- **Technical decisions** are made by maintainers via GitHub Issues and ADRs |
| 64 | + (Architecture Decision Records) in `docs/adr/`. |
| 65 | +- **Security decisions** follow the [SECURITY.md](SECURITY.md) process and coordinate |
| 66 | + with MSRC when applicable. |
| 67 | +- **Roadmap priorities** are set by the maintainer team with community input via |
| 68 | + GitHub Discussions and Issues. |
| 69 | + |
| 70 | +## Releases |
| 71 | + |
| 72 | +- Releases follow [Semantic Versioning](https://semver.org/). |
| 73 | +- All packages are signed via ESRP (Microsoft's approved signing service). |
| 74 | +- Python packages are published to PyPI, npm packages to npmjs.com, NuGet packages |
| 75 | + to NuGet.org, Rust crates to crates.io. |
| 76 | +- Release notes are published in `RELEASE_NOTES_*.md` and GitHub Releases. |
| 77 | + |
| 78 | +## Code of Conduct |
| 79 | + |
| 80 | +This project follows the [Microsoft Open Source Code of Conduct](CODE_OF_CONDUCT.md). |
| 81 | + |
| 82 | +## License |
| 83 | + |
| 84 | +MIT License. See [LICENSE](LICENSE). |
| 85 | + |
| 86 | +## Amendments |
| 87 | + |
| 88 | +This governance document may be amended by maintainer consensus. Changes are tracked |
| 89 | +via pull requests to this file. |
0 commit comments