@openez-graph/cli 0.1.0
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 +40 -0
- package/dist/cli.cjs +320160 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @openez-graph/cli
|
|
2
|
+
|
|
3
|
+
Local-first code intelligence CLI. Zero-config. SQLite-only.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# macOS / Linux
|
|
9
|
+
curl -fsSL https://raw.githubusercontent.com/asta-nguyen/openez-graph/main/install.sh | sh
|
|
10
|
+
|
|
11
|
+
# Windows (PowerShell)
|
|
12
|
+
irm https://raw.githubusercontent.com/asta-nguyen/openez-graph/main/install.ps1 | iex
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or via npm:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g @openez-graph/cli
|
|
19
|
+
openez setup claude # or: codex, opencode
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Commands
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
openez init [path] # register + index a workspace
|
|
26
|
+
openez index [path] # incremental index
|
|
27
|
+
openez reindex [path] # full rebuild
|
|
28
|
+
openez watch [path] # watch + auto-reindex on changes
|
|
29
|
+
openez serve --mcp # start MCP server (auto-index + auto-sync)
|
|
30
|
+
openez status [path] # show workspace status
|
|
31
|
+
openez list # list registered workspaces
|
|
32
|
+
openez setup claude # wire up Claude Code
|
|
33
|
+
openez setup codex # wire up Codex
|
|
34
|
+
openez setup opencode # wire up OpenCode
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Requirements
|
|
38
|
+
|
|
39
|
+
- Node.js 20+
|
|
40
|
+
- No Docker, Postgres, or Redis needed
|