Metadata-Version: 2.4
Name: flux7
Version: 0.1.0
Summary: Governance infrastructure for AI agents — mesh + memory + audit
Project-URL: Homepage, https://docs.flux7.art
Project-URL: Repository, https://github.com/KTCrisis
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: flux7-memory>=0.4.0
Requires-Dist: flux7-mesh>=0.1.0
Provides-Extra: all
Requires-Dist: anthropic>=0.50.0; extra == 'all'
Requires-Dist: flux7-audit>=0.1.0; extra == 'all'
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.50.0; extra == 'anthropic'
Provides-Extra: audit
Requires-Dist: flux7-audit>=0.1.0; extra == 'audit'
Description-Content-Type: text/markdown

# flux7

Governance infrastructure for AI agents.

```bash
pip install flux7           # mesh + memory
pip install flux7[all]      # + audit + Claude API support
```

## Packages

| Package | Description |
|---|---|
| [flux7-mesh](https://github.com/KTCrisis/agent-mesh) | Policy engine and governance sidecar for AI agent tool calls |
| [flux7-memory](https://github.com/KTCrisis/mem7) | Governed memory substrate for multi-agent systems |
| [flux7-audit](https://github.com/KTCrisis/audit7) | RAG-powered code audit agent |

## Quick start

```python
from agent_mesh import AgentMesh, GovernedToolkit
from mem7 import Mem7

mesh = AgentMesh("http://localhost:9090", agent="my-agent")
mem = Mem7("http://localhost:9070")
```

MIT licensed. [docs.flux7.art](https://docs.flux7.art)
