traceshub 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.
- traceshub-0.0.1/PKG-INFO +23 -0
- traceshub-0.0.1/README.md +9 -0
- traceshub-0.0.1/pyproject.toml +27 -0
- traceshub-0.0.1/src/traceshub/__init__.py +11 -0
traceshub-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: traceshub
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: TracesHub — capture AI coding sessions and sync them to Hugging Face Datasets. Placeholder release; full CLI coming soon.
|
|
5
|
+
Project-URL: Homepage, https://traceshub.ai
|
|
6
|
+
Author: TracesHub
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: ai,claude,codex,coding-agents,huggingface,observability,trajectories
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# TracesHub
|
|
16
|
+
|
|
17
|
+
Capture AI coding sessions (Claude Code, Codex, Cursor, Gemini) and sync them to
|
|
18
|
+
**Hugging Face Datasets** — searchable, replayable, versioned, and yours.
|
|
19
|
+
|
|
20
|
+
> This is a `0.0.1` placeholder release to reserve the name. Full CLI coming soon.
|
|
21
|
+
> Learn more at https://traceshub.ai
|
|
22
|
+
|
|
23
|
+
MIT licensed.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# TracesHub
|
|
2
|
+
|
|
3
|
+
Capture AI coding sessions (Claude Code, Codex, Cursor, Gemini) and sync them to
|
|
4
|
+
**Hugging Face Datasets** — searchable, replayable, versioned, and yours.
|
|
5
|
+
|
|
6
|
+
> This is a `0.0.1` placeholder release to reserve the name. Full CLI coming soon.
|
|
7
|
+
> Learn more at https://traceshub.ai
|
|
8
|
+
|
|
9
|
+
MIT licensed.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "traceshub"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "TracesHub — capture AI coding sessions and sync them to Hugging Face Datasets. Placeholder release; full CLI coming soon."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.9"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
authors = [{ name = "TracesHub" }]
|
|
9
|
+
keywords = ["ai", "coding-agents", "claude", "codex", "huggingface", "observability", "trajectories"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"License :: OSI Approved :: MIT License",
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://traceshub.ai"
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
traceshub = "traceshub:_placeholder"
|
|
21
|
+
|
|
22
|
+
[build-system]
|
|
23
|
+
requires = ["hatchling"]
|
|
24
|
+
build-backend = "hatchling.build"
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["src/traceshub"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""TracesHub — capture AI coding sessions, sync them to Hugging Face Datasets.
|
|
2
|
+
|
|
3
|
+
This is a placeholder release to reserve the name. The full CLI is on the way.
|
|
4
|
+
See https://traceshub.ai
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def _placeholder() -> None:
|
|
11
|
+
print("TracesHub is coming soon — https://traceshub.ai")
|