@sdsrs/code-graph 0.4.6 → 0.4.8

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.6",
7
+ "version": "0.4.8",
8
8
  "keywords": ["code-graph", "ast", "navigation", "mcp", "knowledge-graph"]
9
9
  }
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: code-navigation
3
- description: Smart code navigation decision tree for code-graph MCP tools. Use when exploring, understanding, or navigating code in a project indexed by code-graph.
3
+ description: Code-graph tool selection guide. Use BEFORE any code exploration, bug fixing, feature implementation, or refactoring task to choose the most token-efficient tool (code-graph vs Grep/Read). Especially important before modifying functions — check impact_analysis first.
4
4
  ---
5
5
 
6
6
  # Code Navigation with Code Graph
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdsrs/code-graph",
3
- "version": "0.4.6",
3
+ "version": "0.4.8",
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.6",
37
- "@sdsrs/code-graph-linux-arm64": "0.4.6",
38
- "@sdsrs/code-graph-darwin-x64": "0.4.6",
39
- "@sdsrs/code-graph-darwin-arm64": "0.4.6",
40
- "@sdsrs/code-graph-win32-x64": "0.4.6"
36
+ "@sdsrs/code-graph-linux-x64": "0.4.8",
37
+ "@sdsrs/code-graph-linux-arm64": "0.4.8",
38
+ "@sdsrs/code-graph-darwin-x64": "0.4.8",
39
+ "@sdsrs/code-graph-darwin-arm64": "0.4.8",
40
+ "@sdsrs/code-graph-win32-x64": "0.4.8"
41
41
  }
42
42
  }