@sdsrs/code-graph 0.4.5 → 0.4.7

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
@@ -80,6 +80,16 @@ What you get:
80
80
  - **StatusLine** — Real-time health display (nodes, files, watch status) — compatible with other plugins' StatusLine via composite multiplexer
81
81
  - **Auto-update** — Checks for new versions every 24h, updates silently
82
82
 
83
+ #### Manual Update
84
+
85
+ ```bash
86
+ npm update -g @sdsrs/code-graph
87
+ ```
88
+
89
+ Then reconnect the MCP server in Claude Code with `/mcp`.
90
+
91
+ > **Note:** Auto-update is disabled in the source repo directory (dev mode). Use manual update when developing the plugin itself.
92
+
83
93
  ### Option 2: Claude Code MCP Server Only
84
94
 
85
95
  Register as an MCP server without the plugin features:
@@ -4,6 +4,6 @@
4
4
  "author": {
5
5
  "name": "sdsrs"
6
6
  },
7
- "version": "0.4.5",
7
+ "version": "0.4.7",
8
8
  "keywords": ["code-graph", "ast", "navigation", "mcp", "knowledge-graph"]
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdsrs/code-graph",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
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": {
@@ -33,10 +33,10 @@
33
33
  "node": ">=16"
34
34
  },
35
35
  "optionalDependencies": {
36
- "@sdsrs/code-graph-linux-x64": "0.4.5",
37
- "@sdsrs/code-graph-linux-arm64": "0.4.5",
38
- "@sdsrs/code-graph-darwin-x64": "0.4.5",
39
- "@sdsrs/code-graph-darwin-arm64": "0.4.5",
40
- "@sdsrs/code-graph-win32-x64": "0.4.5"
36
+ "@sdsrs/code-graph-linux-x64": "0.4.7",
37
+ "@sdsrs/code-graph-linux-arm64": "0.4.7",
38
+ "@sdsrs/code-graph-darwin-x64": "0.4.7",
39
+ "@sdsrs/code-graph-darwin-arm64": "0.4.7",
40
+ "@sdsrs/code-graph-win32-x64": "0.4.7"
41
41
  }
42
42
  }