@sdsrs/code-graph 0.18.4 → 0.19.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
@@ -4,7 +4,12 @@ A high-performance code knowledge graph server implementing the [Model Context P
4
4
 
5
5
  ## Features
6
6
 
7
- - **Multi-language parsing** — Tree-sitter AST extraction for 16 languages: TypeScript, JavaScript, Go, Python, Rust, Java, C, C++, C#, Kotlin, Ruby, PHP, Swift, Dart, HTML, CSS
7
+ - **Multi-language parsing** — Tree-sitter AST extraction across tiers of depth:
8
+ - **Full** (calls + imports + inheritance + HTTP routes + test markers): TypeScript/TSX, JavaScript, Go, Python, Rust, Java
9
+ - **Smoke-tested** (calls + imports + inheritance): C#, Kotlin, Ruby, PHP, Swift, Dart
10
+ - **Limited** (functions + calls + `#include` imports + gtest test markers; `Class::method` scope qualification deferred): C, C++
11
+ - **Scripting**: Bash (functions + commands + `source`/`.` imports), Markdown (headings)
12
+ - **File-FTS only** (no AST symbol extraction): HTML, CSS, JSON
8
13
  - **Semantic code search** — Hybrid BM25 full-text + vector semantic search with Reciprocal Rank Fusion (RRF), powered by sqlite-vec
9
14
  - **Call graph traversal** — Recursive CTE queries to trace callers/callees with cycle detection
10
15
  - **HTTP route tracing** — Map route paths to backend handler functions (Express, Flask/FastAPI, Go `net/http`)
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "sdsrs"
6
6
  },
7
- "version": "0.18.4",
7
+ "version": "0.19.0",
8
8
  "keywords": [
9
9
  "code-graph",
10
10
  "ast",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdsrs/code-graph",
3
- "version": "0.18.4",
3
+ "version": "0.19.0",
4
4
  "description": "MCP server that indexes codebases into an AST knowledge graph with semantic search, call graph traversal, and HTTP route tracing",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -35,10 +35,10 @@
35
35
  "node": ">=16"
36
36
  },
37
37
  "optionalDependencies": {
38
- "@sdsrs/code-graph-linux-x64": "0.18.4",
39
- "@sdsrs/code-graph-linux-arm64": "0.18.4",
40
- "@sdsrs/code-graph-darwin-x64": "0.18.4",
41
- "@sdsrs/code-graph-darwin-arm64": "0.18.4",
42
- "@sdsrs/code-graph-win32-x64": "0.18.4"
38
+ "@sdsrs/code-graph-linux-x64": "0.19.0",
39
+ "@sdsrs/code-graph-linux-arm64": "0.19.0",
40
+ "@sdsrs/code-graph-darwin-x64": "0.19.0",
41
+ "@sdsrs/code-graph-darwin-arm64": "0.19.0",
42
+ "@sdsrs/code-graph-win32-x64": "0.19.0"
43
43
  }
44
44
  }