@sdsrs/code-graph 0.82.1 → 0.83.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
@@ -7,7 +7,7 @@ A high-performance code knowledge graph server implementing the [Model Context P
7
7
  - **Multi-language parsing** — Tree-sitter AST extraction across tiers of depth:
8
8
  - **Full** (calls + imports + inheritance + HTTP routes + test markers): TypeScript/TSX, JavaScript, Go, Python, Rust, Java
9
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++
10
+ - **Limited** (functions + calls + `#include` imports + gtest test markers + C++ base-class inheritance; `Class::method` scope qualification deferred): C, C++
11
11
  - **Scripting**: Bash (functions + commands + `source`/`.` imports), Markdown (headings)
12
12
  - **File-FTS only** (no AST symbol extraction): HTML, CSS, JSON
13
13
  - **Semantic code search** — Hybrid BM25 full-text + vector semantic search with Reciprocal Rank Fusion (RRF), powered by sqlite-vec
@@ -301,7 +301,7 @@ Available when installed as a Claude Code plugin:
301
301
  |----------|-----------|-------------------|
302
302
  | TypeScript | .ts, .tsx | calls, imports, exports, inherits, implements, routes_to |
303
303
  | JavaScript | .js, .jsx, .mjs, .cjs | calls, imports, exports, inherits, routes_to |
304
- | Go | .go | calls, imports, routes_to |
304
+ | Go | .go | calls, imports, inherits, routes_to |
305
305
  | Python | .py, .pyi | calls, imports, inherits, routes_to |
306
306
  | Rust | .rs | calls, imports, inherits, implements |
307
307
  | Java | .java | calls, imports, inherits, implements |
@@ -310,7 +310,7 @@ Available when installed as a Claude Code plugin:
310
310
  | Ruby | .rb | calls, imports, inherits |
311
311
  | PHP | .php | calls, imports, inherits, implements |
312
312
  | Swift | .swift | calls, imports, inherits |
313
- | Dart | .dart | calls, imports, implements |
313
+ | Dart | .dart | calls, imports, inherits, implements |
314
314
  | C | .c, .h | calls, imports |
315
315
  | C++ | .cpp, .cc, .cxx, .hpp | calls, imports, inherits |
316
316
  | HTML | .html, .htm | structural parsing |
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "sdsrs"
6
6
  },
7
- "version": "0.82.1",
7
+ "version": "0.83.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.82.1",
3
+ "version": "0.83.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.82.1",
39
- "@sdsrs/code-graph-linux-arm64": "0.82.1",
40
- "@sdsrs/code-graph-darwin-x64": "0.82.1",
41
- "@sdsrs/code-graph-darwin-arm64": "0.82.1",
42
- "@sdsrs/code-graph-win32-x64": "0.82.1"
38
+ "@sdsrs/code-graph-linux-x64": "0.83.0",
39
+ "@sdsrs/code-graph-linux-arm64": "0.83.0",
40
+ "@sdsrs/code-graph-darwin-x64": "0.83.0",
41
+ "@sdsrs/code-graph-darwin-arm64": "0.83.0",
42
+ "@sdsrs/code-graph-win32-x64": "0.83.0"
43
43
  }
44
44
  }