kodit 0.0.1__py3-none-any.whl → 0.1.0__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.

Potentially problematic release.


This version of kodit might be problematic. Click here for more details.

kodit/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.0.1'
21
- __version_tuple__ = version_tuple = (0, 0, 1)
20
+ __version__ = version = '0.1.0'
21
+ __version_tuple__ = version_tuple = (0, 1, 0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kodit
3
- Version: 0.0.1
3
+ Version: 0.1.0
4
4
  Summary: Code indexing for better AI code generation
5
5
  Project-URL: Homepage, https://docs.helixml.tech/kodit/
6
6
  Project-URL: Documentation, https://docs.helixml.tech/kodit/
@@ -31,3 +31,42 @@ Requires-Dist: structlog>=25.3.0
31
31
  Description-Content-Type: text/markdown
32
32
 
33
33
  # kodit
34
+
35
+ ## Installation
36
+
37
+ Please choose your preferred installation method. They all ultimately install the kodit
38
+ cli, which contains the kodit MCP server and other tools to manage your data sources.
39
+
40
+ ### Docker
41
+
42
+ ```sh
43
+ docker run -it --rm registry.helix.ml/helix/kodit:latest
44
+ ```
45
+
46
+ Always replace latest with a specific version.
47
+
48
+ ### pipx
49
+
50
+ ```sh
51
+ pipx install kodit
52
+ ```
53
+
54
+ ### homebrew
55
+
56
+ ```sh
57
+ brew install helixml/kodit/kodit
58
+ ```
59
+
60
+ ### uv
61
+
62
+ ```sh
63
+ uv tool install kodit
64
+ ```
65
+
66
+ ### pip
67
+
68
+ Use this if you want to use kodit as a python library:
69
+
70
+ ```sh
71
+ pip install kodit
72
+ ```
@@ -1,6 +1,6 @@
1
1
  kodit/.gitignore,sha256=ztkjgRwL9Uud1OEi36hGQeDGk3OLK1NfDEO8YqGYy8o,11
2
2
  kodit/__init__.py,sha256=aEKHYninUq1yh6jaNfvJBYg-6fenpN132nJt1UU6Jxs,59
3
- kodit/_version.py,sha256=vgltXBYF55vNcC2regxjGN0_cbebmm8VgcDdQaDapWQ,511
3
+ kodit/_version.py,sha256=-LyU5F1uZDjn6Q8_Z6-_FJt_8RE4Kq9zcKdg1abSSps,511
4
4
  kodit/app.py,sha256=FBAeeOz2CICvVN_27iMq9wEF9y8d1IDl0WmkEnM_M_U,699
5
5
  kodit/cli.py,sha256=jmEQlN34PXow9ui60aoCs84G5e3tX1T9C4-BV8zsnoU,2037
6
6
  kodit/logging.py,sha256=zAkU8J_hI8eDZ6AhRdVjC7Kppp9fuP9HEzWczWPrpy4,4622
@@ -8,8 +8,8 @@ kodit/mcp.py,sha256=Sg7Waes9Z7HYzdglspG92dGhTVtb1lEaEKW-vlaUCXg,1488
8
8
  kodit/mcp_test.py,sha256=ztpNdy6b_pTzzWQbNMSpmpjsYYjLr8igAtawFD_-_QM,2293
9
9
  kodit/middleware.py,sha256=NHLrqq20ZtPTE9esX9HD3z7EKi56_QTFxBlkdq0JDzQ,2138
10
10
  kodit/sse.py,sha256=UgwXJUeFq5D5S9KYKVVg4m6P0-_QHnJOCRRQB8XNR-M,2259
11
- kodit-0.0.1.dist-info/METADATA,sha256=JrdJv8HdNmDE6Kap53M3AOS_9gayyraEgQNeMSyUVgQ,1229
12
- kodit-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
13
- kodit-0.0.1.dist-info/entry_points.txt,sha256=hoTn-1aKyTItjnY91fnO-rV5uaWQLQ-Vi7V5et2IbHY,40
14
- kodit-0.0.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
- kodit-0.0.1.dist-info/RECORD,,
11
+ kodit-0.1.0.dist-info/METADATA,sha256=a5BIlshzgrZi2Zla6X7ZVCDUnljHXGQVplGvUUdIM1U,1782
12
+ kodit-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
13
+ kodit-0.1.0.dist-info/entry_points.txt,sha256=hoTn-1aKyTItjnY91fnO-rV5uaWQLQ-Vi7V5et2IbHY,40
14
+ kodit-0.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
+ kodit-0.1.0.dist-info/RECORD,,
File without changes