gate.cat 0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: gate.cat
3
+ Version: 0.0.1
4
+ Summary: gate.cat - action-veto gate for AI agents: block irreversible actions before they execute. Early-stage; this release reserves the name.
5
+ Project-URL: Homepage, https://gate.cat
6
+ Author-email: BGML <bogumil@jankiewi.cz>
7
+ License: MIT
8
+ Keywords: action-veto,ai-agents,guardrails,human-in-the-loop,safety
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Software Development :: Libraries
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # gate.cat
18
+
19
+ **Action-veto gate for AI agents — block irreversible actions before they execute.**
20
+
21
+ `gate.cat` puts a veto between an AI agent and the real world: `terraform destroy`,
22
+ payments, `rm -rf`, force-pushes, outbound e-mail. The agent proposes, the gate
23
+ decides — allow, or block and escalate to a human.
24
+
25
+ ## Status
26
+
27
+ **Pre-alpha (0.0.1).** This release reserves the package name. The veto engine
28
+ is in active development and lands in an upcoming release. What it does *not*
29
+ do yet: this placeholder ships no runtime functionality.
30
+
31
+ Honest line: a veto gate rejects actions it can check; anything it cannot check
32
+ is *unchecked*, not *safe*.
33
+
34
+ ## Install
35
+
36
+ ```bash
37
+ pip install gate.cat
38
+ ```
39
+
40
+ (PyPI treats `gate.cat`, `gate-cat` and `gate_cat` as the same name.)
41
+
42
+ ```python
43
+ import gatecat
44
+ print(gatecat.__version__)
45
+ ```
46
+
47
+ ## Links
48
+
49
+ - Website: <https://gate.cat>
@@ -0,0 +1,4 @@
1
+ gatecat/__init__.py,sha256=Pxiqvp0NgNhXBgw5USja6rfRu1JOfBXSFzQTcp32ewU,203
2
+ gate_cat-0.0.1.dist-info/METADATA,sha256=bHhXr98BVG1e_PXzD2XRgAfd2xlWp-z-zlTDevyPIx8,1536
3
+ gate_cat-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ gate_cat-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
gatecat/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ """gate.cat - action-veto gate for AI agents.
2
+
3
+ Early-stage package. This release reserves the name on PyPI; the veto
4
+ engine lands in an upcoming release. See https://gate.cat.
5
+ """
6
+
7
+ __version__ = "0.0.1"