You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove tree-sitter-liquid git dep that broke npm installs (v0.4.2)
Git dependency required native compilation from source, failing on
Node 22+ due to missing node-addon-api. 27 languages now supported.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Every AI coding session starts from scratch. When context compacts or a new sess
21
21
22
22
CodeCortex pre-digests codebases into layered knowledge files and serves them to any AI agent via MCP. Instead of re-understanding your codebase every session, the AI starts with knowledge.
23
23
24
-
**Hybrid extraction:** tree-sitter native N-API for structure (symbols, imports, calls across 28 languages) + host LLM for semantics (what modules do, why they're built that way). Zero extra API keys.
24
+
**Hybrid extraction:** tree-sitter native N-API for structure (symbols, imports, calls across 27 languages) + host LLM for semantics (what modules do, why they're built that way). Zero extra API keys.
25
25
26
26
## Quick Start
27
27
@@ -152,7 +152,7 @@ vs. raw scan of entire codebase: ~37,800 tokens
152
152
153
153
| Category | Languages |
154
154
|----------|-----------|
155
-
| Web | TypeScript, TSX, JavaScript, Liquid|
155
+
| Web | TypeScript, TSX, JavaScript |
156
156
| Systems | C, C++, Objective-C, Rust, Zig, Go |
157
157
| JVM | Java, Kotlin, Scala |
158
158
| .NET | C# |
@@ -164,7 +164,7 @@ vs. raw scan of entire codebase: ~37,800 tokens
164
164
## Tech Stack
165
165
166
166
- TypeScript ESM, Node.js 20+
167
-
-`tree-sitter` (native N-API) + 28 language grammar packages
167
+
-`tree-sitter` (native N-API) + 27 language grammar packages
0 commit comments