Metadata-Version: 2.4
Name: gate.cat
Version: 0.0.1
Summary: gate.cat - action-veto gate for AI agents: block irreversible actions before they execute. Early-stage; this release reserves the name.
Project-URL: Homepage, https://gate.cat
Author-email: BGML <bogumil@jankiewi.cz>
License: MIT
Keywords: action-veto,ai-agents,guardrails,human-in-the-loop,safety
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# gate.cat

**Action-veto gate for AI agents — block irreversible actions before they execute.**

`gate.cat` puts a veto between an AI agent and the real world: `terraform destroy`,
payments, `rm -rf`, force-pushes, outbound e-mail. The agent proposes, the gate
decides — allow, or block and escalate to a human.

## Status

**Pre-alpha (0.0.1).** This release reserves the package name. The veto engine
is in active development and lands in an upcoming release. What it does *not*
do yet: this placeholder ships no runtime functionality.

Honest line: a veto gate rejects actions it can check; anything it cannot check
is *unchecked*, not *safe*.

## Install

```bash
pip install gate.cat
```

(PyPI treats `gate.cat`, `gate-cat` and `gate_cat` as the same name.)

```python
import gatecat
print(gatecat.__version__)
```

## Links

- Website: <https://gate.cat>
