@sdsrs/code-graph 0.97.1 → 0.98.1
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
|
@@ -319,6 +319,10 @@ Available when installed as a Claude Code plugin:
|
|
|
319
319
|
| CSS | .css | file-FTS only (no AST symbols) |
|
|
320
320
|
| JSON | .json | file-FTS only (no AST symbols) |
|
|
321
321
|
|
|
322
|
+
**Known limitations:**
|
|
323
|
+
- **Kotlin/Swift interface conformance** is recorded as `inherits` (both use a single `: Type` grammar for base classes and protocols/interfaces), so `implements`-filtered queries return empty for these two languages.
|
|
324
|
+
- **Cross-file dead-code detection** may false-positive a type whose only cross-file reference sits beyond the 4096-byte stored-content cap per node (documented accepted limitation, v0.97.1).
|
|
325
|
+
|
|
322
326
|
## Team-shared graph snapshot
|
|
323
327
|
|
|
324
328
|
Skip the full local index for team members and CI runners by publishing a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdsrs/code-graph",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.98.1",
|
|
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": {
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"node": ">=16"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@sdsrs/code-graph-linux-x64": "0.
|
|
40
|
-
"@sdsrs/code-graph-linux-arm64": "0.
|
|
41
|
-
"@sdsrs/code-graph-darwin-x64": "0.
|
|
42
|
-
"@sdsrs/code-graph-darwin-arm64": "0.
|
|
43
|
-
"@sdsrs/code-graph-win32-x64": "0.
|
|
39
|
+
"@sdsrs/code-graph-linux-x64": "0.98.1",
|
|
40
|
+
"@sdsrs/code-graph-linux-arm64": "0.98.1",
|
|
41
|
+
"@sdsrs/code-graph-darwin-x64": "0.98.1",
|
|
42
|
+
"@sdsrs/code-graph-darwin-arm64": "0.98.1",
|
|
43
|
+
"@sdsrs/code-graph-win32-x64": "0.98.1"
|
|
44
44
|
}
|
|
45
45
|
}
|