Metadata-Version: 2.4
Name: agentomy
Version: 0.1.0a1
Summary: Governed agent framework for Python. Add governance to any AI agent.
Home-page: https://github.com/Galaleio/Agentomy
Author: Agentomy Contributors
Author-email: governance@agentomy.com
License: MIT
Project-URL: Homepage, https://agentomy.com
Project-URL: Documentation, https://agentomy.com/docs
Project-URL: GovernanceBench, https://agentomy.com/governancebench
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Agentomy -- Python SDK

Governed agent framework for Python. Add governance to any AI agent.

## Install

```bash
pip install agentomy
```

## Quick Start (4 lines)

```python
from agentomy import GovernancePipeline

pipeline = GovernancePipeline(
    endpoint="YOUR_AGENTOMY_ENDPOINT",
    token="YOUR_TOKEN",
    agent_id="my-python-agent"
)

result = pipeline.govern(my_agent_function, input_data)
```

## 12 Governance Capsules

- PermissionRouter -- access control
- AuditLogger -- tamper-evident audit trail
- HaltProtocol -- emergency halt
- ExecutionTimer -- runtime boundaries
- AgentSandbox -- containment
- DecisionLog -- decision transparency
- TraceBinding -- output traceability
- TeamCoordinator -- multi-agent orchestration
- EthicsConstraint -- ethics enforcement
- TrustScorer -- behavioral trust
- RuntimeMonitor -- observability
- DeploymentManifest -- governance transparency

## Status

Alpha release. MIT licensed. Production requires Agentomy governance server.

## Links

- Website: https://agentomy.com
- GovernanceBench: https://agentomy.com/governancebench
- npm (TypeScript): https://npmjs.com/package/agentomy-agent
