open-kioku 0.1.3 → 0.1.4
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.
- package/README.md +59 -0
- package/package.json +6 -6
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Open Kioku
|
|
2
|
+
|
|
3
|
+
Local-first code intelligence for AI coding agents.
|
|
4
|
+
|
|
5
|
+
Open Kioku indexes a repository on your machine and exposes fast code search, symbol navigation, impact analysis, context packs, and MCP tools through the `ok` CLI.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install -g open-kioku
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then verify the installed binary:
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
ok --version
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
Create and index a sample repository:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
ok demo --force
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Search and inspect the demo:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
ok --repo ./open-kioku-demo search token
|
|
31
|
+
ok --repo ./open-kioku-demo symbol find issue_token
|
|
32
|
+
ok --repo ./open-kioku-demo impact --file src/auth.rs
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Generate MCP client configuration:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
ok mcp install claude --repo /absolute/path/to/repo
|
|
39
|
+
ok mcp install cursor --repo /absolute/path/to/repo
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Package Layout
|
|
43
|
+
|
|
44
|
+
The `open-kioku` npm package is a small JavaScript wrapper. It installs one platform-specific optional dependency containing the native `ok` binary for your operating system and CPU architecture.
|
|
45
|
+
|
|
46
|
+
Supported packages:
|
|
47
|
+
|
|
48
|
+
- `@open-kioku/darwin-x64`
|
|
49
|
+
- `@open-kioku/darwin-arm64`
|
|
50
|
+
- `@open-kioku/linux-x64`
|
|
51
|
+
- `@open-kioku/linux-arm64`
|
|
52
|
+
- `@open-kioku/win32-x64`
|
|
53
|
+
|
|
54
|
+
## Links
|
|
55
|
+
|
|
56
|
+
- Repository: https://github.com/shivyadavus/open-kioku
|
|
57
|
+
- Releases: https://github.com/shivyadavus/open-kioku/releases
|
|
58
|
+
- Demo: https://shivyadavus.github.io/open-kioku/demo/index.html
|
|
59
|
+
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-kioku",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "A blazing-fast, language-aware codebase index and semantic search engine for AI agents (MCP)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ok": "./bin/ok.js",
|
|
7
7
|
"open-kioku": "./bin/ok.js"
|
|
8
8
|
},
|
|
9
9
|
"optionalDependencies": {
|
|
10
|
-
"@open-kioku/darwin-x64": "0.1.
|
|
11
|
-
"@open-kioku/darwin-arm64": "0.1.
|
|
12
|
-
"@open-kioku/linux-x64": "0.1.
|
|
13
|
-
"@open-kioku/linux-arm64": "0.1.
|
|
14
|
-
"@open-kioku/win32-x64": "0.1.
|
|
10
|
+
"@open-kioku/darwin-x64": "0.1.4",
|
|
11
|
+
"@open-kioku/darwin-arm64": "0.1.4",
|
|
12
|
+
"@open-kioku/linux-x64": "0.1.4",
|
|
13
|
+
"@open-kioku/linux-arm64": "0.1.4",
|
|
14
|
+
"@open-kioku/win32-x64": "0.1.4"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|