@openez-graph/cli 1.0.0 → 1.0.2
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 +12 -8
- package/dist/CHANGELOG.md +21 -0
- package/dist/cli.cjs +67 -1148
- package/package.json +2 -1
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 —
|
|
107
|
-
| Python |
|
|
108
|
-
| Go |
|
|
109
|
-
| Rust |
|
|
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,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.2] - 2026-08-08
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Graph build produced 0 symbol nodes and 0 edges** — `oxc-parser` (NAPI-RS native binding) was not declared in CLI `dependencies` and was not listed in tsup `external`, so `require("oxc-parser")` failed silently in the bundled CLI, falling back to line-based chunking with 0 symbols. Added `oxc-parser` to `dependencies` and `oxc-parser` + `@oxc-parser/binding-*` to tsup `external` so the native binding resolves from `node_modules` at runtime.
|
|
15
|
+
|
|
16
|
+
### Contributors
|
|
17
|
+
|
|
18
|
+
- **Asta Nguyen** — [@asta-nguyen](https://github.com/asta-nguyen)
|
|
19
|
+
- **JoeJoe** — [@JoeJoeflyn](https://github.com/JoeJoeflyn)
|
|
20
|
+
|
|
21
|
+
## [1.0.1] - 2026-08-08
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- README.md and apps/cli/README.md updated to document Bun runtime and [oxc-parser](https://oxc.rs) migration
|
|
26
|
+
|
|
27
|
+
## [1.0.0] - 2026-08-08
|
|
28
|
+
|
|
10
29
|
### Changed
|
|
11
30
|
|
|
12
31
|
- 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 +224,8 @@ Remediation release — index/graph correctness, data protection, and web flow f
|
|
|
205
224
|
- Error handling and validation for import path extraction
|
|
206
225
|
- CLI npm packaging
|
|
207
226
|
|
|
227
|
+
[1.0.2]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.1...v1.0.2
|
|
228
|
+
[1.0.1]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.0...v1.0.1
|
|
208
229
|
[0.12.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.1...v0.12.0
|
|
209
230
|
[0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1
|
|
210
231
|
[0.11.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.10.0...v0.11.0
|