Metadata-Version: 2.4
Name: agent-gov
Version: 0.1.0
Summary: AI agent governance and compliance engine with policy enforcement
Project-URL: Homepage, https://github.com/aumos-ai/agent-gov
Project-URL: Documentation, https://github.com/aumos-ai/agent-gov#readme
Project-URL: Repository, https://github.com/aumos-ai/agent-gov
Project-URL: Issues, https://github.com/aumos-ai/agent-gov/issues
Author: AumOS Contributors
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: click>=8.0
Requires-Dist: jinja2>=3.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Provides-Extra: agentcore
Requires-Dist: agentcore-sdk>=0.1.0; extra == 'agentcore'
Provides-Extra: all-frameworks
Requires-Dist: anthropic>=0.30.0; extra == 'all-frameworks'
Requires-Dist: crewai>=0.50.0; extra == 'all-frameworks'
Requires-Dist: langchain-core>=0.2.0; extra == 'all-frameworks'
Requires-Dist: openai>=1.0.0; extra == 'all-frameworks'
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.30.0; extra == 'anthropic'
Provides-Extra: crewai
Requires-Dist: crewai>=0.50.0; extra == 'crewai'
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pip-audit; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.3; extra == 'dev'
Provides-Extra: langchain
Requires-Dist: langchain-core>=0.2.0; extra == 'langchain'
Provides-Extra: microsoft
Requires-Dist: microsoft-agents>=0.1.0; extra == 'microsoft'
Provides-Extra: openai-agents
Requires-Dist: openai>=1.0.0; extra == 'openai-agents'
Description-Content-Type: text/markdown

# agent-gov

AI agent governance and compliance engine with policy enforcement

[![CI](https://github.com/aumos-ai/agent-gov/actions/workflows/ci.yaml/badge.svg)](https://github.com/aumos-ai/agent-gov/actions/workflows/ci.yaml)
[![PyPI version](https://img.shields.io/pypi/v/agent-gov.svg)](https://pypi.org/project/agent-gov/)
[![Python versions](https://img.shields.io/pypi/pyversions/agent-gov.svg)](https://pypi.org/project/agent-gov/)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)

Part of the [AumOS](https://github.com/aumos-ai) open-source agent infrastructure portfolio.

---

## Features

- Declarative YAML policy schema (`PolicyConfig`) with versioned rules, per-rule severity, enable/disable flags, and arbitrary metadata for audit trails
- `PolicyEngine` evaluates action contexts against ordered rule lists using AND/OR condition logic with operators including `contains_pii`, `matches`, `greater_than`, and `in_list`
- Four built-in rule types — PII check, role check, cost limit, and keyword block — each implementing the `PolicyRule` ABC and registered via the plugin system
- Compliance framework stubs for EU AI Act, GDPR, HIPAA, and SOC 2 that map rule violations to specific regulatory articles and controls
- Append-only audit logger with structured JSON entries and a search API for querying the audit trail by agent ID, policy name, and time range
- Compliance report generator producing JSON and Markdown summaries grouped by framework and severity
- `agentcore` bridge that hooks `PolicyEngine` evaluation into the `EventBus` lifecycle so governance runs transparently alongside agent execution

## Quick Start

Install from PyPI:

```bash
pip install agent-gov
```

Verify the installation:

```bash
agent-gov version
```

Basic usage:

```python
import agent_gov

# See examples/01_quickstart.py for a working example
```

## Documentation

- [Architecture](docs/architecture.md)
- [Contributing](CONTRIBUTING.md)
- [Changelog](CHANGELOG.md)
- [Examples](examples/README.md)

## Enterprise Upgrade

For production deployments requiring SLA-backed support and advanced
integrations, contact the maintainers or see the commercial extensions documentation.

## Contributing

Contributions are welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md)
before opening a pull request.

## License

Apache 2.0 — see [LICENSE](LICENSE) for full terms.

---

Part of [AumOS](https://github.com/aumos-ai) — open-source agent infrastructure.
