@openez-graph/cli 0.7.0 → 0.9.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 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 `memory_query`, `code_context`, `graph_neighbors`, `memory_write`, `index_workspace`, `list_workspaces` tools
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
- | `memory_query` | Full-text search + graph expansion for retrieval context |
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`)