kubrick-cli 0.1.4__py3-none-any.whl

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,137 @@
1
+ Metadata-Version: 2.4
2
+ Name: kubrick-cli
3
+ Version: 0.1.4
4
+ Summary: A CLI tool for AI-assisted coding using Triton LLM backend
5
+ Author-email: Russell Land <rcland12@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/rcland12/kubrick-cli
8
+ Project-URL: Repository, https://github.com/rcland12/kubrick-cli
9
+ Project-URL: Issues, https://github.com/rcland12/kubrick-cli/issues
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: rich>=13.0.0
14
+ Requires-Dist: prompt_toolkit>=3.0.0
15
+ Provides-Extra: dev
16
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
17
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
18
+ Requires-Dist: pytest-mock>=3.10.0; extra == "dev"
19
+ Requires-Dist: black>=22.0.0; extra == "dev"
20
+ Requires-Dist: flake8>=6.0.0; extra == "dev"
21
+ Requires-Dist: build>=1.0.0; extra == "dev"
22
+ Requires-Dist: twine>=5.0.0; extra == "dev"
23
+ Dynamic: license-file
24
+
25
+ # Kubrick CLI
26
+
27
+ An AI-assisted coding CLI tool powered by your own Triton LLM backend. Like Claude Code, but self-hosted.
28
+
29
+ ## Installation
30
+
31
+ ### Local Installation
32
+
33
+ ```bash
34
+ pip install -e .
35
+ kubrick
36
+ ```
37
+
38
+ ### Docker
39
+
40
+ Available from Docker Hub or GitHub Container Registry:
41
+
42
+ ```bash
43
+ cd /path/to/your/project
44
+
45
+ # From Docker Hub
46
+ docker run --rm -it \
47
+ --network host \
48
+ -v ${HOME}:/home/kubrick \
49
+ -v ${PWD}:/workspace \
50
+ -v /etc/localtime:/etc/localtime:ro \
51
+ -v /etc/timezone:/etc/timezone:ro \
52
+ rcland12/kubrick-cli
53
+
54
+ # From GitHub Container Registry
55
+ docker run --rm -it \
56
+ --network host \
57
+ -v ${HOME}:/home/kubrick \
58
+ -v ${PWD}:/workspace \
59
+ -v /etc/localtime:/etc/localtime:ro \
60
+ -v /etc/timezone:/etc/timezone:ro \
61
+ ghcr.io/rcland12/kubrick-cli
62
+ ```
63
+
64
+ ## Quick Start
65
+
66
+ ```bash
67
+ # Basic usage
68
+ kubrick
69
+
70
+ # Custom Triton server
71
+ kubrick --triton-url my-server:8000
72
+
73
+ # Load previous conversation
74
+ kubrick --load 20240118_143022
75
+ ```
76
+
77
+ ## Requirements
78
+
79
+ - Python 3.8+
80
+ - LLM Provider (choose one):
81
+ - **Triton Inference Server** with streaming LLM model (default: `http://localhost:8000`)
82
+ - **OpenAI API** (GPT-4, GPT-3.5-turbo, etc.)
83
+ - **Anthropic API** (Claude models)
84
+
85
+ ## Documentation
86
+
87
+ - **[WIKI.md](https://github.com/rcland12/kubrick-cli/blob/master/docs/WIKI.md)** - Complete features, commands, and usage guide
88
+ - **[PROVIDERS.md](https://github.com/rcland12/kubrick-cli/blob/master/docs/PROVIDERS.md)** - Multi-provider setup (Triton, OpenAI, Anthropic)
89
+ - **[TRITON.md](https://github.com/rcland12/kubrick-cli/blob/master/docs/TRITON.md)** - Triton backend setup and requirements
90
+ - **[TESTING.md](https://github.com/rcland12/kubrick-cli/blob/master/docs/TESTING.md)** - Testing guide and CI/CD setup
91
+ - **[DOCKER.md](https://github.com/rcland12/kubrick-cli/blob/master/docs/DOCKER.md)** - Docker setup and troubleshooting
92
+
93
+ ## Configuration
94
+
95
+ Config stored at `~/.kubrick/config.json`. Override with environment variables:
96
+
97
+ ```bash
98
+ export TRITON_URL=localhost:8000
99
+ export TRITON_MODEL_NAME=llm_decoupled
100
+ ```
101
+
102
+ ## Development
103
+
104
+ ### Install Development Dependencies
105
+
106
+ ```bash
107
+ pip install -e ".[dev]"
108
+ ```
109
+
110
+ ### Run Tests
111
+
112
+ ```bash
113
+ # Run all tests
114
+ pytest
115
+
116
+ # Run with coverage
117
+ pytest --cov=kubrick_cli --cov-report=term-missing
118
+
119
+ # Run specific test file
120
+ pytest tests/test_tool_executor.py -v
121
+ ```
122
+
123
+ See [TESTING.md](https://github.com/rcland12/kubrick-cli/blob/master/docs/TESTING.md) for detailed testing documentation.
124
+
125
+ ### Code Quality
126
+
127
+ ```bash
128
+ # Format code
129
+ black kubrick_cli tests
130
+
131
+ # Check linting
132
+ flake8 kubrick_cli
133
+ ```
134
+
135
+ ## License
136
+
137
+ MIT License - See [LICENSE](LICENSE)
@@ -0,0 +1,26 @@
1
+ kubrick_cli/__init__.py,sha256=UZSaa0ajEH_EkbP5I239WDL8cUvBaxW2wP7yz_C2VU4,1403
2
+ kubrick_cli/agent_loop.py,sha256=86ULyOab62n6rgYJjaX2owHC_k3cUNDUvCd4jZGJXPk,9020
3
+ kubrick_cli/classifier.py,sha256=XfhMwI5g0R7G8jIon4-kZYY7eiSsntOg4GHy5UmwgRI,5160
4
+ kubrick_cli/config.py,sha256=p82EyQQ27Q-mPESfmDYPmZ_5sWHk8vBwQSyrrbP-MvY,8275
5
+ kubrick_cli/display.py,sha256=SHY6dMXxGeZ5Io0MxujEUfPw5JLALRe5_RqPQDbJ4wk,5663
6
+ kubrick_cli/execution_strategy.py,sha256=wJGdnYUxIbbK4lKXrJoWUnlQRP3BHKYhVcrMts08GJA,6135
7
+ kubrick_cli/main.py,sha256=IAmiLtXIumkbMnaCzDjdN6LzgChvXzvWVX2_0eYV_q8,27343
8
+ kubrick_cli/planning.py,sha256=2e53YE8EIdGrW8te-I8-rGVCWsmHIJYR9DXngR5_qjk,8755
9
+ kubrick_cli/progress.py,sha256=Ns4N-UniWLgKKzNXPzv-6a2pfGj-CNQnY6OLqezgMis,4508
10
+ kubrick_cli/safety.py,sha256=wqvJ3mY7vPTJzVSIReC5mw8IFVvDhGh2MI-qh_kvOnM,6308
11
+ kubrick_cli/scheduler.py,sha256=pIrOgxhGZmSPk--Ew-wh4Whk17yE7rfEXSp33LTUUb0,5516
12
+ kubrick_cli/setup_wizard.py,sha256=kIo9osGvTXpqnjmSDV6EZ4lRpKKKNUXUOL9s9pH2HuU,4689
13
+ kubrick_cli/tools.py,sha256=BkzNWLfgMvi0OH2DFQwkJkektXhAtVR66ie3S1_Rlno,13367
14
+ kubrick_cli/triton_client.py,sha256=bjI9hSdX-nmEEPkym31_mDXrYHhYGljsXAAmsfvOCs0,5768
15
+ kubrick_cli/providers/__init__.py,sha256=pI8TVid6LCEG0VMd4H-Oo-gO-40CG80gT9XZxc5Dnak,212
16
+ kubrick_cli/providers/anthropic_provider.py,sha256=Cg2BsJfFvwGDUV8j19dM7QsViYKL8d8H93piIJ4yJ_U,6267
17
+ kubrick_cli/providers/base.py,sha256=V6UJqXhLrz6__TttcIPI-72D3u1tEwM23a-m0dt9HVs,3790
18
+ kubrick_cli/providers/factory.py,sha256=qC4DuuF3sWrzRR3KmPdtHZvYeURkInjsNxB1rZNX-c4,5158
19
+ kubrick_cli/providers/openai_provider.py,sha256=2ynNwXgmyKeaZTdRMmL5W4p9hyhU0vKdhgP6diFvqkA,5406
20
+ kubrick_cli/providers/triton_provider.py,sha256=9UM76TRJAHDeYUFItvVEXmMvxex1yzJ-iRwyRhKtUDY,2735
21
+ kubrick_cli-0.1.4.dist-info/licenses/LICENSE,sha256=Vap47V4-2uRylukx31JcYcYSD7QzURHn70rLxmFyenI,1073
22
+ kubrick_cli-0.1.4.dist-info/METADATA,sha256=t1mKvShyE5wCxrjA7weAK3yNq4Qsr5-PWoPupH96wdg,3465
23
+ kubrick_cli-0.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
+ kubrick_cli-0.1.4.dist-info/entry_points.txt,sha256=4XyhYn1bMdkgqTxwvvGe1LAtby-2lP4JaIAZUwBkP1k,50
25
+ kubrick_cli-0.1.4.dist-info/top_level.txt,sha256=BUz1Y_kmuEM-kvPHdyv2dHO5X1dUHfmE8Mhzr0gdEkQ,12
26
+ kubrick_cli-0.1.4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ kubrick = kubrick_cli.main:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) [2026] [Russell Land]
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 @@
1
+ kubrick_cli