Metadata-Version: 2.1
Name: vaultak
Version: 0.6.1
Summary: Real-time behavioral kill switch for AI agents
Home-page: https://github.com/samueloladji-beep/Agentbreaker-
Author: Samuel Oladji
Author-email: samueloladji@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Vaultak

**Runtime security and behavioral monitoring for AI agents.**

Vaultak is the control layer for AI agents in production. Monitor every action, enforce permission boundaries, and automatically pause or roll back agents before damage is done.

## Install

```bash
pip install vaultak
```

## Quick Start

```python
from vaultak import Vaultak

vt = Vaultak(api_key="vtk_...")

with vt.monitor("my-agent"):
    # your agent code here
    pass
```

## Products

- **Vaultak Core** — SDK, 5 lines of code, deep integration
- **Vaultak Sentry** — Desktop app, zero code changes, any language

## Links

- Website: https://vaultak.com
- Dashboard: https://app.vaultak.com
- Docs: https://docs.vaultak.com
- PyPI: https://pypi.org/project/vaultak

## License

MIT


