@sdsrs/code-graph 0.7.10 → 0.7.12

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.
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "sdsrs"
6
6
  },
7
- "version": "0.7.10",
7
+ "version": "0.7.12",
8
8
  "keywords": [
9
9
  "code-graph",
10
10
  "ast",
@@ -2,48 +2,15 @@
2
2
  "hooks": {
3
3
  "PreToolUse": [
4
4
  {
5
- "matcher": "tool == \"Grep\"",
6
- "hooks": [
7
- {
8
- "type": "command",
9
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/pre-search-guide.js\"",
10
- "timeout": 2
11
- }
12
- ],
13
- "description": "Suggest code-graph alternatives on first Grep call"
14
- },
15
- {
16
- "matcher": "tool == \"Glob\"",
17
- "hooks": [
18
- {
19
- "type": "command",
20
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/pre-glob-guide.js\"",
21
- "timeout": 2
22
- }
23
- ],
24
- "description": "Suggest code-graph alternatives on first Glob call"
25
- },
26
- {
27
- "matcher": "tool == \"Agent\"",
28
- "hooks": [
29
- {
30
- "type": "command",
31
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/pre-explore-guide.js\"",
32
- "timeout": 2
33
- }
34
- ],
35
- "description": "Suggest code-graph tools before spawning Explore agents"
36
- },
37
- {
38
- "matcher": "tool == \"Edit\" || tool == \"Write\"",
5
+ "matcher": "tool == \"Edit\"",
39
6
  "hooks": [
40
7
  {
41
8
  "type": "command",
42
9
  "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/pre-edit-guide.js\"",
43
- "timeout": 2
10
+ "timeout": 4
44
11
  }
45
12
  ],
46
- "description": "Remind about impact_analysis before first code modification"
13
+ "description": "Auto-inject impact analysis when editing function definitions with 2+ callers"
47
14
  }
48
15
  ],
49
16
  "PostToolUse": [
@@ -66,10 +33,10 @@
66
33
  {
67
34
  "type": "command",
68
35
  "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/user-prompt-context.js\"",
69
- "timeout": 4
36
+ "timeout": 5
70
37
  }
71
38
  ],
72
- "description": "Inject relevant code-graph context based on user's question"
39
+ "description": "Inject code-graph structural context (impact, overview, callgraph) based on user intent"
73
40
  }
74
41
  ],
