@openez-graph/cli 0.4.1 → 0.4.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 +8 -4
- package/dist/cli.cjs +1487 -1355
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/@openez-graph/cli)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
|
-
OpenEZ Graph indexes your codebase into a local SQLite database, builds a code graph (symbols, files, chunks, edges), and exposes it through MCP tools for AI coding agents like Claude Code, Codex, and
|
|
8
|
+
OpenEZ Graph indexes your codebase into a local SQLite database, builds a code graph (symbols, files, chunks, edges), and exposes it through MCP tools for AI coding agents like Claude Code, Codex, OpenCode, Windsurf, and Devin.
|
|
9
9
|
|
|
10
10
|
**Zero config. No Docker. No Postgres. No Redis. Just install and go.**
|
|
11
11
|
|
|
@@ -25,13 +25,13 @@ OpenEZ Graph indexes your codebase into a local SQLite database, builds a code g
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
npm install -g @openez-graph/cli
|
|
28
|
-
openez setup claude # or: codex, opencode
|
|
28
|
+
openez setup claude # or: codex, opencode, windsurf, devin
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
Or run without installing:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npx @openez-graph/cli setup claude
|
|
34
|
+
npx @openez-graph/cli setup claude # or: codex, opencode, windsurf, devin
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Restart your agent. Done.
|
|
@@ -46,6 +46,8 @@ npm install -g @openez-graph/cli
|
|
|
46
46
|
openez setup claude # Claude Code
|
|
47
47
|
openez setup codex # Codex
|
|
48
48
|
openez setup opencode # OpenCode
|
|
49
|
+
openez setup windsurf # Windsurf / Devin Desktop
|
|
50
|
+
openez setup devin # Devin CLI
|
|
49
51
|
|
|
50
52
|
# 3. Restart your agent — it will auto-index and auto-sync
|
|
51
53
|
```
|
|
@@ -65,6 +67,8 @@ openez list # list registered workspaces
|
|
|
65
67
|
openez setup claude # wire up Claude Code
|
|
66
68
|
openez setup codex # wire up Codex
|
|
67
69
|
openez setup opencode # wire up OpenCode
|
|
70
|
+
openez setup windsurf # wire up Windsurf / Devin Desktop
|
|
71
|
+
openez setup devin # wire up Devin CLI
|
|
68
72
|
```
|
|
69
73
|
|
|
70
74
|
## MCP Tools
|
|
@@ -80,7 +84,7 @@ openez setup opencode # wire up OpenCode
|
|
|
80
84
|
|
|
81
85
|
## How it works
|
|
82
86
|
|
|
83
|
-
1. **`openez setup
|
|
87
|
+
1. **`openez setup <agent>`** writes MCP server config to the agent's config file (e.g. `~/.claude/settings.json`, `~/.codeium/windsurf/mcp_config.json`, `~/.config/devin/config.json`)
|
|
84
88
|
2. When Claude Code starts, it launches the MCP server via `openez serve --mcp`
|
|
85
89
|
3. The MCP server auto-registers the current project as a workspace
|
|
86
90
|
4. It auto-indexes if the workspace has no documents yet
|