kodit 0.1.17__py3-none-any.whl → 0.2.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 +2 -2
- kodit/snippets/languages/javascript.scm +24 -0
- kodit/snippets/languages/typescript.scm +25 -0
- {kodit-0.1.17.dist-info → kodit-0.2.0.dist-info}/METADATA +8 -10
- {kodit-0.1.17.dist-info → kodit-0.2.0.dist-info}/RECORD +8 -6
- {kodit-0.1.17.dist-info → kodit-0.2.0.dist-info}/WHEEL +0 -0
- {kodit-0.1.17.dist-info → kodit-0.2.0.dist-info}/entry_points.txt +0 -0
- {kodit-0.1.17.dist-info → kodit-0.2.0.dist-info}/licenses/LICENSE +0 -0
kodit/_version.py
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
(import_statement
|
|
2
|
+
(import_clause
|
|
3
|
+
(named_imports
|
|
4
|
+
(import_specifier
|
|
5
|
+
name: (identifier) @import.name
|
|
6
|
+
)
|
|
7
|
+
)
|
|
8
|
+
)
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
(function_declaration
|
|
12
|
+
name: (identifier) @function.name
|
|
13
|
+
body: (statement_block) @function.body
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
(class_declaration
|
|
17
|
+
name: (identifier) @class.name
|
|
18
|
+
body: (class_body) @class.body
|
|
19
|
+
) @class.def
|
|
20
|
+
|
|
21
|
+
(method_definition
|
|
22
|
+
name: (property_identifier) @function.name
|
|
23
|
+
body: (statement_block) @function.body
|
|
24
|
+
)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
(import_statement
|
|
2
|
+
(import_clause
|
|
3
|
+
(named_imports
|
|
4
|
+
(import_specifier
|
|
5
|
+
name: (identifier) @import.name
|
|
6
|
+
)
|
|
7
|
+
)
|
|
8
|
+
)
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
(variable_declarator
|
|
12
|
+
name: (identifier) @function.name
|
|
13
|
+
value: (arrow_function
|
|
14
|
+
body: (statement_block) @function.body
|
|
15
|
+
)
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
(class_declaration
|
|
19
|
+
name: (type_identifier) @class.name
|
|
20
|
+
) @class.def
|
|
21
|
+
|
|
22
|
+
(method_definition
|
|
23
|
+
name: (property_identifier) @function.name
|
|
24
|
+
body: (statement_block) @function.body
|
|
25
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kodit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.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/
|
|
@@ -101,8 +101,8 @@ intent. Kodit has been tested to work well with:
|
|
|
101
101
|
|
|
102
102
|
- Seamless integration with popular AI coding assistants
|
|
103
103
|
- Tested and verified with:
|
|
104
|
-
- [Cursor](https://docs.helix.ml/kodit/#integration-with-cursor)
|
|
105
|
-
- [Cline](https://docs.helix.ml/kodit/#integration-with-cline)
|
|
104
|
+
- [Cursor](https://docs.helix.ml/kodit/getting-started/integration/#integration-with-cursor)
|
|
105
|
+
- [Cline](https://docs.helix.ml/kodit/getting-started/integration/#integration-with-cline)
|
|
106
106
|
- Please contribute more instructions! ... any other assistant is likely to work ...
|
|
107
107
|
|
|
108
108
|
### Enterprise Ready
|
|
@@ -126,16 +126,14 @@ Supported providers:
|
|
|
126
126
|
|
|
127
127
|
## 🚀 Quick Start
|
|
128
128
|
|
|
129
|
-
1. [Install Kodit](https://docs.helix.ml/kodit
|
|
130
|
-
2. [Index codebases](https://docs.helix.ml/kodit
|
|
131
|
-
3. [Integrate with your coding assistant](https://docs.helix.ml/kodit
|
|
129
|
+
1. [Install Kodit](https://docs.helix.ml/kodit/getting-started/installation/)
|
|
130
|
+
2. [Index codebases](https://docs.helix.ml/kodit/getting-started/quick-start/)
|
|
131
|
+
3. [Integrate with your coding assistant](https://docs.helix.ml/kodit/getting-started/integration/)
|
|
132
132
|
|
|
133
133
|
### Documentation
|
|
134
134
|
|
|
135
|
-
- [
|
|
136
|
-
- [
|
|
137
|
-
- [Connecting to Kodit](https://docs.helix.ml/kodit/#integrating-kodit-with-coding-assistants)
|
|
138
|
-
- [Configuration Options](https://docs.helix.ml/kodit/#configuring-kodit)
|
|
135
|
+
- [Getting Started Guide](https://docs.helix.ml/kodit/getting-started/)
|
|
136
|
+
- [Reference Guide](https://docs.helix.ml/kodit/reference/)
|
|
139
137
|
- [Contribution Guidelines](.github/CONTRIBUTING.md)
|
|
140
138
|
|
|
141
139
|
## Roadmap
|
|
@@ -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=
|
|
3
|
+
kodit/_version.py,sha256=iB5DfB5V6YB5Wo4JmvS-txT42QtmGaWcWp3udRT7zCI,511
|
|
4
4
|
kodit/app.py,sha256=Mr5BFHOHx5zppwjC4XPWVvHjwgl1yrKbUjTWXKubJQM,891
|
|
5
5
|
kodit/cli.py,sha256=i7eEt0FdIQGEfXKFte-8fBcZZGE8BPXBp40aGwJDQGI,11323
|
|
6
6
|
kodit/config.py,sha256=2W2u5J8j-Mbt-C4xzOuK-PeuDCx0S_rnCXPhBwvfLT4,4353
|
|
@@ -51,15 +51,17 @@ kodit/snippets/snippets.py,sha256=mwN0bM1Msu8ZeEsUHyQ7tx3Hj3vZsm8G7Wu4eWSkLY8,15
|
|
|
51
51
|
kodit/snippets/languages/__init__.py,sha256=Bj5KKZSls2MQ8ZY1S_nHg447MgGZW-2WZM-oq6vjwwA,1187
|
|
52
52
|
kodit/snippets/languages/csharp.scm,sha256=gbBN4RiV1FBuTJF6orSnDFi8H9JwTw-d4piLJYsWUsc,222
|
|
53
53
|
kodit/snippets/languages/go.scm,sha256=SEX9mTOrhP2KiQW7oflDKkd21u5dK56QbJ4LvTDxY8A,533
|
|
54
|
+
kodit/snippets/languages/javascript.scm,sha256=Ini5TsVNmcBKQ8aL46a5Id9ut0g9UdmvmVqdMqRJtFk,446
|
|
54
55
|
kodit/snippets/languages/python.scm,sha256=ee85R9PBzwye3IMTE7-iVoKWd_ViU3EJISTyrFGrVeo,429
|
|
56
|
+
kodit/snippets/languages/typescript.scm,sha256=U-ujbbv4tylbUBj9wuhL-e5cW6hmgPCNs4xrIX3r_hE,448
|
|
55
57
|
kodit/source/__init__.py,sha256=1NTZyPdjThVQpZO1Mp1ColVsS7sqYanOVLqnoqV9Ipo,83
|
|
56
58
|
kodit/source/source_models.py,sha256=kcC59XPSDDMth2mOYK3FakqTN0jxKFaTDch0ejyD9Sw,2446
|
|
57
59
|
kodit/source/source_repository.py,sha256=0EksMpoLzdkfe8S4eeCm4Sf7TuxsOzOzaF4BBsMYo-4,3163
|
|
58
60
|
kodit/source/source_service.py,sha256=u_GaH07ewakThQJRfT8O_yZ54A52qLtJuM1bF3xUT2A,9633
|
|
59
61
|
kodit/util/__init__.py,sha256=bPu6CtqDWCRGU7VgW2_aiQrCBi8G89FS6k1PjvDajJ0,37
|
|
60
62
|
kodit/util/spinner.py,sha256=R9bzrHtBiIH6IfLbmsIVHL53s8vg-tqW4lwGGALu4dw,1932
|
|
61
|
-
kodit-0.
|
|
62
|
-
kodit-0.
|
|
63
|
-
kodit-0.
|
|
64
|
-
kodit-0.
|
|
65
|
-
kodit-0.
|
|
63
|
+
kodit-0.2.0.dist-info/METADATA,sha256=0CdegivoI9rcZLpmwzGTFfW_bui1D1tjNtz7ajXFOJk,5735
|
|
64
|
+
kodit-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
65
|
+
kodit-0.2.0.dist-info/entry_points.txt,sha256=hoTn-1aKyTItjnY91fnO-rV5uaWQLQ-Vi7V5et2IbHY,40
|
|
66
|
+
kodit-0.2.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
67
|
+
kodit-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|