75
42
  "SessionStart": [
@@ -1,21 +1,105 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
- // PreToolUse hook: On FIRST Edit/Write call per session window, remind Claude
4
- // to check impact analysis before modifying functions. Fast and non-blocking.
3
+ // PreToolUse(Edit) hook: auto-inject impact analysis when editing function definitions.
4
+ // Only fires when:
5
+ // 1. The old_string contains a function/method definition (signature being modified)
6
+ // 2. The symbol has 2+ production callers (high impact)
7
+ // 3. Same symbol not queried in last 2 minutes
8
+ // Silently exits otherwise — zero noise for normal edits.
9
+ const { execFileSync } = require('child_process');
5
10
  const fs = require('fs');
6
11
  const path = require('path');
7
12
  const os = require('os');
8
13
 
9
- const flag = path.join(os.tmpdir(), '.code-graph-edit-guided');
10
- const WINDOW_MS = 2 * 60 * 60 * 1000; // 2 hours
14
+ const cwd = process.cwd();
15
+ const dbPath = path.join(cwd, '.code-graph', 'index.db');
16
+ if (!fs.existsSync(dbPath)) process.exit(0);
11
17
 
18
+ // --- Parse tool input ---
19
+ let input;
12
20
  try {
13
- const stat = fs.statSync(flag);
14
- if (Date.now() - stat.mtimeMs < WINDOW_MS) process.exit(0);
15
- } catch { /* first time */ }
16
-
17
- fs.writeFileSync(flag, '');
18
- process.stdout.write(
19
- '[code-graph] Before modifying functions, consider checking blast radius:\n' +
20
- ' code-graph-mcp impact <function_name>\n'
21
- );
21
+ input = JSON.parse(fs.readFileSync('/dev/stdin', 'utf8'));
22
+ } catch { process.exit(0); }
23
+
24
+ const oldStr = (input.tool_input && input.tool_input.old_string) || '';
25
+ if (!oldStr || oldStr.length < 10) process.exit(0);
26
+
27
+ // --- Extract function/method signature from the edited text ---
28
+ // Match function definitions across languages: Rust, JS/TS, Python, Go, Java/C#/Kotlin, Ruby, PHP
29
+ const fnPatterns = [
30
+ /(?:pub\s+)?(?:async\s+)?fn\s+(\w+)/, // Rust
31
+ /(?:export\s+)?(?:async\s+)?function\s+(\w+)/, // JS/TS
32
+ /(?:const|let|var)\s+(\w+)\s*=\s*(?:async\s+)?(?:\([^)]*\)|_)\s*=>/, // JS arrow
33
+ /(?:async\s+)?(\w+)\s*\([^)]*\)\s*\{/, // JS method / Go func
34
+ /def\s+(\w+)/, // Python/Ruby
35
+ /func\s+(\w+)/, // Go/Swift
36
+ /(?:public|private|protected|static|override|virtual|abstract|internal)\s+\S+\s+(\w+)\s*\(/, // Java/C#/Kotlin
37
+ /(?:public\s+)?function\s+(\w+)/, // PHP
38
+ ];
39
+
40
+ let symbol = null;
41
+ for (const pat of fnPatterns) {
42
+ const m = oldStr.match(pat);
43
+ if (m) {
44
+ // Find the first captured group
45
+ symbol = m[1] || m[2];
46
+ break;
47
+ }
48
+ }
49
+
50
+ if (!symbol || symbol.length < 3) process.exit(0);
51
+
52
+ // Skip common patterns that aren't real function names
53
+ if (/^(if|for|while|switch|catch|else|return|new|get|set|try)$/i.test(symbol)) {
54
+ process.exit(0);
55
+ }
56
+
57
+ // --- Per-symbol cooldown: 2 minutes ---
58
+ const cooldownFile = path.join(os.tmpdir(), `.cg-impact-${symbol}`);
59
+ try {
60
+ if (Date.now() - fs.statSync(cooldownFile).mtimeMs < 120000) process.exit(0);
61
+ } catch { /* first time for this symbol */ }
62
+
63
+ // --- Run impact analysis (JSON mode for programmatic parsing) ---
64
+ let jsonResult;
65
+ try {
66
+ const raw = execFileSync('code-graph-mcp', ['impact', symbol, '--json'], {
67
+ cwd,
68
+ timeout: 2500,
69
+ encoding: 'utf8',
70
+ stdio: ['pipe', 'pipe', 'pipe'],
71
+ });
72
+ jsonResult = JSON.parse(raw);
73
+ } catch {
74
+ // Symbol not found, timeout, or parse error — exit silently
75
+ process.exit(0);
76
+ }
77
+
78
+ // --- Only inject if high-impact (2+ production callers) ---
79
+ const directCallers = jsonResult.direct_callers || 0;
80
+ const totalCallers = jsonResult.total_callers || 0;
81
+ const affectedFiles = jsonResult.affected_files || 0;
82
+ const risk = jsonResult.risk || 'low';
83
+
84
+ if (directCallers < 2) process.exit(0);
85
+
86
+ // Mark cooldown
87
+ try { fs.writeFileSync(cooldownFile, ''); } catch { /* ok */ }
88
+
89
+ // --- Inject compact impact summary ---
90
+ const routeCount = jsonResult.affected_routes || 0;
91
+ const testCount = jsonResult.tests_affected || 0;
92
+
93
+ let summary = `[code-graph:impact] ${symbol}() — Risk: ${risk}\n`;
94
+ summary += ` ${directCallers} direct callers, ${totalCallers} total across ${affectedFiles} files`;
95
+ if (routeCount > 0) summary += `, ${routeCount} routes affected`;
96
+ if (testCount > 0) summary += ` (${testCount} tests)`;
97
+ summary += '\n';
98
+
99
+ // List direct callers compactly
100
+ const callers = (jsonResult.callers || []).filter(c => c.depth === 1);
101
+ if (callers.length > 0) {
102
+ summary += ' Callers: ' + callers.map(c => `${c.name} (${c.file})`).join(', ') + '\n';
103
+ }
104
+
105
+ process.stdout.write(summary);
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
- // UserPromptSubmit hook: inject relevant code-graph context based on user's question.
4
- // Only activates when user message references code entities + has understanding intent.
5
- // This is a CODE INDEX, not a memory store — only inject structural code context.
3
+ // UserPromptSubmit hook: inject relevant code-graph RESULTS based on user's intent.
4
+ // Strategy: PUSH structural context (not suggestions) that Grep/Read cannot provide.
5
+ // This is a CODE INDEX — only inject structural code context (impact, overview, callgraph).
6
6
  const { execFileSync } = require('child_process');
7
7
  const fs = require('fs');
8
8
  const path = require('path');
@@ -31,13 +31,27 @@ if (!fs.existsSync(MANIFEST_PATH)) {
31
31
  process.exit(0);
32
32
  }
33
33
 
34
- // --- Rate limiting ---
35
- const flag = path.join(os.tmpdir(), '.code-graph-prompt-ctx');
36
- const COOLDOWN_MS = 60 * 1000; // 1 minute between injections
37
- try {
38
- const stat = fs.statSync(flag);
39
- if (Date.now() - stat.mtimeMs < COOLDOWN_MS) process.exit(0);
40
- } catch { /* first time */ }
34
+ // --- Per-type rate limiting (replaces single global cooldown) ---
35
+ const COOLDOWNS = {
36
+ impact: 30 * 1000, // 30s impact context changes during rapid edits
37
+ overview: 5 * 60 * 1000, // 5min — module structure rarely changes mid-session
38
+ callgraph: 60 * 1000, // 1min
39
+ search: 60 * 1000, // 1min
40
+ };
41
+
42
+ function isCoolingDown(type) {
43
+ try {
44
+ const flag = path.join(os.tmpdir(), `.code-graph-ctx-${type}`);
45
+ const stat = fs.statSync(flag);
46
+ return Date.now() - stat.mtimeMs < (COOLDOWNS[type] || 60000);
47
+ } catch { return false; }
48
+ }
49
+
50
+ function markCooldown(type) {
51
+ try {
52
+ fs.writeFileSync(path.join(os.tmpdir(), `.code-graph-ctx-${type}`), '');
53
+ } catch { /* ok */ }
54
+ }
41
55
 
42
56
  // --- Read user message ---
43
57
  let message;
@@ -87,51 +101,75 @@ const symbolCandidates = (message.match(/\b(?:[A-Z]\w*(?:::\w+)+|[a-z]\w*(?:_\w+
87
101
  .filter(s => !STOP_WORDS.has(s.toLowerCase()))
88
102
  .slice(0, 3);
89
103
 
104
+ // Fallback: plain lowercase words (8+ chars) likely to be function/type names.
105
+ // Only when strict patterns found nothing — avoids false positives from English prose.
106
+ // Minimum 8 chars filters most common English words while keeping technical terms
107
+ // (authenticate, serialize, initialize, dispatch, resolver, etc.)
108
+ if (symbolCandidates.length === 0) {
109
+ const plain = (message.match(/\b[a-z][a-z]{7,}\b/g) || [])
110
+ .filter(s => !STOP_WORDS.has(s))
111
+ .filter(s => !/^(possible|together|actually|something|different|important|following|available|necessary|currently|implement|operation|otherwise|beginning|knowledge|attention|according|certainly|sometimes|direction|recommend|structure|describe|question|complete|generate|anything|continue|consider|response|approach|happened|recently|probably|expected|previous|original|specific|directly|received|required|supposed|separate|designed|finished|provided|included|prepared|combined|properly|remember|whatever|although|document|handling|existing|everyone|standard|research|personal|relative|absolute|practice|language|thousand|national|evidence)$/.test(s));
112
+ symbolCandidates.push(...plain.slice(0, 2));
113
+ }
114
+
90
115
  // Detect intent keywords (EN + ZH, derived from user's actual prompt history)
91
116
  const intentImpact = /(?:impact|影响|修改前|改之前|blast radius|before (?:edit|chang|modif)|risk|风险|改动范围|波及|问题在|bug|干扰|冲突|卡)/i.test(message);
117
+ const intentModify = /(?:改(?!变)|修改|重构|\brefactor\b|\bchange\b|\brename\b|移动|\bmove\b|删(?!除文件)|\bremove\b|替换|\breplace\b|\bupdate\b|升级|\bmigrate\b|迁移|拆分|\bsplit\b|合并|\bmerge\b|提取|\bextract\b|改成|改为|换成|转为|异步|同步)/i.test(message);
92
118
  const intentUnderstand = /(?:how does|怎么工作|怎么实现|怎么做|什么|理解|看看|看一下|了解|分析|explain|understand|架构|architecture|structure|overview|模块|概览|干什么|做什么|工作原理|逻辑|机制|流程|功能|结合度|效率|评估|调研|是什么|有什么|能用不|高效不|达标|起作用|科学|深入思考|源码)/i.test(message);
93
119
  const intentCallgraph = /(?:who calls|what calls|调用|call(?:graph|er|ee)|trace|链路|追踪|谁调|被谁调|调了谁|上下游|依赖关系|触发|路径|覆盖|介入)/i.test(message);
94
120
  const intentSearch = /(?:where is|在哪|find|search|搜索|找|locate|哪里用|哪里定义|定义在|实现在|处理没|在源码|加不加)/i.test(message);
95
121
 
96
122
  // Need entities AND intent, or strong entity signal (qualified names like Foo::bar)
97
123
  const hasQualifiedSymbol = symbolCandidates.some(s => s.includes('::'));
98
- const hasIntent = intentImpact || intentUnderstand || intentCallgraph || intentSearch;
124
+ const hasIntent = intentImpact || intentModify || intentUnderstand || intentCallgraph || intentSearch;
99
125
  if (!hasIntent && !hasQualifiedSymbol && filePaths.length === 0) {
100
126
  process.exit(0);
101
127
  }
102
128
 
103
- // --- Run ONE targeted CLI query ---
129
+ // --- Semantic output prefixes ---
130
+ const PREFIXES = {
131
+ impact: '[code-graph:impact] Blast radius — review before editing:',
132
+ overview: '[code-graph:structure] Module structure:',
133
+ callgraph: '[code-graph:callgraph] Call relationships:',
134
+ search: '[code-graph:search] Relevant code:',
135
+ };
136
+
137
+ // --- Run ONE targeted CLI query (per-type cooldown allows different types to fire) ---
138
+ let queryType = null;
104
139
  let result = '';
105
140
  try {
106
- if (intentImpact && symbolCandidates.length > 0) {
107
- result = run(`code-graph-mcp impact "${symbolCandidates[0]}"`);
108
- } else if (filePaths.length > 0 && intentUnderstand) {
109
- // Overview of the mentioned file's directory
110
- const dir = filePaths[0].replace(/\/[^/]+$/, '/');
111
- result = run(`code-graph-mcp overview "${dir}"`);
112
- } else if (intentCallgraph && symbolCandidates.length > 0) {
113
- result = run(`code-graph-mcp callgraph "${symbolCandidates[0]}" --depth 2`);
114
- } else if ((intentSearch || hasQualifiedSymbol) && symbolCandidates.length > 0) {
115
- result = run(`code-graph-mcp search "${symbolCandidates[0]}" --limit 8`);
116
- } else if (filePaths.length > 0) {
141
+ // Priority: impact/modify > callgraph > understand/overview > search
142
+ // intentModify + symbol → inject impact so Claude knows blast radius before editing
143
+ if ((intentImpact || intentModify) && symbolCandidates.length > 0 && !isCoolingDown('impact')) {
144
+ queryType = 'impact';
145
+ result = run('code-graph-mcp', ['impact', symbolCandidates[0]]);
146
+ } else if (intentCallgraph && symbolCandidates.length > 0 && !isCoolingDown('callgraph')) {
147
+ queryType = 'callgraph';
148
+ result = run('code-graph-mcp', ['callgraph', symbolCandidates[0], '--depth', '2']);
149
+ } else if (filePaths.length > 0 && (intentUnderstand || !hasIntent) && !isCoolingDown('overview')) {
150
+ queryType = 'overview';
117
151
  const dir = filePaths[0].replace(/\/[^/]+$/, '/');
118
- result = run(`code-graph-mcp overview "${dir}"`);
152
+ result = run('code-graph-mcp', ['overview', dir]);
153
+ } else if ((intentSearch || hasQualifiedSymbol) && symbolCandidates.length > 0 && !isCoolingDown('search')) {
154
+ queryType = 'search';
155
+ result = run('code-graph-mcp', ['search', symbolCandidates[0], '--limit', '8']);
156
+ } else if (intentUnderstand && symbolCandidates.length > 0 && !isCoolingDown('search')) {
157
+ queryType = 'search';
158
+ result = run('code-graph-mcp', ['search', symbolCandidates[0], '--limit', '8']);
119
159
  }
120
160
  } catch {
121
161
  process.exit(0);
122
162
  }
123
163
 
124
- if (result && result.trim()) {
125
- fs.writeFileSync(flag, ''); // update cooldown
126
- process.stdout.write(result.trim() + '\n');
164
+ if (result && result.trim() && queryType) {
165
+ markCooldown(queryType);
166
+ process.stdout.write(`${PREFIXES[queryType]}\n${result.trim()}\n`);
127
167
  }
128
168
 
129
169
  // --- Helpers ---
130
170
 
131
- function run(cmd) {
132
- const parts = cmd.match(/(?:[^\s"]+|"[^"]*")+/g) || [];
133
- const args = parts.slice(1).map(a => a.replace(/^"|"$/g, ''));
134
- return execFileSync(parts[0], args, {
171
+ function run(cmd, args) {
172
+ return execFileSync(cmd, args, {
135
173
  cwd,
136
174
  timeout: 3000,
137
175
  encoding: 'utf8',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdsrs/code-graph",
3
- "version": "0.7.10",
3
+ "version": "0.7.12",
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.7.10",
37
- "@sdsrs/code-graph-linux-arm64": "0.7.10",
38
- "@sdsrs/code-graph-darwin-x64": "0.7.10",
39
- "@sdsrs/code-graph-darwin-arm64": "0.7.10",
40
- "@sdsrs/code-graph-win32-x64": "0.7.10"
36
+ "@sdsrs/code-graph-linux-x64": "0.7.12",
37
+ "@sdsrs/code-graph-linux-arm64": "0.7.12",
38
+ "@sdsrs/code-graph-darwin-x64": "0.7.12",
39
+ "@sdsrs/code-graph-darwin-arm64": "0.7.12",
40
+ "@sdsrs/code-graph-win32-x64": "0.7.12"
41
41
  }
42
42
  }
@@ -1,24 +0,0 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
- // PreToolUse hook: On FIRST Agent call per session window, suggest
4
- // code-graph CLI commands for structural code understanding before spawning agents.
5
- const fs = require('fs');
6
- const path = require('path');
7
- const os = require('os');
8
-
9
- const flag = path.join(os.tmpdir(), '.code-graph-explore-guided');
10
- const WINDOW_MS = 2 * 60 * 60 * 1000; // 2 hours
11
-
12
- try {
13
- const stat = fs.statSync(flag);
14
- if (Date.now() - stat.mtimeMs < WINDOW_MS) process.exit(0);
15
- } catch { /* first time */ }
16
-
17
- fs.writeFileSync(flag, '');
18
- process.stdout.write(
19
- '[code-graph] For code structure understanding, try CLI first (one Bash call vs agent):\n' +
20
- ' code-graph-mcp map \u2190 full architecture overview\n' +
21
- ' code-graph-mcp overview src/module \u2190 module structure and exports\n' +
22
- ' code-graph-mcp callgraph symbol \u2190 trace call chains\n' +
23
- 'Explore agents remain best for: non-code files, runtime behavior, open-ended investigation.\n'
24
- );
@@ -1,38 +0,0 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
- // PreToolUse hook: On FIRST Glob call per session window, suggest
4
- // code-graph CLI commands — but only when exploring project structure,
5
- // NOT finding specific files by name.
6
- const fs = require('fs');
7
- const path = require('path');
8
- const os = require('os');
9
-
10
- const flag = path.join(os.tmpdir(), '.code-graph-glob-guided');
11
- const WINDOW_MS = 2 * 60 * 60 * 1000; // 2 hours
12
-
13
- try {
14
- const stat = fs.statSync(flag);
15
- if (Date.now() - stat.mtimeMs < WINDOW_MS) process.exit(0);
16
- } catch { /* first time */ }
17
-
18
- // Parse tool input to detect intent — skip for specific file lookups
19
- try {
20
- const input = JSON.parse(fs.readFileSync('/dev/stdin', 'utf8'));
21
- const pattern = (input && input.tool_input && input.tool_input.pattern) || '';
22
- // Skip suggestion for: specific file patterns (has extension), config files, specific names
23
- if (/\.(json|yaml|yml|toml|md|txt|env|lock|config|rc)$/i.test(pattern)) {
24
- process.exit(0);
25
- }
26
- // Skip for patterns with specific filenames (not just wildcards like **/*.ts)
27
- if (!pattern.includes('*') && /[\w-]+\.\w{1,5}$/.test(pattern)) {
28
- process.exit(0);
29
- }
30
- } catch { /* stdin not available or parse error — show guide anyway */ }
31
-
32
- fs.writeFileSync(flag, '');
33
- process.stdout.write(
34
- '[code-graph] If exploring project structure (not finding specific files):\n' +
35
- ' code-graph-mcp map \u2190 project architecture (modules, deps, entry points)\n' +
36
- ' code-graph-mcp overview src/mcp \u2190 module symbols grouped by file and type\n' +
37
- 'Glob remains best for: finding specific files, configs, non-code assets.\n'
38
- );
@@ -1,39 +0,0 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
- // PreToolUse hook: On FIRST Grep call per session window, suggest
4
- // code-graph CLI commands — but only when the pattern looks like code understanding
5
- // (function names, module patterns), NOT exact string/constant searches.
6
- const fs = require('fs');
7
- const path = require('path');
8
- const os = require('os');
9
-
10
- const flag = path.join(os.tmpdir(), '.code-graph-search-guided');
11
- const WINDOW_MS = 2 * 60 * 60 * 1000; // 2 hours
12
-
13
- try {
14
- const stat = fs.statSync(flag);
15
- if (Date.now() - stat.mtimeMs < WINDOW_MS) process.exit(0);
16
- } catch { /* first time */ }
17
-
18
- // Parse tool input to detect intent — skip for literal/constant searches
19
- try {
20
- const input = JSON.parse(fs.readFileSync('/dev/stdin', 'utf8'));
21
- const pattern = (input && input.tool_input && input.tool_input.pattern) || '';
22
- // Skip suggestion for: quoted strings, TODO/FIXME, constants, exact literals, error messages
23
- if (/^["']|^(TODO|FIXME|HACK|WARN|ERROR|const )|^\w+[=:]/i.test(pattern)) {
24
- process.exit(0);
25
- }
26
- // Skip for very short patterns (likely exact match)
27
- if (pattern.length <= 3) {
28
- process.exit(0);
29
- }
30
- } catch { /* stdin not available or parse error — show guide anyway */ }
31
-
32
- fs.writeFileSync(flag, '');
33
- process.stdout.write(
34
- '[code-graph] CLI commands for code understanding (via Bash):\n' +
35
- ' code-graph-mcp grep "pattern" \u2190 AST context grep (match + containing function/class)\n' +
36
- ' code-graph-mcp search "concept" \u2190 semantic search (find code by concept, not exact name)\n' +
37
- ' code-graph-mcp callgraph symbol \u2190 call chain tracing\n' +
38
- 'Grep remains best for: exact strings, constants, regex, non-code files.\n'
39
- );