kodit 0.0.1__tar.gz → 0.1.0__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.
Potentially problematic release.
This version of kodit might be problematic. Click here for more details.
- kodit-0.1.0/.github/workflows/docs.yaml +18 -0
- kodit-0.1.0/.github/workflows/pypi.yaml +39 -0
- {kodit-0.0.1 → kodit-0.1.0}/.vscode/settings.json +1 -1
- {kodit-0.0.1 → kodit-0.1.0}/PKG-INFO +40 -1
- kodit-0.1.0/README.md +40 -0
- kodit-0.1.0/docs/_index.md +53 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/_version.py +2 -2
- kodit-0.0.1/.github/workflows/pypi.yaml +0 -19
- kodit-0.0.1/README.md +0 -1
- kodit-0.0.1/docs/_index.md +0 -17
- {kodit-0.0.1 → kodit-0.1.0}/.github/CODE_OF_CONDUCT.md +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/CONTRIBUTING.md +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/workflows/docker.yaml +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/workflows/pypi-test.yaml +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.github/workflows/test.yaml +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.gitignore +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/.python-version +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/Dockerfile +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/LICENSE +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/pyproject.toml +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/.gitignore +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/__init__.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/app.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/cli.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/logging.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/mcp.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/mcp_test.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/middleware.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/src/kodit/sse.py +0 -0
- {kodit-0.0.1 → kodit-0.1.0}/uv.lock +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: Docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
paths:
|
|
8
|
+
- docs/**
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
cloudflare:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
environment:
|
|
14
|
+
name: cloudflare
|
|
15
|
+
steps:
|
|
16
|
+
- name: Trigger Cloudflare Pages deployment
|
|
17
|
+
run: |
|
|
18
|
+
curl -XPOST "https://api.cloudflare.com/client/v4/accounts/${{ secrets.ACCOUNT_ID }}/pages/projects/docs/deployments" -H "Authorization: bearer ${{ secrets.CLOUDFLARE_API_KEY }}"
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [released]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
pypi:
|
|
9
|
+
name: Publish to PyPI
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
environment:
|
|
12
|
+
name: pypi
|
|
13
|
+
permissions:
|
|
14
|
+
id-token: write
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- uses: astral-sh/setup-uv@v6
|
|
18
|
+
- run: uv build
|
|
19
|
+
- run: uv publish
|
|
20
|
+
homebrew:
|
|
21
|
+
name: Bump Homebrew formula
|
|
22
|
+
needs: pypi
|
|
23
|
+
runs-on: ubuntu-latest
|
|
24
|
+
permissions:
|
|
25
|
+
contents: read
|
|
26
|
+
steps:
|
|
27
|
+
- uses: mislav/bump-homebrew-formula-action@v3
|
|
28
|
+
with:
|
|
29
|
+
formula-name: ${{ github.event.repository.name }}
|
|
30
|
+
formula-path: Formula/${{ github.event.repository.name }}.rb
|
|
31
|
+
homebrew-tap: ${{ github.repository_owner }}/homebrew-${{ github.event.repository.name }}
|
|
32
|
+
tag-name: "${{ github.event.release.tag_name }}"
|
|
33
|
+
push-to: ${{ github.repository_owner }}/homebrew-${{ github.event.repository.name }}
|
|
34
|
+
base-branch: "main"
|
|
35
|
+
download-url: "https://pypi.io/packages/source/k/${{ github.event.repository.name }}/${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.tar.gz"
|
|
36
|
+
commit-message: |
|
|
37
|
+
{{formulaName}} {{version}}
|
|
38
|
+
env:
|
|
39
|
+
COMMITTER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kodit
|
|
3
|
-
Version: 0.0
|
|
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
|
+
```
|
kodit-0.1.0/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# kodit
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
Please choose your preferred installation method. They all ultimately install the kodit
|
|
6
|
+
cli, which contains the kodit MCP server and other tools to manage your data sources.
|
|
7
|
+
|
|
8
|
+
### Docker
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
docker run -it --rm registry.helix.ml/helix/kodit:latest
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Always replace latest with a specific version.
|
|
15
|
+
|
|
16
|
+
### pipx
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
pipx install kodit
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### homebrew
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
brew install helixml/kodit/kodit
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### uv
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
uv tool install kodit
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### pip
|
|
35
|
+
|
|
36
|
+
Use this if you want to use kodit as a python library:
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
pip install kodit
|
|
40
|
+
```
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "kodit: Code Indexing MCP Server"
|
|
3
|
+
linkTitle: kodit Docs
|
|
4
|
+
cascade:
|
|
5
|
+
type: docs
|
|
6
|
+
menu:
|
|
7
|
+
main:
|
|
8
|
+
name: kodit Docs
|
|
9
|
+
weight: 3
|
|
10
|
+
# next: /helix/getting-started
|
|
11
|
+
weight: 1
|
|
12
|
+
aliases:
|
|
13
|
+
- /coda
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
Please choose your preferred installation method. They all ultimately install the kodit
|
|
19
|
+
cli, which contains the kodit MCP server and other tools to manage your data sources.
|
|
20
|
+
|
|
21
|
+
### Docker
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
docker run -it --rm registry.helix.ml/helix/kodit:latest
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Always replace latest with a specific version.
|
|
28
|
+
|
|
29
|
+
### pipx
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
pipx install kodit
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### homebrew
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
brew install helixml/kodit/kodit
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### uv
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
uv tool install kodit
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### pip
|
|
48
|
+
|
|
49
|
+
Use this if you want to use kodit as a python library:
|
|
50
|
+
|
|
51
|
+
```sh
|
|
52
|
+
pip install kodit
|
|
53
|
+
```
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
release:
|
|
5
|
-
types: [released]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
pypi:
|
|
9
|
-
name: Publish to PyPI
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
environment:
|
|
12
|
-
name: pypi
|
|
13
|
-
permissions:
|
|
14
|
-
id-token: write
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v4
|
|
17
|
-
- uses: astral-sh/setup-uv@v6
|
|
18
|
-
- run: uv build
|
|
19
|
-
- run: uv publish
|
kodit-0.0.1/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# kodit
|
kodit-0.0.1/docs/_index.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "kodit: Code Indexing MCP Server"
|
|
3
|
-
linkTitle: kodit Docs
|
|
4
|
-
cascade:
|
|
5
|
-
type: docs
|
|
6
|
-
menu:
|
|
7
|
-
main:
|
|
8
|
-
name: kodit Docs
|
|
9
|
-
weight: 3
|
|
10
|
-
# next: /helix/getting-started
|
|
11
|
-
weight: 1
|
|
12
|
-
# aliases:
|
|
13
|
-
# - /docs
|
|
14
|
-
# - /docs/overview
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
kodit is a work in progress. Check back soon!
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|