@suatkocar/codegraph 0.1.1 → 0.1.2
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 +5 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,25 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
**Codebase intelligence as an MCP server.** Native Rust. Sub-second indexing. Zero runtime dependencies.
|
|
4
4
|
|
|
5
|
-
This npm package installs the `codegraph` binary for your platform.
|
|
6
|
-
|
|
7
5
|
## Install
|
|
8
6
|
|
|
9
7
|
```bash
|
|
10
|
-
npx @suatkocar/codegraph init
|
|
8
|
+
npx @suatkocar/codegraph init
|
|
11
9
|
```
|
|
12
10
|
|
|
11
|
+
One command: downloads the binary, indexes your codebase, registers MCP server, installs hooks.
|
|
12
|
+
|
|
13
13
|
Or install globally:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
npm install -g @suatkocar/codegraph
|
|
17
|
-
codegraph init
|
|
17
|
+
codegraph init
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Or install without npm:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
curl -fsSL https://raw.githubusercontent.com/suatkocar/codegraph/main/install.sh | bash
|
|
24
|
+
codegraph init
|
|
24
25
|
```
|
|
25
26
|
|
|
26
27
|
## What It Does
|
package/package.json
CHANGED