ctxmaster 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.
@@ -0,0 +1,30 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .venv/
8
+ venv/
9
+ test_env/
10
+ .pytest_cache/
11
+ .coverage
12
+ htmlcov/
13
+
14
+ # Node (future packages)
15
+ node_modules/
16
+
17
+ # Rust (future crates)
18
+ target/
19
+
20
+ # Secrets and local environment
21
+ .env
22
+ .env.local
23
+ *.key
24
+ *secrets*
25
+
26
+ # OS and editors
27
+ .DS_Store
28
+ Thumbs.db
29
+ .vscode/
30
+ .idea/
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ All notable changes to ctxmaster are documented in this file.
4
+
5
+ ## 0.0.1 (2026-07-07)
6
+
7
+ - Placeholder release reserving the package name on PyPI.
8
+ - Declares the dependency on tokenmaster; exposes `__version__` and `about()`
9
+ only. No functional API yet.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Muntaser Syed
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: ctxmaster
3
+ Version: 0.0.1
4
+ Summary: Visualization layer for tokenmaster: CLI, terminal gauge, and dashboard renderers for LLM context-budget metering. Placeholder release.
5
+ Project-URL: Homepage, https://github.com/jemsbhai/tokenmaster
6
+ Project-URL: Repository, https://github.com/jemsbhai/tokenmaster
7
+ Author-email: Muntaser Syed <jemsbhai@gmail.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Keywords: context-window,dashboard,gauge,llm,terminal,tokens,visualization
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
15
+ Classifier: Topic :: Software Development :: Libraries
16
+ Requires-Python: >=3.10
17
+ Requires-Dist: tokenmaster>=0.0.1
18
+ Description-Content-Type: text/markdown
19
+
20
+ # ctxmaster
21
+
22
+ Visualization layer for tokenmaster, the core context-budget metering and
23
+ decision engine for LLM applications.
24
+
25
+ ctxmaster will provide the user-facing surfaces: a CLI, a live terminal gauge
26
+ (context used, effective budget remaining, projected turns to exhaustion,
27
+ compaction and handoff advice), and dashboard renderers. It consumes the
28
+ serializable state and event schema that tokenmaster emits; anyone can build
29
+ an alternative visualizer against the same contract.
30
+
31
+ ## Status
32
+
33
+ 0.0.1 is a placeholder release reserving the name while the core API is
34
+ designed. Do not build against it yet. Development happens at
35
+ https://github.com/jemsbhai/tokenmaster
36
+
37
+ ## License
38
+
39
+ MIT
@@ -0,0 +1,20 @@
1
+ # ctxmaster
2
+
3
+ Visualization layer for tokenmaster, the core context-budget metering and
4
+ decision engine for LLM applications.
5
+
6
+ ctxmaster will provide the user-facing surfaces: a CLI, a live terminal gauge
7
+ (context used, effective budget remaining, projected turns to exhaustion,
8
+ compaction and handoff advice), and dashboard renderers. It consumes the
9
+ serializable state and event schema that tokenmaster emits; anyone can build
10
+ an alternative visualizer against the same contract.
11
+
12
+ ## Status
13
+
14
+ 0.0.1 is a placeholder release reserving the name while the core API is
15
+ designed. Do not build against it yet. Development happens at
16
+ https://github.com/jemsbhai/tokenmaster
17
+
18
+ ## License
19
+
20
+ MIT
@@ -0,0 +1,8 @@
1
+ """Print ctxmaster placeholder metadata."""
2
+
3
+ import ctxmaster
4
+
5
+
6
+ if __name__ == "__main__":
7
+ for key, value in ctxmaster.about().items():
8
+ print(f"{key}: {value}")
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "ctxmaster"
7
+ version = "0.0.1"
8
+ description = "Visualization layer for tokenmaster: CLI, terminal gauge, and dashboard renderers for LLM context-budget metering. Placeholder release."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [
14
+ { name = "Muntaser Syed", email = "jemsbhai@gmail.com" },
15
+ ]
16
+ keywords = [
17
+ "llm",
18
+ "tokens",
19
+ "context-window",
20
+ "visualization",
21
+ "terminal",
22
+ "gauge",
23
+ "dashboard",
24
+ ]
25
+ classifiers = [
26
+ "Development Status :: 1 - Planning",
27
+ "Intended Audience :: Developers",
28
+ "Programming Language :: Python :: 3",
29
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
30
+ "Topic :: Software Development :: Libraries",
31
+ ]
32
+ dependencies = [
33
+ "tokenmaster>=0.0.1",
34
+ ]
35
+
36
+ [project.urls]
37
+ Homepage = "https://github.com/jemsbhai/tokenmaster"
38
+ Repository = "https://github.com/jemsbhai/tokenmaster"
39
+
40
+ [tool.hatch.build.targets.wheel]
41
+ packages = ["src/ctxmaster"]
@@ -0,0 +1,26 @@
1
+ """ctxmaster: visualization layer for tokenmaster.
2
+
3
+ Placeholder release (0.0.1) reserving the package name while the core API is
4
+ designed. Do not build against this version.
5
+ """
6
+
7
+ import tokenmaster
8
+
9
+ __version__ = "0.0.1"
10
+
11
+ __all__ = ["about", "__version__"]
12
+
13
+
14
+ def about() -> dict:
15
+ """Return basic project metadata for this placeholder release."""
16
+ return {
17
+ "name": "ctxmaster",
18
+ "version": __version__,
19
+ "summary": (
20
+ "Visualization layer for tokenmaster: CLI, terminal gauge, "
21
+ "and dashboard renderers."
22
+ ),
23
+ "core": f"tokenmaster {tokenmaster.__version__}",
24
+ "repository": "https://github.com/jemsbhai/tokenmaster",
25
+ "status": "placeholder",
26
+ }
@@ -0,0 +1,15 @@
1
+ """Placeholder-release tests: import, version, dependency, and metadata sanity."""
2
+
3
+ import ctxmaster
4
+ import tokenmaster
5
+
6
+
7
+ def test_version_matches_placeholder():
8
+ assert ctxmaster.__version__ == "0.0.1"
9
+
10
+
11
+ def test_about_reports_core_version():
12
+ info = ctxmaster.about()
13
+ assert info["name"] == "ctxmaster"
14
+ assert tokenmaster.__version__ in info["core"]
15
+ assert info["status"] == "placeholder"