@leanlabsinnov/codegraph 0.1.1 → 0.1.3
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 +3 -3
- package/dist/bin.js +2 -2
- package/dist/{chunk-AMJXGXLM.js → chunk-5WYXRWEY.js} +827 -119
- package/dist/chunk-5WYXRWEY.js.map +1 -0
- package/dist/{chunk-VFE242Y7.js → chunk-AVP24SX5.js} +73 -43
- package/dist/chunk-AVP24SX5.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{src-7P6XREHJ.js → src-M7HSEMBT.js} +4 -4
- package/package.json +3 -3
- package/dist/chunk-AMJXGXLM.js.map +0 -1
- package/dist/chunk-VFE242Y7.js.map +0 -1
- /package/dist/{src-7P6XREHJ.js.map → src-M7HSEMBT.js.map} +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @leanlabsinnov/codegraph
|
|
2
2
|
|
|
3
3
|
Live, queryable knowledge graph for your codebase. Indexes JS/TS into an embedded graph
|
|
4
4
|
DB with vector embeddings, then exposes a local MCP server that Claude Code, Cursor, and
|
|
@@ -12,7 +12,7 @@ external services.
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm i -g @
|
|
15
|
+
npm i -g @leanlabsinnov/codegraph
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Requires Node 20+.
|
|
@@ -29,7 +29,7 @@ codegraph serve
|
|
|
29
29
|
Then point Claude Code / Cursor / Windsurf at `http://127.0.0.1:3748/mcp` with the bearer
|
|
30
30
|
token from `~/.codegraph/config.json`.
|
|
31
31
|
|
|
32
|
-
See the full [README on GitHub](https://github.com/
|
|
32
|
+
See the full [README on GitHub](https://github.com/leanlabsinnov/codegraph) for client setup, all
|
|
33
33
|
10 MCP tools, and troubleshooting.
|
|
34
34
|
|
|
35
35
|
## Commands
|
package/dist/bin.js
CHANGED