gate.cat 0.0.1__tar.gz
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.
- gate_cat-0.0.1/.gitignore +102 -0
- gate_cat-0.0.1/PKG-INFO +49 -0
- gate_cat-0.0.1/README.md +33 -0
- gate_cat-0.0.1/gatecat/__init__.py +7 -0
- gate_cat-0.0.1/pyproject.toml +26 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*$py.class
|
|
4
|
+
*.egg-info/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
.eggs/
|
|
8
|
+
*.egg
|
|
9
|
+
|
|
10
|
+
.env
|
|
11
|
+
.env.local
|
|
12
|
+
.env.production
|
|
13
|
+
|
|
14
|
+
.venv/
|
|
15
|
+
venv/
|
|
16
|
+
env/
|
|
17
|
+
|
|
18
|
+
.pytest_cache/
|
|
19
|
+
.ruff_cache/
|
|
20
|
+
.mypy_cache/
|
|
21
|
+
|
|
22
|
+
*.gguf
|
|
23
|
+
models/
|
|
24
|
+
|
|
25
|
+
.DS_Store
|
|
26
|
+
Thumbs.db
|
|
27
|
+
|
|
28
|
+
*.log
|
|
29
|
+
|
|
30
|
+
# Build outputs
|
|
31
|
+
build-output/
|
|
32
|
+
build-portable/
|
|
33
|
+
*.zip
|
|
34
|
+
|
|
35
|
+
# Backups
|
|
36
|
+
*.backup
|
|
37
|
+
|
|
38
|
+
# Backups of env files
|
|
39
|
+
.env.local.backup
|
|
40
|
+
|
|
41
|
+
# MCP config (contains server URLs)
|
|
42
|
+
.mcp.json
|
|
43
|
+
|
|
44
|
+
# Claude Code
|
|
45
|
+
.claude/
|
|
46
|
+
|
|
47
|
+
# Temp files
|
|
48
|
+
.tmp/
|
|
49
|
+
|
|
50
|
+
# Screenshots and dev images
|
|
51
|
+
*.png
|
|
52
|
+
!static/avatars/*.png
|
|
53
|
+
!static/generated/*.png
|
|
54
|
+
!android/bgml-worker-qr.png
|
|
55
|
+
|
|
56
|
+
# PDF chat logs
|
|
57
|
+
CHAT*.pdf
|
|
58
|
+
|
|
59
|
+
# Playwright
|
|
60
|
+
.playwright-mcp/
|
|
61
|
+
|
|
62
|
+
# Build artifacts
|
|
63
|
+
*.apk
|
|
64
|
+
.gstack/
|
|
65
|
+
|
|
66
|
+
# Syncthing local state
|
|
67
|
+
.stfolder/
|
|
68
|
+
.stignore
|
|
69
|
+
|
|
70
|
+
# Theia/IDE local state
|
|
71
|
+
.theia/
|
|
72
|
+
|
|
73
|
+
# Temp truncation files
|
|
74
|
+
.tmp_*
|
|
75
|
+
|
|
76
|
+
# Datalake (335MB, large benchmark data — keep on disk only)
|
|
77
|
+
datalake/
|
|
78
|
+
|
|
79
|
+
# Broken USB symlink (data/qa -> F:/bgml-qa, only when F: mounted)
|
|
80
|
+
data/qa
|
|
81
|
+
|
|
82
|
+
# Chrome profile (large, contains 1Password extension assets and browser state)
|
|
83
|
+
tmp/chrome-bgml/
|
|
84
|
+
|
|
85
|
+
# All tmp/tmp_* dirs (research scratch — keep on disk only)
|
|
86
|
+
tmp/
|
|
87
|
+
tmp_anth_sdk/
|
|
88
|
+
|
|
89
|
+
# Training data (large jsonl datasets)
|
|
90
|
+
training_data/
|
|
91
|
+
|
|
92
|
+
# Bookmark/HTML scratch
|
|
93
|
+
openreview-bookmark.html
|
|
94
|
+
|
|
95
|
+
# Large binary archives
|
|
96
|
+
*.tar.gz
|
|
97
|
+
*.tar
|
|
98
|
+
*.zip
|
|
99
|
+
|
|
100
|
+
# Benchmark response caches (LLM API outputs, regenerable, large)
|
|
101
|
+
benchmarks/results/*/response_cache/
|
|
102
|
+
benchmarks/**/response_cache/
|
gate_cat-0.0.1/PKG-INFO
ADDED
|
@@ -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>
|
gate_cat-0.0.1/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# gate.cat
|
|
2
|
+
|
|
3
|
+
**Action-veto gate for AI agents — block irreversible actions before they execute.**
|
|
4
|
+
|
|
5
|
+
`gate.cat` puts a veto between an AI agent and the real world: `terraform destroy`,
|
|
6
|
+
payments, `rm -rf`, force-pushes, outbound e-mail. The agent proposes, the gate
|
|
7
|
+
decides — allow, or block and escalate to a human.
|
|
8
|
+
|
|
9
|
+
## Status
|
|
10
|
+
|
|
11
|
+
**Pre-alpha (0.0.1).** This release reserves the package name. The veto engine
|
|
12
|
+
is in active development and lands in an upcoming release. What it does *not*
|
|
13
|
+
do yet: this placeholder ships no runtime functionality.
|
|
14
|
+
|
|
15
|
+
Honest line: a veto gate rejects actions it can check; anything it cannot check
|
|
16
|
+
is *unchecked*, not *safe*.
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install gate.cat
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
(PyPI treats `gate.cat`, `gate-cat` and `gate_cat` as the same name.)
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
import gatecat
|
|
28
|
+
print(gatecat.__version__)
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Links
|
|
32
|
+
|
|
33
|
+
- Website: <https://gate.cat>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "gate.cat"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "gate.cat - action-veto gate for AI agents: block irreversible actions before they execute. Early-stage; this release reserves the name."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "BGML", email = "bogumil@jankiewi.cz" }]
|
|
13
|
+
keywords = ["ai-agents", "guardrails", "action-veto", "safety", "human-in-the-loop"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Software Development :: Libraries",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://gate.cat"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
packages = ["gatecat"]
|