tokki 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.
- tokki-0.0.1/PKG-INFO +39 -0
- tokki-0.0.1/README.md +23 -0
- tokki-0.0.1/pyproject.toml +31 -0
- tokki-0.0.1/setup.cfg +4 -0
- tokki-0.0.1/src/tokki/__init__.py +10 -0
- tokki-0.0.1/src/tokki/__main__.py +7 -0
- tokki-0.0.1/src/tokki.egg-info/PKG-INFO +39 -0
- tokki-0.0.1/src/tokki.egg-info/SOURCES.txt +9 -0
- tokki-0.0.1/src/tokki.egg-info/dependency_links.txt +1 -0
- tokki-0.0.1/src/tokki.egg-info/entry_points.txt +2 -0
- tokki-0.0.1/src/tokki.egg-info/top_level.txt +1 -0
tokki-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tokki
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Private local automation helpers for Codex sessions.
|
|
5
|
+
Author: Jean-Pierre Morard
|
|
6
|
+
Maintainer: Jean-Pierre Morard
|
|
7
|
+
Keywords: codex,automation,developer-tools
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# Tokki
|
|
18
|
+
|
|
19
|
+
Private local automation for Codex sessions.
|
|
20
|
+
|
|
21
|
+
The PyPI package is intentionally minimal. It reserves the `tokki` package name
|
|
22
|
+
and exposes only a small marker CLI; the private Codex automation itself is
|
|
23
|
+
maintained in this private repository and is not shipped in the public wheel.
|
|
24
|
+
|
|
25
|
+
## Codex Helper
|
|
26
|
+
|
|
27
|
+
The maintained helper is `tools/codex_private.py`.
|
|
28
|
+
|
|
29
|
+
Common commands:
|
|
30
|
+
|
|
31
|
+
- `codex-private preflight`
|
|
32
|
+
- `codex-private context`
|
|
33
|
+
- `codex-private test-router --all-changed`
|
|
34
|
+
- `codex-private log-digest <log-file>`
|
|
35
|
+
- `codex-private update-repos --dry-run`
|
|
36
|
+
- `codex-private release-preflight`
|
|
37
|
+
|
|
38
|
+
The global launcher at `/Users/agi/.local/bin/codex-private` delegates to this
|
|
39
|
+
repository. Keep this helper private and do not copy it into public AGILAB.
|
tokki-0.0.1/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Tokki
|
|
2
|
+
|
|
3
|
+
Private local automation for Codex sessions.
|
|
4
|
+
|
|
5
|
+
The PyPI package is intentionally minimal. It reserves the `tokki` package name
|
|
6
|
+
and exposes only a small marker CLI; the private Codex automation itself is
|
|
7
|
+
maintained in this private repository and is not shipped in the public wheel.
|
|
8
|
+
|
|
9
|
+
## Codex Helper
|
|
10
|
+
|
|
11
|
+
The maintained helper is `tools/codex_private.py`.
|
|
12
|
+
|
|
13
|
+
Common commands:
|
|
14
|
+
|
|
15
|
+
- `codex-private preflight`
|
|
16
|
+
- `codex-private context`
|
|
17
|
+
- `codex-private test-router --all-changed`
|
|
18
|
+
- `codex-private log-digest <log-file>`
|
|
19
|
+
- `codex-private update-repos --dry-run`
|
|
20
|
+
- `codex-private release-preflight`
|
|
21
|
+
|
|
22
|
+
The global launcher at `/Users/agi/.local/bin/codex-private` delegates to this
|
|
23
|
+
repository. Keep this helper private and do not copy it into public AGILAB.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "tokki"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Private local automation helpers for Codex sessions."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
authors = [
|
|
8
|
+
{ name = "Jean-Pierre Morard" }
|
|
9
|
+
]
|
|
10
|
+
maintainers = [
|
|
11
|
+
{ name = "Jean-Pierre Morard" }
|
|
12
|
+
]
|
|
13
|
+
keywords = ["codex", "automation", "developer-tools"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.scripts]
|
|
24
|
+
tokki = "tokki:main"
|
|
25
|
+
|
|
26
|
+
[build-system]
|
|
27
|
+
requires = ["setuptools>=68", "wheel"]
|
|
28
|
+
build-backend = "setuptools.build_meta"
|
|
29
|
+
|
|
30
|
+
[tool.setuptools.packages.find]
|
|
31
|
+
where = ["src"]
|
tokki-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tokki
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Private local automation helpers for Codex sessions.
|
|
5
|
+
Author: Jean-Pierre Morard
|
|
6
|
+
Maintainer: Jean-Pierre Morard
|
|
7
|
+
Keywords: codex,automation,developer-tools
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# Tokki
|
|
18
|
+
|
|
19
|
+
Private local automation for Codex sessions.
|
|
20
|
+
|
|
21
|
+
The PyPI package is intentionally minimal. It reserves the `tokki` package name
|
|
22
|
+
and exposes only a small marker CLI; the private Codex automation itself is
|
|
23
|
+
maintained in this private repository and is not shipped in the public wheel.
|
|
24
|
+
|
|
25
|
+
## Codex Helper
|
|
26
|
+
|
|
27
|
+
The maintained helper is `tools/codex_private.py`.
|
|
28
|
+
|
|
29
|
+
Common commands:
|
|
30
|
+
|
|
31
|
+
- `codex-private preflight`
|
|
32
|
+
- `codex-private context`
|
|
33
|
+
- `codex-private test-router --all-changed`
|
|
34
|
+
- `codex-private log-digest <log-file>`
|
|
35
|
+
- `codex-private update-repos --dry-run`
|
|
36
|
+
- `codex-private release-preflight`
|
|
37
|
+
|
|
38
|
+
The global launcher at `/Users/agi/.local/bin/codex-private` delegates to this
|
|
39
|
+
repository. Keep this helper private and do not copy it into public AGILAB.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tokki
|