@openez-graph/cli 1.0.0 → 1.0.1

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
@@ -9,8 +9,12 @@ OpenEZ Graph indexes your codebase into a local SQLite database, builds a code g
9
9
 
10
10
  **Zero config. No Docker. No Postgres. No Redis. Just install and go.**
11
11
 
12
+ > **v1.0: Bun-powered, Rust-native parsing.** The CLI now runs exclusively on [Bun](https://bun.sh) 1.1+ with native `bun:sqlite` (no `better-sqlite3` compilation step). TS/JS parsing uses [oxc-parser](https://oxc.rs) (Rust-based, ~13x faster than Babel) instead of `ts-morph`. Python/Go/Rust use tree-sitter in rayon-parallel batches. Requires Bun 1.1+.
13
+
12
14
  ## Features
13
15
 
16
+ - **Bun-powered** — native `bun:sqlite` driver, no native compilation, near-instant startup
17
+ - **Rust-native parsing** — [oxc-parser](https://oxc.rs) for TS/JS (~13x faster than Babel), tree-sitter for Python/Go/Rust in rayon-parallel batches
14
18
  - **Zero-config** — auto-registers workspace, auto-indexes, auto-syncs on file changes
15
19
  - **SQLite-first** — all data stored locally in `.openez/` per workspace, no Postgres/Redis
16
20
  - **FTS5 full-text search** — SQLite FTS5 with BM25 ranking and porter tokenizer
@@ -101,14 +105,14 @@ Valid config keys: `embedding.provider`, `embedding.openai_api_key`, `embedding.
101
105
 
102
106
  ## Supported languages
103
107
 
104
- | Language | Indexing depth |
105
- | ----------------------- | ------------------------------------------------------ |
106
- | TypeScript / JavaScript | Richest — `ts-morph` symbol extraction, imports, calls |
107
- | Python | Basic top-level symbol extraction |
108
- | Go | Basic top-level symbol extraction |
109
- | Rust | Basic top-level symbol extraction |
110
- | YAML / JSON / TOML | Structure-aware chunking |
111
- | Markdown | Section-oriented chunking |
108
+ | Language | Parser | Indexing depth |
109
+ | ----------------------- | ---------------------------- | -------------------------------------------------------------------- |
110
+ | TypeScript / JavaScript | [oxc-parser](https://oxc.rs) | Richest — symbol extraction, imports, calls (~13x faster than Babel) |
111
+ | Python | tree-sitter (Rust, rayon) | Symbol extraction, decorators, imports, calls |
112
+ | Go | tree-sitter (Rust, rayon) | Symbol extraction, receiver-qualified methods, calls |
113
+ | Rust | tree-sitter (Rust, rayon) | Symbol extraction, impl blocks, calls |
114
+ | YAML / JSON / TOML | Structure-aware | Structure-aware chunking |
115
+ | Markdown | Section-oriented | Section-oriented chunking |
112
116
 
113
117
  ## Retrieval quality
114
118
 
package/dist/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.1] - 2026-08-08
11
+
12
+ ### Changed
13
+
14
+ - README.md and apps/cli/README.md updated to document Bun runtime and [oxc-parser](https://oxc.rs) migration
15
+
16
+ ## [1.0.0] - 2026-08-08
17
+
10
18
  ### Changed
11
19
 
12
20
  - CLI runtime changed from Node.js 20+ to [Bun](https://bun.sh) 1.1+ — `bun:sqlite` is now the only SQLite driver, removing the `better-sqlite3` fallback and runtime detection layer
@@ -205,6 +213,7 @@ Remediation release — index/graph correctness, data protection, and web flow f
205
213
  - Error handling and validation for import path extraction
206
214
  - CLI npm packaging
207
215
 
216
+ [1.0.1]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.0...v1.0.1
208
217
  [0.12.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.1...v0.12.0
209
218
  [0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1
210
219
  [0.11.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.10.0...v0.11.0
package/dist/cli.cjs CHANGED
@@ -57729,7 +57729,7 @@ __export(mcp_bridge_exports, {
57729
57729
  startMcpServer: () => startMcpServer
57730
57730
  });
57731
57731
  async function startMcpServer(defaultPath, version4) {
57732
- await createAndStartMcpServer({ defaultPath, version: version4, build: "89f3c73-dirty" });
57732
+ await createAndStartMcpServer({ defaultPath, version: version4, build: "da9baab-dirty" });
57733
57733
  }
57734
57734
  var init_mcp_bridge = __esm({
57735
57735
  "src/mcp-bridge.ts"() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openez-graph/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Local-first code intelligence engine — index, query, and graph your codebase with zero config. SQLite-only, MCP-first.",
5
5
  "license": "MIT",
6
6
  "author": "Asta Nguyen",