kavros-agent 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.
- kavros_agent-0.0.1/PKG-INFO +35 -0
- kavros_agent-0.0.1/README.md +18 -0
- kavros_agent-0.0.1/kavros_agent/__init__ 2.py +9 -0
- kavros_agent-0.0.1/kavros_agent/__init__.py +9 -0
- kavros_agent-0.0.1/kavros_agent.egg-info/PKG-INFO +35 -0
- kavros_agent-0.0.1/kavros_agent.egg-info/SOURCES.txt +8 -0
- kavros_agent-0.0.1/kavros_agent.egg-info/dependency_links.txt +1 -0
- kavros_agent-0.0.1/kavros_agent.egg-info/top_level.txt +1 -0
- kavros_agent-0.0.1/pyproject.toml +27 -0
- kavros_agent-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kavros-agent
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Kavros governed-egress hook for Python agents (name reservation — the real package ships at kavros.ai launch)
|
|
5
|
+
Author: Kavros
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://kavros.ai
|
|
8
|
+
Keywords: kavros,ai,governance,egress,dlp,agent
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# kavros-agent
|
|
19
|
+
|
|
20
|
+
**Name reservation.** This placeholder holds the `kavros-agent` name on PyPI
|
|
21
|
+
for the Kavros governed-egress hook for Python agents — the successor to
|
|
22
|
+
`enclavia-agent`.
|
|
23
|
+
|
|
24
|
+
The real package is not published yet. Do not use this stub in production.
|
|
25
|
+
|
|
26
|
+
Kavros is the AI control plane: connect your AI to it and everything it can
|
|
27
|
+
touch is pre-approved, signed, attested, metered, DLP-checked, and auditable —
|
|
28
|
+
with a kill switch when you need one.
|
|
29
|
+
|
|
30
|
+
- Website: <https://kavros.ai> (launching)
|
|
31
|
+
- The `enclavia-agent` hook this will succeed: <https://pypi.org/project/enclavia-agent/>
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# kavros-agent
|
|
2
|
+
|
|
3
|
+
**Name reservation.** This placeholder holds the `kavros-agent` name on PyPI
|
|
4
|
+
for the Kavros governed-egress hook for Python agents — the successor to
|
|
5
|
+
`enclavia-agent`.
|
|
6
|
+
|
|
7
|
+
The real package is not published yet. Do not use this stub in production.
|
|
8
|
+
|
|
9
|
+
Kavros is the AI control plane: connect your AI to it and everything it can
|
|
10
|
+
touch is pre-approved, signed, attested, metered, DLP-checked, and auditable —
|
|
11
|
+
with a kill switch when you need one.
|
|
12
|
+
|
|
13
|
+
- Website: <https://kavros.ai> (launching)
|
|
14
|
+
- The `enclavia-agent` hook this will succeed: <https://pypi.org/project/enclavia-agent/>
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
MIT
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Kavros agent hook — name reservation stub.
|
|
2
|
+
|
|
3
|
+
The real governed-egress hook (successor to ``enclavia_agent``) ships at
|
|
4
|
+
Kavros launch. This module exists only so the wheel builds; importing it
|
|
5
|
+
is a no-op and it intentionally has no dependencies.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
__all__ = ["__version__"]
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Kavros agent hook — name reservation stub.
|
|
2
|
+
|
|
3
|
+
The real governed-egress hook (successor to ``enclavia_agent``) ships at
|
|
4
|
+
Kavros launch. This module exists only so the wheel builds; importing it
|
|
5
|
+
is a no-op and it intentionally has no dependencies.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
__all__ = ["__version__"]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kavros-agent
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Kavros governed-egress hook for Python agents (name reservation — the real package ships at kavros.ai launch)
|
|
5
|
+
Author: Kavros
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://kavros.ai
|
|
8
|
+
Keywords: kavros,ai,governance,egress,dlp,agent
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# kavros-agent
|
|
19
|
+
|
|
20
|
+
**Name reservation.** This placeholder holds the `kavros-agent` name on PyPI
|
|
21
|
+
for the Kavros governed-egress hook for Python agents — the successor to
|
|
22
|
+
`enclavia-agent`.
|
|
23
|
+
|
|
24
|
+
The real package is not published yet. Do not use this stub in production.
|
|
25
|
+
|
|
26
|
+
Kavros is the AI control plane: connect your AI to it and everything it can
|
|
27
|
+
touch is pre-approved, signed, attested, metered, DLP-checked, and auditable —
|
|
28
|
+
with a kill switch when you need one.
|
|
29
|
+
|
|
30
|
+
- Website: <https://kavros.ai> (launching)
|
|
31
|
+
- The `enclavia-agent` hook this will succeed: <https://pypi.org/project/enclavia-agent/>
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
kavros_agent
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kavros-agent"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Kavros governed-egress hook for Python agents (name reservation — the real package ships at kavros.ai launch)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Kavros" }]
|
|
13
|
+
keywords = ["kavros", "ai", "governance", "egress", "dlp", "agent"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Topic :: Security",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://kavros.ai"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools]
|
|
27
|
+
packages = ["kavros_agent"]
|