@openez-graph/cli 0.7.0 → 0.8.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 +6 -3
- package/dist/cli.cjs +2037 -1735
- package/dist/web/assets/{WorkspaceGraph-CllVZusW.js → WorkspaceGraph-CCcuZFwT.js} +1 -1
- package/dist/web/assets/index-Bno_za8P.js +362 -0
- package/dist/web/assets/index-CCFMIXkF.css +1 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/web/assets/index-DZQ-CM_A.css +0 -1
- package/dist/web/assets/index-DjbS8Om9.js +0 -352
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ OpenEZ Graph indexes your codebase into a local SQLite database, builds a code g
|
|
|
15
15
|
- **SQLite-first** — all data stored locally in `.openez/` per workspace, no Postgres/Redis
|
|
16
16
|
- **FTS5 full-text search** — SQLite FTS5 with BM25 ranking and porter tokenizer
|
|
17
17
|
- **Vector search** — optional OpenAI/Ollama embeddings with cosine similarity
|
|
18
|
-
- **MCP-first** — exposes `
|
|
18
|
+
- **MCP-first** — exposes `code_query`, `code_context`, `graph_neighbors`, `memory_recall`, `memory_write`, `index_workspace`, `list_workspaces` tools
|
|
19
19
|
- **Multi-workspace** — register and query across multiple codebases
|
|
20
20
|
- **Code graph** — symbols, files, chunks, and edges (calls, imports, contains)
|
|
21
21
|
- **Web dashboard** — built-in graph explorer and workspace management UI
|
|
@@ -76,12 +76,15 @@ openez setup devin # wire up Devin CLI
|
|
|
76
76
|
| Tool | Description |
|
|
77
77
|
|------|-------------|
|
|
78
78
|
| `list_workspaces` | List all registered workspaces |
|
|
79
|
-
| `
|
|
80
|
-
| `code_context` | Get symbol context with callers, callees, and related files |
|
|
79
|
+
| `code_query` | Hybrid FTS/vector search + graph expansion over indexed code and docs |
|
|
80
|
+
| `code_context` | Get budgeted symbol context with callers, callees, and related files |
|
|
81
81
|
| `graph_neighbors` | Traverse graph edges from a node or label |
|
|
82
|
+
| `memory_recall` | Recall active memory entries and technical decisions |
|
|
82
83
|
| `memory_write` | Write a memory entry (notes, decisions, patterns) |
|
|
83
84
|
| `index_workspace` | Trigger indexing for a workspace |
|
|
84
85
|
|
|
86
|
+
`memory_query` is accepted as a deprecated compatibility alias for `code_query`, but is not advertised to new clients.
|
|
87
|
+
|
|
85
88
|
## How it works
|
|
86
89
|
|
|
87
90
|
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`)
|