tracksec-sdk 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.
- tracksec_sdk-0.0.1/PKG-INFO +23 -0
- tracksec_sdk-0.0.1/README.md +11 -0
- tracksec_sdk-0.0.1/pyproject.toml +20 -0
- tracksec_sdk-0.0.1/setup.cfg +4 -0
- tracksec_sdk-0.0.1/tracksec_sdk/__init__.py +7 -0
- tracksec_sdk-0.0.1/tracksec_sdk.egg-info/PKG-INFO +23 -0
- tracksec_sdk-0.0.1/tracksec_sdk.egg-info/SOURCES.txt +7 -0
- tracksec_sdk-0.0.1/tracksec_sdk.egg-info/dependency_links.txt +1 -0
- tracksec_sdk-0.0.1/tracksec_sdk.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tracksec-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for the Track agent-governance project (placeholder release)
|
|
5
|
+
Author: Track
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/aholeishem/agent-governance
|
|
8
|
+
Keywords: placeholder,reserved
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# tracksec-sdk
|
|
14
|
+
|
|
15
|
+
Reserved name for the **Track** agent-governance project.
|
|
16
|
+
|
|
17
|
+
This is a placeholder release and contains no functionality. It exists so the
|
|
18
|
+
name is held by the project rather than by an unrelated third party.
|
|
19
|
+
|
|
20
|
+
Track governs what AI agents are allowed to do: it intercepts an agent's tool
|
|
21
|
+
calls, evaluates them against policy, and produces a tamper-evident audit trail.
|
|
22
|
+
|
|
23
|
+
Real releases will follow. Until then this name should not be depended on.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# tracksec-sdk
|
|
2
|
+
|
|
3
|
+
Reserved name for the **Track** agent-governance project.
|
|
4
|
+
|
|
5
|
+
This is a placeholder release and contains no functionality. It exists so the
|
|
6
|
+
name is held by the project rather than by an unrelated third party.
|
|
7
|
+
|
|
8
|
+
Track governs what AI agents are allowed to do: it intercepts an agent's tool
|
|
9
|
+
calls, evaluates them against policy, and produces a tamper-evident audit trail.
|
|
10
|
+
|
|
11
|
+
Real releases will follow. Until then this name should not be depended on.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tracksec-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name for the Track agent-governance project (placeholder release)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{name = "Track"}]
|
|
13
|
+
keywords = ["placeholder", "reserved"]
|
|
14
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/aholeishem/agent-governance"
|
|
18
|
+
|
|
19
|
+
[tool.setuptools]
|
|
20
|
+
packages = ["tracksec_sdk"]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tracksec-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for the Track agent-governance project (placeholder release)
|
|
5
|
+
Author: Track
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/aholeishem/agent-governance
|
|
8
|
+
Keywords: placeholder,reserved
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# tracksec-sdk
|
|
14
|
+
|
|
15
|
+
Reserved name for the **Track** agent-governance project.
|
|
16
|
+
|
|
17
|
+
This is a placeholder release and contains no functionality. It exists so the
|
|
18
|
+
name is held by the project rather than by an unrelated third party.
|
|
19
|
+
|
|
20
|
+
Track governs what AI agents are allowed to do: it intercepts an agent's tool
|
|
21
|
+
calls, evaluates them against policy, and produces a tamper-evident audit trail.
|
|
22
|
+
|
|
23
|
+
Real releases will follow. Until then this name should not be depended on.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tracksec_sdk
|