spaitrack 0.1.0__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.
- spaitrack-0.1.0/PKG-INFO +33 -0
- spaitrack-0.1.0/README.md +17 -0
- spaitrack-0.1.0/pyproject.toml +23 -0
- spaitrack-0.1.0/setup.cfg +4 -0
- spaitrack-0.1.0/src/spaitrack/__init__.py +6 -0
- spaitrack-0.1.0/src/spaitrack.egg-info/PKG-INFO +33 -0
- spaitrack-0.1.0/src/spaitrack.egg-info/SOURCES.txt +7 -0
- spaitrack-0.1.0/src/spaitrack.egg-info/dependency_links.txt +1 -0
- spaitrack-0.1.0/src/spaitrack.egg-info/top_level.txt +1 -0
spaitrack-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: spaitrack
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Audit trail, memory access tracking and replay for AI agent workflows.
|
|
5
|
+
Author-email: CrewGR <krugergustav@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/globifai
|
|
8
|
+
Keywords: ai,agent,spai,globifai,crewgr
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# SpaiTrack
|
|
18
|
+
|
|
19
|
+
Audit trail, memory access tracking and replay for AI agent workflows.
|
|
20
|
+
|
|
21
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
22
|
+
|
|
23
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install spaitrack
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# SpaiTrack
|
|
2
|
+
|
|
3
|
+
Audit trail, memory access tracking and replay for AI agent workflows.
|
|
4
|
+
|
|
5
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
6
|
+
|
|
7
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install spaitrack
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "spaitrack"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Audit trail, memory access tracking and replay for AI agent workflows."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Proprietary"}
|
|
11
|
+
authors = [{name = "CrewGR", email = "krugergustav@gmail.com"}]
|
|
12
|
+
keywords = ["ai", "agent", "spai", "globifai", "crewgr"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: Other/Proprietary License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
requires-python = ">=3.9"
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/globifai"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: spaitrack
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Audit trail, memory access tracking and replay for AI agent workflows.
|
|
5
|
+
Author-email: CrewGR <krugergustav@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/globifai
|
|
8
|
+
Keywords: ai,agent,spai,globifai,crewgr
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# SpaiTrack
|
|
18
|
+
|
|
19
|
+
Audit trail, memory access tracking and replay for AI agent workflows.
|
|
20
|
+
|
|
21
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
22
|
+
|
|
23
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install spaitrack
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
spaitrack
|