@vohongtho.infotech/code-intel 0.8.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 +9 -1
- package/dist/cli/main.js +2847 -1366
- package/dist/cli/main.js.map +1 -1
- package/dist/index.js +28 -19
- package/dist/index.js.map +1 -1
- package/dist/web/assets/{es-J7AmFCht.js → es-CkND97V_.js} +1 -1
- package/dist/web/assets/{index-upRm-kxQ.js → index-DExLzJ89.js} +3 -3
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Code Intelligence Platform
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@vohongtho.infotech/code-intel)
|
|
4
4
|
|
|
5
5
|
A static code analysis platform that builds a **Knowledge Graph** from your source code and makes it explorable through a Web UI, HTTP API, CLI, and MCP server.
|
|
6
6
|
|
|
@@ -32,6 +32,14 @@ A static code analysis platform that builds a **Knowledge Graph** from your sour
|
|
|
32
32
|
- **Incremental Analysis** — `--incremental` re-parses only changed files; 10k-file repo / 3 changes: 288ms
|
|
33
33
|
- **Parallel Analysis** — `--parallel` runs parse + resolve phases on worker threads for large repos
|
|
34
34
|
- **Structured Logging** — winston-based logger with daily-rotating log files, sensitive-data masking, and configurable log levels
|
|
35
|
+
- **`code-intel init` Wizard** _(v0.9)_ — interactive 5-step setup wizard; creates `~/.code-intel/config.json`
|
|
36
|
+
- **Config Management CLI** _(v0.9)_ — `config get/set/list/validate/reset` with JSON Schema, `$ENV_VAR` expansion, masked secrets
|
|
37
|
+
- **Better Error Messages** _(v0.9)_ — `CI-XXXX` codes, actionable hints, `--debug` stack traces, startup prerequisite checks
|
|
38
|
+
- **Shell Completion** _(v0.9)_ — `code-intel completion bash|zsh|fish`; `setup --completion` auto-installs
|
|
39
|
+
- **VS Code Extension** _(v0.9)_ — symbol hover, Symbol Explorer panel, status bar, command palette, go-to-definition from graph
|
|
40
|
+
- **Self-Update** _(v0.9)_ — `code-intel update`; background version check; `--no-update-check` to suppress
|
|
41
|
+
- **`--dry-run` flag** _(v0.9)_ — `analyze`, `clean`, `group sync` preview without side effects
|
|
42
|
+
- **`code-intel doctor`** _(v0.9)_ — full diagnostics: Node.js, git, config, registry, DB integrity, network
|
|
35
43
|
|
|
36
44
|
---
|
|
37
45
|
|