Metadata-Version: 2.4
Name: openshell_agentmesh
Version: 3.6.0
Summary: Public Preview - OpenShell + AgentMesh governance skill
Project-URL: Homepage, https://github.com/microsoft/agent-governance-toolkit
Author-email: Microsoft Corporation <agentgovtoolkit@microsoft.com>
License: MIT
Requires-Python: >=3.10
Requires-Dist: pyyaml<7.0,>=6.0
Provides-Extra: agentmesh
Requires-Dist: agentmesh-platform<4.0,>=3.0; extra == 'agentmesh'
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# OpenShell + AgentMesh Governance Skill

**Public Preview** - Governance skill for NVIDIA OpenShell sandboxes.
OpenShell = walls (Landlock, seccomp, OPA). This skill = brain (policy, trust, audit).

## Install

```bash
pip install openshell-agentmesh
```

## Quick Start

```python
from openshell_agentmesh import GovernanceSkill

skill = GovernanceSkill(policy_dir="./policies")
decision = skill.check_policy("shell:python test.py")
print(decision.allowed)  # True
```

## Related

- [OpenShell Integration Guide](../../../docs/integrations/openshell.md)
- [Runnable Example](../../../examples/openshell-governed/)
- [NVIDIA OpenShell](https://github.com/NVIDIA/OpenShell)
