Metadata-Version: 2.4
Name: aegistrace
Version: 0.1.0
Summary: Local AI agent observability and audit SDK. Zero cloud, zero telemetry.
Project-URL: Homepage, https://aegistrace.dev
Project-URL: Repository, https://github.com/aegistrace/aegistrace
Project-URL: Documentation, https://docs.aegistrace.dev
Project-URL: Bug Tracker, https://github.com/aegistrace/aegistrace/issues
License: MIT
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic>=2.0
Provides-Extra: autogen
Requires-Dist: pyautogen>=0.2; extra == 'autogen'
Provides-Extra: dev
Requires-Dist: black>=24.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.3; extra == 'dev'
Provides-Extra: langchain
Requires-Dist: langchain-community>=0.1; extra == 'langchain'
Requires-Dist: langchain>=0.1; extra == 'langchain'
Description-Content-Type: text/markdown

# AegisTrace SDK

**Local AI Agent Observability & Audit SDK**

> Zero cloud. Zero telemetry. Your data never leaves your machine.

## Install

```bash
pip install aegistrace
```

## Quick Start

```python
from aegistrace import tracer

@tracer.watch(agent_id="my_agent", compliance_level="high")
def run_my_agent(task):
    # your existing agent code — nothing changes
    return result
```

That's it. Every execution is now captured as a structured, tamper-proof trace.
