dsh-code-index 0.1.0 → 0.3.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 +23 -6
- package/README.zh.md +20 -6
- package/dist/index.js +315 -36
- package/dist/index.js.map +1 -1
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# dsh-code-index
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/dsh-code-index)
|
|
4
|
+
[](https://github.com/lemonxiny55/dsh-code-index/actions)
|
|
5
|
+
|
|
3
6
|
English | [中文](README.zh.md)
|
|
4
7
|
|
|
5
8
|
Semantic repo index — a [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) (`dsh`) plugin that gives the agent a **codebase map**: a tree-sitter symbol index, ranked symbol search, and a bounded auto-updating repo map in the system prompt.
|
|
@@ -12,10 +15,10 @@ Fills a real ecosystem gap: search of the `dsh-plugin` topic (2026-08) shows git
|
|
|
12
15
|
|---|---|
|
|
13
16
|
| `code_index` | Status / (re)build the index for the current workspace |
|
|
14
17
|
| `code_symbols` | List symbols (functions, classes, interfaces, types, methods…) with file:line — filtered by name, path, kind, exported |
|
|
15
|
-
| `code_search` | Ranked lookup: exact > prefix > substring, exports first, relevance score + file:line |
|
|
16
|
-
| `code_map` | Bounded ranked repo map (top files by symbol density, key symbols + lines) |
|
|
18
|
+
| `code_search` | Ranked lookup: exact > prefix > substring > subsequence-fuzzy, exports first, relevance score + file:line |
|
|
19
|
+
| `code_map` | Bounded ranked repo map (top files by symbol density + import-graph PageRank, key symbols + lines) |
|
|
17
20
|
|
|
18
|
-
Plus an optional **auto-injected system prompt section** (`code-index:repo-map`, order 60): a compact ranked map of the default workspace, refreshed
|
|
21
|
+
Plus an optional **auto-injected system prompt section** (`code-index:repo-map`, order 60): a compact ranked map of the default workspace, refreshed on a TTL (`mapTtlMs`, default 60s). Set `autoInject: false` to disable and rely on the `code_map` tool only.
|
|
19
22
|
|
|
20
23
|
## Install
|
|
21
24
|
|
|
@@ -91,17 +94,18 @@ Options are passed as the plugin row's `config` in the profile patch (or default
|
|
|
91
94
|
| `excludeDirs` | `[]` | Extra dirs appended to the built-in excludes (`node_modules`, `.git`, `dist`, `build`, `out`, `coverage`, `.next`, `.nuxt`, `.cache`, `target`, `vendor`, …) |
|
|
92
95
|
| `mapTopFiles` | `24` | Max files in a ranked map |
|
|
93
96
|
| `mapMaxChars` | `3200` | Hard cap on rendered map characters |
|
|
97
|
+
| `mapTtlMs` | `60000` | Refresh interval for the auto-injected map (ms, min 1000) |
|
|
94
98
|
| `autoInject` | `true` | Register the system prompt section |
|
|
95
99
|
|
|
96
100
|
## Supported languages
|
|
97
101
|
|
|
98
|
-
TypeScript
|
|
102
|
+
TypeScript, JavaScript, Python, Go, Rust and Java (`.ts .tsx .mts .cts .js .jsx .mjs .cjs .py .pyi .go .rs .java`) via tree-sitter WASM — pure parsing, no native build. The symbol provider seam (`src/extract.ts` + grammars) is where other languages/embeddings plug in later.
|
|
99
103
|
|
|
100
104
|
## How it works
|
|
101
105
|
|
|
102
106
|
- **Index build** (`src/buildIndex.ts`): recursive scan (excludes applied), per-file tree-sitter extraction (`src/extract.ts`), JSON cache under `<repo>/.dsh-code-index/`, incremental refresh by mtime (only touched files re-parse).
|
|
103
107
|
- **Search** (`src/search.ts`): pure scoring — exact `1` / prefix `0.8` / substring `0.5`, export boost, name order tiebreak.
|
|
104
|
-
- **Repo map** (`src/repomap.ts`): density-aware file score (class/interface/function weighted,
|
|
108
|
+
- **Repo map** (`src/repomap.ts`): personalized PageRank over the import graph (teleport = per-file density share, so hub files that are themselves imported by other hubs rise above flat in-degree counting), seeded by the density-aware file score (class/interface/function weighted, test paths damped), top-N files, per-file symbol cap, hard char truncation.
|
|
105
109
|
- **Workspace resolution**: each tool resolves the session cwd (`agent.session.header.cwd`) and walks up to the nearest `.git` (bounded — a directory without a repo marker is never indexed).
|
|
106
110
|
|
|
107
111
|
## Known limitations
|
|
@@ -115,11 +119,24 @@ TypeScript + JavaScript (`.ts .tsx .mts .cts .js .jsx .mjs .cjs`) via tree-sitte
|
|
|
115
119
|
|
|
116
120
|
```sh
|
|
117
121
|
pnpm install
|
|
118
|
-
pnpm test # vitest — extractor, scan, cache, search, repo map
|
|
122
|
+
pnpm test # vitest — extractor, scan, cache, search, repo map
|
|
119
123
|
pnpm typecheck
|
|
120
124
|
pnpm build # tsup → dist/index.js (ESM, external deps)
|
|
121
125
|
```
|
|
122
126
|
|
|
127
|
+
**WSL → Windows checkouts:** running `pnpm install` from WSL against a checkout on `/mnt/c` leaves Linux-style symlinks that Windows Node cannot traverse (`Cannot find package 'web-tree-sitter'`, `EACCES`). Repair without a reinstall from the Windows side:
|
|
128
|
+
|
|
129
|
+
```sh
|
|
130
|
+
node.exe scripts\fix-wsl-links.mjs # this repo's node_modules
|
|
131
|
+
node.exe scripts\fix-wsl-links.mjs C:\Users\you\.dsh\profiles\web # a dsh profile install
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
It re-points every dead link at its real `.pnpm` store entry as a junction; safe to re-run (idempotent, reports `fixed: 0` when clean).
|
|
135
|
+
|
|
136
|
+
## Feedback
|
|
137
|
+
|
|
138
|
+
Found a bug, or the map ranks something badly? Please [open an issue](https://github.com/lemonxiny55/dsh-code-index/issues) — real-world usage reports (repos where the ranking misbehaves, languages you want next) directly drive the roadmap.
|
|
139
|
+
|
|
123
140
|
## License
|
|
124
141
|
|
|
125
142
|
MIT. Not affiliated with DeepSeek; built on the public `dsh` plugin surface.
|
package/README.zh.md
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
|---|---|
|
|
13
13
|
| `code_index` | 查看 / (重)建当前工作区的索引 |
|
|
14
14
|
| `code_symbols` | 列出符号(函数、类、接口、类型、方法……),带 file:line——支持按名称、路径、类型、是否导出过滤 |
|
|
15
|
-
| `code_search` | 排名检索:精确 > 前缀 >
|
|
16
|
-
| `code_map` | 限量排名仓库地图(
|
|
15
|
+
| `code_search` | 排名检索:精确 > 前缀 > 子串 > 子序列模糊,导出优先,带相关度分数与 file:line |
|
|
16
|
+
| `code_map` | 限量排名仓库地图(按符号密度 + import 图 PageRank 取核心文件 + 关键符号与行号) |
|
|
17
17
|
|
|
18
|
-
外加一个可选的**自动注入系统提示词段**(`code-index:repo-map`,序 60)
|
|
18
|
+
外加一个可选的**自动注入系统提示词段**(`code-index:repo-map`,序 60):默认工作区的精简排名地图,按 TTL 自动刷新(`mapTtlMs`,默认 60 秒)。将 `autoInject: false` 可关闭,只依赖 `code_map` 工具。
|
|
19
19
|
|
|
20
20
|
## 安装
|
|
21
21
|
|
|
@@ -91,17 +91,18 @@ export function extractSymbols(code, id) — src/extract.ts:121
|
|
|
91
91
|
| `excludeDirs` | `[]` | 追加到内置排除列表(`node_modules`、`.git`、`dist`、`build`、`out`、`coverage`、`.next`、`.nuxt`、`.cache`、`target`、`vendor`……)之外的额外目录 |
|
|
92
92
|
| `mapTopFiles` | `24` | 排名地图中的最大文件数 |
|
|
93
93
|
| `mapMaxChars` | `3200` | 渲染地图的硬性字符上限 |
|
|
94
|
+
| `mapTtlMs` | `60000` | 自动注入地图的刷新间隔(毫秒,最小 1000) |
|
|
94
95
|
| `autoInject` | `true` | 是否注册系统提示词段 |
|
|
95
96
|
|
|
96
97
|
## 支持的语言
|
|
97
98
|
|
|
98
|
-
TypeScript
|
|
99
|
+
TypeScript、JavaScript、Python、Go、Rust、Java(`.ts .tsx .mts .cts .js .jsx .mjs .cjs .py .pyi .go .rs .java`),通过 tree-sitter WASM 解析——纯解析,无需原生编译。符号提供方的接缝(`src/extract.ts` + 语法文件)预留了后续接入其他语言/嵌入检索的位置。
|
|
99
100
|
|
|
100
101
|
## 工作原理
|
|
101
102
|
|
|
102
103
|
- **索引构建**(`src/buildIndex.ts`):递归扫描(应用排除规则),逐文件 tree-sitter 提取(`src/extract.ts`),JSON 缓存置于 `<repo>/.dsh-code-index/`,按 mtime 增量刷新(只有被改动的文件才重新解析)。
|
|
103
104
|
- **搜索**(`src/search.ts`):纯打分——精确 `1` / 前缀 `0.8` / 子串 `0.5`,导出加权,名称序平局裁决。
|
|
104
|
-
- **仓库地图**(`src/repomap.ts`)
|
|
105
|
+
- **仓库地图**(`src/repomap.ts`):import 图上的个性化 PageRank(传送向量 = 各文件密度份额,被其他枢纽文件引用的枢纽会比平铺入度统计排得更靠前),以密度感知的文件打分为底(class/interface/function 加权,测试路径衰减),取 Top-N 文件,每文件符号上限,硬截断。
|
|
105
106
|
- **工作区解析**:每个工具解析会话 cwd(`agent.session.header.cwd`)并向上查找最近的 `.git`(有界——没有仓库标记的目录绝不会被索引)。
|
|
106
107
|
|
|
107
108
|
## 已知限制
|
|
@@ -115,11 +116,24 @@ TypeScript + JavaScript(`.ts .tsx .mts .cts .js .jsx .mjs .cjs`),通过 tree-sit
|
|
|
115
116
|
|
|
116
117
|
```sh
|
|
117
118
|
pnpm install
|
|
118
|
-
pnpm test # vitest —— 提取器、扫描、缓存、搜索、仓库地图
|
|
119
|
+
pnpm test # vitest —— 提取器、扫描、缓存、搜索、仓库地图
|
|
119
120
|
pnpm typecheck
|
|
120
121
|
pnpm build # tsup → dist/index.js(ESM,外部依赖)
|
|
121
122
|
```
|
|
122
123
|
|
|
124
|
+
**WSL → Windows 检出**:从 WSL 对 `/mnt/c` 下的检出跑 `pnpm install`,会留下 Windows 侧 Node 无法穿透的 Linux 风格符号链接(`Cannot find package 'web-tree-sitter'`、`EACCES`)。无需重装,在 Windows 侧跑一次修复:
|
|
125
|
+
|
|
126
|
+
```sh
|
|
127
|
+
node.exe scripts\fix-wsl-links.mjs # 本仓库的 node_modules
|
|
128
|
+
node.exe scripts\fix-wsl-links.mjs C:\Users\you\.dsh\profiles\web # dsh profile 里的插件安装
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
它会把每个失效链接以 junction 形式重新指向 `.pnpm` store 里的真实位置;可重复执行(幂等,干净时报 `fixed: 0`)。
|
|
132
|
+
|
|
133
|
+
## 反馈
|
|
134
|
+
|
|
135
|
+
发现 bug,或者地图排名不合理?请[提 issue](https://github.com/lemonxiny55/dsh-code-index/issues)——真实使用报告(排名失准的仓库、想支持的语言)直接决定路线图。
|
|
136
|
+
|
|
123
137
|
## 许可证
|
|
124
138
|
|
|
125
139
|
MIT。与 DeepSeek 无关;基于公开的 `dsh` 插件接口构建。
|
package/dist/index.js
CHANGED
|
@@ -9,6 +9,14 @@ import path from "path";
|
|
|
9
9
|
import Parser from "web-tree-sitter";
|
|
10
10
|
var require2 = createRequire(import.meta.url);
|
|
11
11
|
var WASM_DIR = path.dirname(require2.resolve("tree-sitter-wasms/out/tree-sitter-typescript.wasm"));
|
|
12
|
+
var GRAMMAR_NAMES = {
|
|
13
|
+
typescript: "tree-sitter-typescript",
|
|
14
|
+
javascript: "tree-sitter-javascript",
|
|
15
|
+
python: "tree-sitter-python",
|
|
16
|
+
go: "tree-sitter-go",
|
|
17
|
+
rust: "tree-sitter-rust",
|
|
18
|
+
java: "tree-sitter-java"
|
|
19
|
+
};
|
|
12
20
|
var EXT_TO_LANG = {
|
|
13
21
|
".ts": "typescript",
|
|
14
22
|
".tsx": "typescript",
|
|
@@ -17,7 +25,12 @@ var EXT_TO_LANG = {
|
|
|
17
25
|
".js": "javascript",
|
|
18
26
|
".jsx": "javascript",
|
|
19
27
|
".mjs": "javascript",
|
|
20
|
-
".cjs": "javascript"
|
|
28
|
+
".cjs": "javascript",
|
|
29
|
+
".py": "python",
|
|
30
|
+
".pyi": "python",
|
|
31
|
+
".go": "go",
|
|
32
|
+
".rs": "rust",
|
|
33
|
+
".java": "java"
|
|
21
34
|
};
|
|
22
35
|
function languageForFile(filePath) {
|
|
23
36
|
const ext = path.extname(filePath).toLowerCase();
|
|
@@ -43,6 +56,29 @@ var QUERIES = {
|
|
|
43
56
|
(method_definition) @method
|
|
44
57
|
(class_declaration) @class
|
|
45
58
|
(variable_declarator) @variable
|
|
59
|
+
`,
|
|
60
|
+
python: `
|
|
61
|
+
(function_definition) @function
|
|
62
|
+
(class_definition) @class
|
|
63
|
+
`,
|
|
64
|
+
go: `
|
|
65
|
+
(function_declaration) @function
|
|
66
|
+
(method_declaration) @method
|
|
67
|
+
(type_spec) @type
|
|
68
|
+
`,
|
|
69
|
+
rust: `
|
|
70
|
+
(function_item) @function
|
|
71
|
+
(function_signature_item) @method
|
|
72
|
+
(struct_item) @class
|
|
73
|
+
(enum_item) @enum
|
|
74
|
+
(trait_item) @interface
|
|
75
|
+
`,
|
|
76
|
+
java: `
|
|
77
|
+
(class_declaration) @class
|
|
78
|
+
(interface_declaration) @interface
|
|
79
|
+
(enum_declaration) @enum
|
|
80
|
+
(method_declaration) @method
|
|
81
|
+
(constructor_declaration) @method
|
|
46
82
|
`
|
|
47
83
|
};
|
|
48
84
|
var CAPTURE_KINDS = {
|
|
@@ -55,6 +91,29 @@ var CAPTURE_KINDS = {
|
|
|
55
91
|
variable: { kind: "variable" },
|
|
56
92
|
field: { kind: "field" }
|
|
57
93
|
};
|
|
94
|
+
var IMPORT_QUERIES = {
|
|
95
|
+
typescript: `
|
|
96
|
+
(import_statement) @import
|
|
97
|
+
(export_statement) @reexport
|
|
98
|
+
`,
|
|
99
|
+
javascript: `
|
|
100
|
+
(import_statement) @import
|
|
101
|
+
(export_statement) @reexport
|
|
102
|
+
`,
|
|
103
|
+
python: `
|
|
104
|
+
(import_from_statement) @import
|
|
105
|
+
(import_statement) @import
|
|
106
|
+
`,
|
|
107
|
+
go: `
|
|
108
|
+
(import_spec) @import
|
|
109
|
+
`,
|
|
110
|
+
rust: `
|
|
111
|
+
(use_declaration) @use
|
|
112
|
+
`,
|
|
113
|
+
java: `
|
|
114
|
+
(import_declaration) @import
|
|
115
|
+
`
|
|
116
|
+
};
|
|
58
117
|
var parserPromise = null;
|
|
59
118
|
async function getParser() {
|
|
60
119
|
if (!parserPromise) {
|
|
@@ -71,82 +130,184 @@ var languageCache = /* @__PURE__ */ new Map();
|
|
|
71
130
|
function getLanguage(id) {
|
|
72
131
|
let entry = languageCache.get(id);
|
|
73
132
|
if (!entry) {
|
|
74
|
-
entry = getParser().then(async (
|
|
75
|
-
const
|
|
76
|
-
const grammarPath = path.join(WASM_DIR, `${grammarName}.wasm`);
|
|
133
|
+
entry = getParser().then(async () => {
|
|
134
|
+
const grammarPath = path.join(WASM_DIR, `${GRAMMAR_NAMES[id]}.wasm`);
|
|
77
135
|
const bytes = await readFile(grammarPath);
|
|
78
136
|
const lang = await Parser.Language.load(bytes);
|
|
79
137
|
const q = lang.query(QUERIES[id]);
|
|
80
138
|
q.delete();
|
|
139
|
+
const iq = lang.query(IMPORT_QUERIES[id]);
|
|
140
|
+
iq.delete();
|
|
81
141
|
return lang;
|
|
82
142
|
});
|
|
83
143
|
languageCache.set(id, entry);
|
|
84
144
|
}
|
|
85
145
|
return entry;
|
|
86
146
|
}
|
|
87
|
-
async function
|
|
147
|
+
async function extractAll(code, id) {
|
|
88
148
|
const lang = await getLanguage(id);
|
|
89
149
|
const parser = await getParser();
|
|
90
150
|
parser.setLanguage(lang);
|
|
91
151
|
const tree = parser.parse(code);
|
|
92
152
|
try {
|
|
93
|
-
const
|
|
94
|
-
const
|
|
153
|
+
const symbols = [];
|
|
154
|
+
const symbolQuery = lang.query(QUERIES[id]);
|
|
95
155
|
try {
|
|
96
|
-
const captures =
|
|
156
|
+
const captures = symbolQuery.captures(tree.rootNode);
|
|
97
157
|
for (const cap of captures) {
|
|
98
158
|
const def = CAPTURE_KINDS[cap.name];
|
|
99
159
|
if (!def) continue;
|
|
100
160
|
const node = cap.node;
|
|
161
|
+
if (def.kind === "variable" && !isModuleLevelVariable(node)) continue;
|
|
101
162
|
const name2 = nameOf(node);
|
|
102
163
|
if (!name2) continue;
|
|
103
|
-
|
|
164
|
+
symbols.push({
|
|
104
165
|
name: name2,
|
|
105
|
-
kind: def.kind,
|
|
166
|
+
kind: kindFor(id, node, def.kind),
|
|
106
167
|
file: "",
|
|
107
168
|
// set by the caller (extractor is file-agnostic)
|
|
108
169
|
line: node.startPosition.row + 1,
|
|
109
170
|
endLine: node.endPosition.row + 1,
|
|
110
|
-
exported: isExported(node),
|
|
171
|
+
exported: isExported(id, node),
|
|
111
172
|
signature: signatureFor(node)
|
|
112
173
|
});
|
|
113
174
|
}
|
|
114
175
|
} finally {
|
|
115
|
-
|
|
176
|
+
symbolQuery.delete();
|
|
116
177
|
}
|
|
117
|
-
|
|
118
|
-
|
|
178
|
+
const imports = [];
|
|
179
|
+
const importQuery = lang.query(IMPORT_QUERIES[id]);
|
|
180
|
+
try {
|
|
181
|
+
for (const cap of importQuery.captures(tree.rootNode)) {
|
|
182
|
+
const spec = specifierOf(id, cap.node);
|
|
183
|
+
if (spec) imports.push(spec);
|
|
184
|
+
}
|
|
185
|
+
} finally {
|
|
186
|
+
importQuery.delete();
|
|
187
|
+
}
|
|
188
|
+
symbols.sort((a, b) => a.line - b.line);
|
|
189
|
+
return { symbols, imports };
|
|
119
190
|
} finally {
|
|
120
191
|
tree.delete();
|
|
121
192
|
}
|
|
122
193
|
}
|
|
194
|
+
async function extractSymbols(code, id) {
|
|
195
|
+
return (await extractAll(code, id)).symbols;
|
|
196
|
+
}
|
|
123
197
|
function nameOf(node) {
|
|
124
198
|
const field = node.childForFieldName?.("name");
|
|
125
199
|
if (field) return field.text.trim();
|
|
126
200
|
return "";
|
|
127
201
|
}
|
|
202
|
+
function specifierOf(id, node) {
|
|
203
|
+
switch (node.type) {
|
|
204
|
+
case "import_statement":
|
|
205
|
+
if (id === "python") return dottedToPath(node.childForFieldName("name")?.text);
|
|
206
|
+
return stripQuotes(node.childForFieldName("source")?.text);
|
|
207
|
+
case "export_statement":
|
|
208
|
+
return stripQuotes(node.childForFieldName("source")?.text);
|
|
209
|
+
case "import_from_statement": {
|
|
210
|
+
const raw = node.childForFieldName("module_name")?.text;
|
|
211
|
+
if (raw == null) return null;
|
|
212
|
+
return raw.startsWith(".") ? pythonRelative(raw) : dottedToPath(raw);
|
|
213
|
+
}
|
|
214
|
+
case "import_spec":
|
|
215
|
+
return stripQuotes(node.childForFieldName("path")?.text);
|
|
216
|
+
case "use_declaration":
|
|
217
|
+
return rustUsePath(node.childForFieldName("argument")?.text);
|
|
218
|
+
case "import_declaration":
|
|
219
|
+
return dottedToPath(node.namedChildren[0]?.text);
|
|
220
|
+
default:
|
|
221
|
+
return null;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
function rustUsePath(text) {
|
|
225
|
+
if (!text) return null;
|
|
226
|
+
const base = text.split("{")[0].trim();
|
|
227
|
+
if (!base) return null;
|
|
228
|
+
const parts = base.split("::").filter(Boolean);
|
|
229
|
+
if (parts[0] === "crate") parts.shift();
|
|
230
|
+
return parts.map((p) => p === "super" ? ".." : p === "self" ? "." : p).join("/");
|
|
231
|
+
}
|
|
232
|
+
function stripQuotes(text) {
|
|
233
|
+
if (text == null || text.length < 2) return null;
|
|
234
|
+
const first = text[0];
|
|
235
|
+
const last = text[text.length - 1];
|
|
236
|
+
if (first === "'" && last === "'" || first === '"' && last === '"') {
|
|
237
|
+
return text.slice(1, -1);
|
|
238
|
+
}
|
|
239
|
+
return null;
|
|
240
|
+
}
|
|
241
|
+
function dottedToPath(text) {
|
|
242
|
+
if (!text) return null;
|
|
243
|
+
return text.trim().replace(/\./g, "/");
|
|
244
|
+
}
|
|
245
|
+
function pythonRelative(raw) {
|
|
246
|
+
const dots = raw.match(/^\.+/)?.[0].length ?? 0;
|
|
247
|
+
const rest = raw.slice(dots).replace(/\./g, "/");
|
|
248
|
+
const prefix = dots === 1 ? "./" : "../".repeat(dots - 1);
|
|
249
|
+
return prefix + rest;
|
|
250
|
+
}
|
|
128
251
|
function signatureFor(node) {
|
|
129
252
|
const name2 = nameOf(node);
|
|
130
|
-
const params = node.namedChildren.find(
|
|
131
|
-
(c) => c.type === "formal_parameters" || c.type === "method_parameters"
|
|
253
|
+
const params = node.childForFieldName?.("parameters") ?? node.namedChildren.find(
|
|
254
|
+
(c) => c.type === "formal_parameters" || c.type === "method_parameters" || c.type === "parameters" || c.type === "parameter_list"
|
|
132
255
|
);
|
|
133
256
|
if (params) {
|
|
134
|
-
return `${name2}${params.text}`;
|
|
257
|
+
return `${name2}${collapseSpace(params.text)}`;
|
|
135
258
|
}
|
|
136
259
|
const first = node.namedChildren[0];
|
|
137
|
-
return first ? first.text
|
|
260
|
+
return first ? collapseSpace(first.text) : name2;
|
|
261
|
+
}
|
|
262
|
+
function collapseSpace(text) {
|
|
263
|
+
return text.replace(/\s+/g, " ").replace(/\( /g, "(").replace(/ \)/g, ")").replace(/ ,/g, ",").replace(/,\)/g, ")").trim();
|
|
138
264
|
}
|
|
139
|
-
function
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
265
|
+
function isModuleLevelVariable(node) {
|
|
266
|
+
const declaration = node.parent;
|
|
267
|
+
const container = declaration?.parent;
|
|
268
|
+
return container?.type === "program" || container?.type === "export_statement";
|
|
269
|
+
}
|
|
270
|
+
function isExported(id, node) {
|
|
271
|
+
if (id === "python") {
|
|
272
|
+
return node.parent?.type === "module";
|
|
273
|
+
}
|
|
274
|
+
if (id === "go") {
|
|
275
|
+
const name2 = nameOf(node);
|
|
276
|
+
return !!name2 && /^[A-Z]/.test(name2);
|
|
277
|
+
}
|
|
278
|
+
if (id === "rust") {
|
|
279
|
+
return node.namedChildren.some(
|
|
280
|
+
(c) => c.type === "visibility_modifier" && c.text === "pub"
|
|
281
|
+
);
|
|
282
|
+
}
|
|
283
|
+
if (id === "java") {
|
|
284
|
+
if (node.parent?.type === "interface_body") return true;
|
|
285
|
+
return node.namedChildren.some((c) => c.type === "modifiers" && /\bpublic\b/.test(c.text));
|
|
286
|
+
}
|
|
287
|
+
for (let parent = node.parent; parent; parent = parent.parent) {
|
|
143
288
|
if (parent.type === "export_statement") return true;
|
|
144
|
-
if (parent.type === "statement_block") return false;
|
|
145
|
-
parent
|
|
146
|
-
depth++;
|
|
289
|
+
if (parent.type === "statement_block" || parent.type === "class_body") return false;
|
|
290
|
+
if (parent.type === "program") return false;
|
|
147
291
|
}
|
|
148
292
|
return false;
|
|
149
293
|
}
|
|
294
|
+
function kindFor(id, node, kind) {
|
|
295
|
+
if (id === "python" && kind === "function") {
|
|
296
|
+
const inClassBody = node.parent?.type === "block" && node.parent?.parent?.type === "class_definition";
|
|
297
|
+
if (inClassBody) return "method";
|
|
298
|
+
}
|
|
299
|
+
if (id === "go" && node.type === "type_spec") {
|
|
300
|
+
const type = node.childForFieldName("type")?.type;
|
|
301
|
+
if (type === "struct_type") return "class";
|
|
302
|
+
if (type === "interface_type") return "interface";
|
|
303
|
+
return "type";
|
|
304
|
+
}
|
|
305
|
+
if (id === "rust" && node.type === "function_item") {
|
|
306
|
+
const inImpl = node.parent?.type === "declaration_list" && node.parent?.parent?.type === "impl_item";
|
|
307
|
+
if (inImpl) return "method";
|
|
308
|
+
}
|
|
309
|
+
return kind;
|
|
310
|
+
}
|
|
150
311
|
async function parseFileToSymbols(filePath, repoRoot, code) {
|
|
151
312
|
const lang = languageForFile(filePath);
|
|
152
313
|
if (!lang) return [];
|
|
@@ -183,7 +344,12 @@ var SUPPORTED_EXTS = /* @__PURE__ */ new Set([
|
|
|
183
344
|
".js",
|
|
184
345
|
".jsx",
|
|
185
346
|
".mjs",
|
|
186
|
-
".cjs"
|
|
347
|
+
".cjs",
|
|
348
|
+
".py",
|
|
349
|
+
".pyi",
|
|
350
|
+
".go",
|
|
351
|
+
".rs",
|
|
352
|
+
".java"
|
|
187
353
|
]);
|
|
188
354
|
async function scanRepo(root, options = {}) {
|
|
189
355
|
const excluded = /* @__PURE__ */ new Set([...DEFAULT_EXCLUDED_DIRS, ...options.excludeDirs ?? []]);
|
|
@@ -240,11 +406,19 @@ async function loadIndex(cachePath) {
|
|
|
240
406
|
const raw = await readFile2(cachePath, "utf8");
|
|
241
407
|
const parsed = JSON.parse(raw);
|
|
242
408
|
if (!parsed || typeof parsed.root !== "string" || !Array.isArray(parsed.files)) return null;
|
|
243
|
-
return parsed;
|
|
409
|
+
return healSymbolFiles(parsed);
|
|
244
410
|
} catch {
|
|
245
411
|
return null;
|
|
246
412
|
}
|
|
247
413
|
}
|
|
414
|
+
function healSymbolFiles(index) {
|
|
415
|
+
for (const file of index.files) {
|
|
416
|
+
for (const symbol of file.symbols) {
|
|
417
|
+
if (!symbol.file) symbol.file = file.path;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
return index;
|
|
421
|
+
}
|
|
248
422
|
async function saveIndex(cachePath, index) {
|
|
249
423
|
await mkdir(path3.dirname(cachePath), { recursive: true });
|
|
250
424
|
const temporaryPath = `${cachePath}.${process.pid}.${randomUUID()}.tmp`;
|
|
@@ -283,12 +457,13 @@ async function buildIndex(root, options = {}, previous = null) {
|
|
|
283
457
|
} catch {
|
|
284
458
|
return null;
|
|
285
459
|
}
|
|
286
|
-
const symbols = await
|
|
460
|
+
const { symbols, imports } = await extractAll(code, lang);
|
|
287
461
|
return {
|
|
288
462
|
path: f.rel,
|
|
289
463
|
lang,
|
|
290
464
|
mtimeMs: f.mtimeMs,
|
|
291
|
-
symbols: symbols.map((s) => ({ ...s, file: f.rel }))
|
|
465
|
+
symbols: symbols.map((s) => ({ ...s, file: f.rel })),
|
|
466
|
+
imports
|
|
292
467
|
};
|
|
293
468
|
})
|
|
294
469
|
);
|
|
@@ -367,8 +542,17 @@ function matchScore(name2, query) {
|
|
|
367
542
|
if (n === q) return 1;
|
|
368
543
|
if (n.startsWith(q)) return 0.8;
|
|
369
544
|
if (n.includes(q)) return 0.5;
|
|
545
|
+
if (q.length >= 3 && isSubsequence(q, n)) return 0.3;
|
|
370
546
|
return 0;
|
|
371
547
|
}
|
|
548
|
+
function isSubsequence(query, name2) {
|
|
549
|
+
let i = 0;
|
|
550
|
+
for (const ch of name2) {
|
|
551
|
+
if (ch === query[i]) i++;
|
|
552
|
+
if (i === query.length) return true;
|
|
553
|
+
}
|
|
554
|
+
return false;
|
|
555
|
+
}
|
|
372
556
|
function searchSymbols(index, filter, limit = 50) {
|
|
373
557
|
const q = (filter.query ?? "").trim();
|
|
374
558
|
const filePat = filter.file?.trim().toLowerCase();
|
|
@@ -397,6 +581,7 @@ function renderHit(hit) {
|
|
|
397
581
|
}
|
|
398
582
|
|
|
399
583
|
// src/repomap.ts
|
|
584
|
+
import path5 from "path";
|
|
400
585
|
var KIND_WEIGHT = {
|
|
401
586
|
class: 1,
|
|
402
587
|
interface: 1,
|
|
@@ -409,18 +594,29 @@ var KIND_WEIGHT = {
|
|
|
409
594
|
import: 0.05,
|
|
410
595
|
module: 0.3
|
|
411
596
|
};
|
|
597
|
+
var TEST_PATH_RE = /(^|\/)(tests?|__tests__)(\/|$)|\.(?:spec|test)\.[cm]?[jt]sx?$|(^|\/)(?:test_[^/]+\.py|[^/]+_test\.(?:py|go))$/;
|
|
412
598
|
function scoreFile(file) {
|
|
413
599
|
let score = 0;
|
|
414
600
|
for (const sym of file.symbols) {
|
|
415
601
|
score += KIND_WEIGHT[sym.kind] ?? 0.3;
|
|
416
602
|
if (sym.exported) score += 0.3;
|
|
417
603
|
}
|
|
418
|
-
|
|
604
|
+
score /= 1 + file.symbols.length * 0.04;
|
|
605
|
+
if (TEST_PATH_RE.test(file.path)) score *= 0.2;
|
|
606
|
+
return score;
|
|
419
607
|
}
|
|
420
608
|
function rankRepoMap(index, options = {}) {
|
|
421
609
|
const topFiles = options.topFiles ?? 24;
|
|
422
610
|
const perFile = options.symbolsPerFile ?? 18;
|
|
423
|
-
const
|
|
611
|
+
const density = /* @__PURE__ */ new Map();
|
|
612
|
+
for (const f of index.files) {
|
|
613
|
+
if (f.symbols.length > 0) density.set(f.path, scoreFile(f));
|
|
614
|
+
}
|
|
615
|
+
const centrality = referencePageRank(index.files, density);
|
|
616
|
+
const ranked = index.files.filter((f) => f.symbols.length > 0).map((f) => ({
|
|
617
|
+
file: f,
|
|
618
|
+
score: (density.get(f.path) ?? 0) + REF_WEIGHT * (centrality.get(f.path) ?? 0)
|
|
619
|
+
})).sort((a, b) => b.score - a.score || a.file.path.localeCompare(b.file.path)).slice(0, topFiles);
|
|
424
620
|
return ranked.map(({ file, score }) => ({
|
|
425
621
|
path: file.path,
|
|
426
622
|
score,
|
|
@@ -432,6 +628,85 @@ function rankRepoMap(index, options = {}) {
|
|
|
432
628
|
}))
|
|
433
629
|
}));
|
|
434
630
|
}
|
|
631
|
+
var REF_WEIGHT = 0.5;
|
|
632
|
+
var DAMPING = 0.85;
|
|
633
|
+
var CONVERGENCE_TOL = 1e-6;
|
|
634
|
+
var MAX_ITERATIONS = 100;
|
|
635
|
+
function referencePageRank(files, density) {
|
|
636
|
+
const nodes = files.filter((f) => density.has(f.path)).map((f) => f.path);
|
|
637
|
+
const n = nodes.length;
|
|
638
|
+
if (n === 0) return /* @__PURE__ */ new Map();
|
|
639
|
+
if (n === 1) return /* @__PURE__ */ new Map([[nodes[0], 1]]);
|
|
640
|
+
const totalDensity = nodes.reduce((sum, p) => sum + (density.get(p) ?? 0), 0);
|
|
641
|
+
const teleport = nodes.map((p) => (density.get(p) ?? 0) / totalDensity);
|
|
642
|
+
const fileSet = new Set(nodes);
|
|
643
|
+
const out = /* @__PURE__ */ new Map();
|
|
644
|
+
for (const file of files) {
|
|
645
|
+
if (!fileSet.has(file.path)) continue;
|
|
646
|
+
const targets = out.get(file.path) ?? /* @__PURE__ */ new Set();
|
|
647
|
+
for (const spec of file.imports ?? []) {
|
|
648
|
+
const target = resolveImport(spec, file.path, fileSet);
|
|
649
|
+
if (target && target !== file.path) targets.add(target);
|
|
650
|
+
}
|
|
651
|
+
out.set(file.path, targets);
|
|
652
|
+
}
|
|
653
|
+
const incoming = /* @__PURE__ */ new Map();
|
|
654
|
+
for (const [from, targets] of out) {
|
|
655
|
+
if (targets.size === 0) continue;
|
|
656
|
+
const weight = 1 / targets.size;
|
|
657
|
+
const fromIdx = nodes.indexOf(from);
|
|
658
|
+
for (const target of targets) {
|
|
659
|
+
const list = incoming.get(target) ?? [];
|
|
660
|
+
list.push([fromIdx, weight]);
|
|
661
|
+
incoming.set(target, list);
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
let rank = teleport.slice();
|
|
665
|
+
for (let iter = 0; iter < MAX_ITERATIONS; iter++) {
|
|
666
|
+
let danglingMass = 0;
|
|
667
|
+
for (let i = 0; i < n; i++) {
|
|
668
|
+
if (!out.get(nodes[i])?.size) danglingMass += rank[i];
|
|
669
|
+
}
|
|
670
|
+
const next = new Array(n);
|
|
671
|
+
let delta = 0;
|
|
672
|
+
for (let i = 0; i < n; i++) {
|
|
673
|
+
let flow = 0;
|
|
674
|
+
for (const [fromIdx, weight] of incoming.get(nodes[i]) ?? []) {
|
|
675
|
+
flow += rank[fromIdx] * weight;
|
|
676
|
+
}
|
|
677
|
+
next[i] = (1 - DAMPING) * teleport[i] + DAMPING * (flow + danglingMass * teleport[i]);
|
|
678
|
+
delta += Math.abs(next[i] - rank[i]);
|
|
679
|
+
}
|
|
680
|
+
rank = next;
|
|
681
|
+
if (delta < CONVERGENCE_TOL) break;
|
|
682
|
+
}
|
|
683
|
+
const result = /* @__PURE__ */ new Map();
|
|
684
|
+
for (let i = 0; i < n; i++) result.set(nodes[i], rank[i]);
|
|
685
|
+
return result;
|
|
686
|
+
}
|
|
687
|
+
function resolveImport(spec, fromPath, fileSet) {
|
|
688
|
+
if (!spec) return null;
|
|
689
|
+
if (spec.startsWith("./") || spec.startsWith("../")) {
|
|
690
|
+
const base = path5.posix.normalize(path5.posix.join(path5.posix.dirname(fromPath), spec));
|
|
691
|
+
return candidateFor(base, fileSet);
|
|
692
|
+
}
|
|
693
|
+
const segments = spec.split("/").filter(Boolean);
|
|
694
|
+
for (let skip = 0; skip < segments.length; skip++) {
|
|
695
|
+
const hit = candidateFor(segments.slice(skip).join("/"), fileSet);
|
|
696
|
+
if (hit) return hit;
|
|
697
|
+
}
|
|
698
|
+
return null;
|
|
699
|
+
}
|
|
700
|
+
function candidateFor(base, fileSet) {
|
|
701
|
+
for (const ext of SUPPORTED_EXTS) {
|
|
702
|
+
if (fileSet.has(`${base}${ext}`)) return `${base}${ext}`;
|
|
703
|
+
}
|
|
704
|
+
for (const ext of SUPPORTED_EXTS) {
|
|
705
|
+
if (fileSet.has(`${base}/index${ext}`)) return `${base}/index${ext}`;
|
|
706
|
+
if (fileSet.has(`${base}/__init__${ext}`)) return `${base}/__init__${ext}`;
|
|
707
|
+
}
|
|
708
|
+
return null;
|
|
709
|
+
}
|
|
435
710
|
function renderRepoMap(entries, options = {}) {
|
|
436
711
|
const maxChars = options.maxChars ?? 3200;
|
|
437
712
|
const lines = ["# repo map"];
|
|
@@ -454,13 +729,14 @@ function renderRepoMap(entries, options = {}) {
|
|
|
454
729
|
|
|
455
730
|
// src/tools.ts
|
|
456
731
|
import { defineTool } from "@deepseek-ai/dsh-tools";
|
|
457
|
-
import
|
|
732
|
+
import path6 from "path";
|
|
458
733
|
|
|
459
734
|
// src/config.ts
|
|
460
735
|
var DEFAULTS = {
|
|
461
736
|
excludeDirs: [],
|
|
462
737
|
mapTopFiles: 24,
|
|
463
738
|
mapMaxChars: 3200,
|
|
739
|
+
mapTtlMs: 6e4,
|
|
464
740
|
autoInject: true
|
|
465
741
|
};
|
|
466
742
|
var state = { current: { ...DEFAULTS } };
|
|
@@ -476,6 +752,9 @@ function applyConfig(partial) {
|
|
|
476
752
|
if (!Number.isFinite(state.current.mapMaxChars) || state.current.mapMaxChars < 200) {
|
|
477
753
|
state.current.mapMaxChars = DEFAULTS.mapMaxChars;
|
|
478
754
|
}
|
|
755
|
+
if (!Number.isFinite(state.current.mapTtlMs) || state.current.mapTtlMs < 1e3) {
|
|
756
|
+
state.current.mapTtlMs = DEFAULTS.mapTtlMs;
|
|
757
|
+
}
|
|
479
758
|
}
|
|
480
759
|
function getConfig() {
|
|
481
760
|
return state.current;
|
|
@@ -507,7 +786,7 @@ function createIndexCache(load, ttlMs = 6e4, now = Date.now) {
|
|
|
507
786
|
}
|
|
508
787
|
return {
|
|
509
788
|
get(root, force = false) {
|
|
510
|
-
const resolvedRoot =
|
|
789
|
+
const resolvedRoot = path6.resolve(root);
|
|
511
790
|
const key = cacheKeyForRoot(resolvedRoot);
|
|
512
791
|
const running = inFlight.get(key);
|
|
513
792
|
if (running) {
|
|
@@ -544,7 +823,7 @@ async function resolveRoot(arg, exec) {
|
|
|
544
823
|
const cwd = exec.agent?.session?.header?.cwd;
|
|
545
824
|
const base = arg ?? cwd ?? process.cwd();
|
|
546
825
|
const root = await findRepoRoot(base);
|
|
547
|
-
if (!root) throw new Error(`no git repository found from ${
|
|
826
|
+
if (!root) throw new Error(`no git repository found from ${path6.resolve(base)}`);
|
|
548
827
|
return root;
|
|
549
828
|
}
|
|
550
829
|
var tools = [
|
|
@@ -698,7 +977,6 @@ var tools = [
|
|
|
698
977
|
// src/index.ts
|
|
699
978
|
var name = "dsh-code-index";
|
|
700
979
|
var inject = ["tools", "systemPrompt"];
|
|
701
|
-
var MAP_TTL_MS = 6e4;
|
|
702
980
|
function apply(ctx, pluginConfig) {
|
|
703
981
|
applyConfig(pluginConfig);
|
|
704
982
|
invalidateIndexCache();
|
|
@@ -744,7 +1022,7 @@ function apply(ctx, pluginConfig) {
|
|
|
744
1022
|
// before tool guidance (100–199), after persona (0)
|
|
745
1023
|
text: () => {
|
|
746
1024
|
const now = Date.now();
|
|
747
|
-
if (cached && now - cached.at <
|
|
1025
|
+
if (cached && now - cached.at < getConfig().mapTtlMs) return cached.text;
|
|
748
1026
|
void warmMap();
|
|
749
1027
|
return cached?.text ?? "";
|
|
750
1028
|
}
|
|
@@ -772,6 +1050,7 @@ export {
|
|
|
772
1050
|
buildIndex,
|
|
773
1051
|
buildIndexWithCache,
|
|
774
1052
|
defaultCachePath,
|
|
1053
|
+
extractAll,
|
|
775
1054
|
extractSymbols,
|
|
776
1055
|
findRepoRoot,
|
|
777
1056
|
inject,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/buildIndex.ts","../src/extract.ts","../src/scan.ts","../src/store.ts","../src/types.ts","../src/search.ts","../src/repomap.ts","../src/tools.ts","../src/config.ts","../src/index.ts"],"sourcesContent":["/** Build a RepoIndex for a workspace: scan -> extract -> persist. */\n\nimport { readFile, stat } from 'node:fs/promises'\nimport path from 'node:path'\nimport { extractSymbols, languageForFile } from './extract.js'\nimport { scanRepo, DEFAULT_EXCLUDED_DIRS } from './scan.js'\nimport {\n cacheKeyForRoot,\n defaultCachePath,\n legacyCachePath,\n loadIndex,\n saveIndex,\n} from './store.js'\nimport type { IndexOptions, IndexedFile, RepoIndex } from './types.js'\n\n/**\n * Full build: scan + extract every supported file. Existing per-file\n * extraction is reused when `previous` holds an identical mtime for the\n * same rel path (incremental refresh), so touched files alone re-parse.\n */\nexport async function buildIndex(\n root: string,\n options: IndexOptions = {},\n previous: RepoIndex | null = null,\n): Promise<RepoIndex> {\n const scanned = await scanRepo(root, options)\n\n // Index stale/current state from the previous run by rel path.\n const prevByPath = new Map((previous?.files ?? []).map((f) => [f.path, f]))\n const prevMtime = new Map((previous?.files ?? []).map((f) => [f.path, f.mtimeMs]))\n\n const files: IndexedFile[] = []\n const BATCH = 8\n for (let i = 0; i < scanned.length; i += BATCH) {\n const batch = scanned.slice(i, i + BATCH)\n const rows = await Promise.all(\n batch.map(async (f) => {\n const lang = languageForFile(f.abs)\n if (!lang) return null\n if (prevMtime.get(f.rel) === f.mtimeMs) {\n const cached = prevByPath.get(f.rel)!\n return {\n ...cached,\n mtimeMs: f.mtimeMs,\n symbols: cached.symbols.map((symbol) => ({ ...symbol, file: f.rel })),\n }\n }\n let code: string\n try {\n code = await readFile(f.abs, 'utf8')\n } catch {\n return null\n }\n const symbols = await extractSymbols(code, lang)\n // Backfill the repo-relative path: the extractor is file-agnostic and\n // leaves SymbolInfo.file empty, but search/render depend on it.\n return {\n path: f.rel,\n lang,\n mtimeMs: f.mtimeMs,\n symbols: symbols.map((s) => ({ ...s, file: f.rel })),\n } satisfies IndexedFile\n }),\n )\n for (const f of rows) {\n if (f) files.push(f)\n }\n }\n\n return {\n root,\n generatedAt: Date.now(),\n files,\n excludedDirs: [...DEFAULT_EXCLUDED_DIRS, ...(options.excludeDirs ?? [])],\n }\n}\n\n/** Convenience wrapper: evolve an on-disk cache if `root` exists. */\nexport async function buildIndexWithCache(\n root: string,\n options: IndexOptions = {},\n cacheDir?: string,\n): Promise<RepoIndex> {\n const cachePath = defaultCachePath(root, cacheDir)\n let prev = await loadIndex(cachePath)\n let loadedLegacy = false\n if (!prev) {\n const oldPath = legacyCachePath(root, cacheDir)\n if (oldPath !== cachePath) {\n prev = await loadIndex(oldPath)\n loadedLegacy = prev !== null\n }\n }\n const reusable = prev && cacheKeyForRoot(prev.root) === cacheKeyForRoot(root) ? prev : null\n const fresh = await buildIndex(root, options, reusable)\n if (prev && indexesEqual(prev, fresh)) {\n if (loadedLegacy) await saveIndex(cachePath, fresh)\n return loadedLegacy ? fresh : prev\n }\n await saveIndex(cachePath, fresh)\n return fresh\n}\n\nfunction indexesEqual(left: RepoIndex, right: RepoIndex): boolean {\n if (cacheKeyForRoot(left.root) !== cacheKeyForRoot(right.root)) return false\n if (left.files.length !== right.files.length) return false\n if (left.excludedDirs.length !== right.excludedDirs.length) return false\n if (left.excludedDirs.some((value, index) => value !== right.excludedDirs[index])) return false\n\n return left.files.every((file, fileIndex) => {\n const other = right.files[fileIndex]\n if (!other || file.path !== other.path || file.lang !== other.lang || file.mtimeMs !== other.mtimeMs) {\n return false\n }\n if (file.symbols.length !== other.symbols.length) return false\n return file.symbols.every((symbol, symbolIndex) => {\n const candidate = other.symbols[symbolIndex]\n return candidate !== undefined\n && symbol.name === candidate.name\n && symbol.kind === candidate.kind\n && symbol.file === candidate.file\n && symbol.line === candidate.line\n && symbol.endLine === candidate.endLine\n && symbol.exported === candidate.exported\n && symbol.signature === candidate.signature\n })\n })\n}\n\n/**\n * Locate the git repo root for a path by walking up to the nearest `.git`\n * directory. Bounded walk (max `maxLevels` levels); returns `null` when no\n * repo marker is found — callers must NOT index an untagged directory\n * (the fs root is the classic footgun: indexing `C:\\` by accident).\n */\nexport async function findRepoRoot(startDir: string, maxLevels = 12): Promise<string | null> {\n let dir = path.resolve(startDir)\n for (let level = 0; level < maxLevels; level++) {\n try {\n // stat() accepts BOTH a `.git` directory (normal repos) and a `.git`\n // file (worktrees / submodules) — readFile only handled the file form.\n await stat(path.join(dir, '.git'))\n return dir\n } catch {\n // not a repo here — keep walking\n }\n const parent = path.dirname(dir)\n if (parent === dir) return null\n dir = parent\n }\n return null\n}\n","/**\n * tree-sitter symbol extraction.\n *\n * Parses a source text with a per-language grammar (web-tree-sitter WASM,\n * static grammars from tree-sitter-wasms) and returns flat SymbolInfo rows.\n *\n * NOTE on the dependency pin: web-tree-sitter must stay at ^0.20.x — newer\n * releases expect dylinked grammar wasm, while tree-sitter-wasms ships\n * static builds. Verified working pair: web-tree-sitter@0.20.8 + tree-sitter-wasms@0.1.13.\n */\n\nimport { readFile } from 'node:fs/promises'\nimport { createRequire } from 'node:module'\nimport path from 'node:path'\nimport Parser from 'web-tree-sitter'\nimport type { SymbolInfo, SymbolKind } from './types.js'\n\nconst require = createRequire(import.meta.url)\n// web-tree-sitter@0.20.8 is CJS `export = Parser`; default-interop gives the class directly.\n\nexport type LanguageId = 'typescript' | 'javascript'\n\nconst WASM_DIR = path.dirname(require.resolve('tree-sitter-wasms/out/tree-sitter-typescript.wasm'))\n\nconst EXT_TO_LANG: Record<string, LanguageId> = {\n '.ts': 'typescript',\n '.tsx': 'typescript',\n '.mts': 'typescript',\n '.cts': 'typescript',\n '.js': 'javascript',\n '.jsx': 'javascript',\n '.mjs': 'javascript',\n '.cjs': 'javascript',\n}\n\nexport function languageForFile(filePath: string): LanguageId | null {\n const ext = path.extname(filePath).toLowerCase()\n return EXT_TO_LANG[ext] ?? null\n}\n\n/** Kind of a capture per query. */\ntype CaptureDef = { kind: SymbolKind; exported?: boolean }\n\n// Query definitions per language. Captures bind to the DECLARATION node\n// (capture OUTSIDE the pattern: `(function_declaration) @function` — the\n// 0.20 query parser rejects a capture sitting directly after the node type\n// inside the parens). Names/signatures/export come from node fields.\nconst QUERIES: Record<LanguageId, string> = {\n typescript: `\n (function_declaration) @function\n (generator_function_declaration) @function\n (method_definition) @method\n (class_declaration) @class\n (interface_declaration) @interface\n (type_alias_declaration) @type\n (enum_declaration) @enum\n (variable_declarator) @variable\n (public_field_definition) @field\n (abstract_class_declaration) @class\n `,\n // JS shares the same query surface; type-related patterns simply never match.\n javascript: `\n (function_declaration) @function\n (generator_function_declaration) @function\n (method_definition) @method\n (class_declaration) @class\n (variable_declarator) @variable\n `,\n}\n\nconst CAPTURE_KINDS: Record<string, CaptureDef> = {\n function: { kind: 'function' },\n method: { kind: 'method' },\n class: { kind: 'class' },\n interface: { kind: 'interface' },\n type: { kind: 'type' },\n enum: { kind: 'enum' },\n variable: { kind: 'variable' },\n field: { kind: 'field' },\n}\n\nlet parserPromise: Promise<Parser> | null = null\n\nasync function getParser(): Promise<Parser> {\n if (!parserPromise) {\n parserPromise = (async () => {\n const wasm = path.join(path.dirname(require.resolve('web-tree-sitter')), 'tree-sitter.wasm')\n await Parser.init({ locateFile: () => wasm })\n const p = new Parser()\n return p\n })()\n }\n return parserPromise\n}\n\nconst languageCache = new Map<LanguageId, Promise<Parser.Language>>()\n\nfunction getLanguage(id: LanguageId): Promise<Parser.Language> {\n let entry = languageCache.get(id)\n if (!entry) {\n entry = getParser().then(async (parser) => {\n const grammarName = id === 'typescript' ? 'tree-sitter-typescript' : 'tree-sitter-javascript'\n const grammarPath = path.join(WASM_DIR, `${grammarName}.wasm`)\n const bytes = await readFile(grammarPath)\n const lang = await Parser.Language.load(bytes)\n // Precompile queries per language to catch authoring errors early.\n const q = lang.query(QUERIES[id])\n q.delete()\n return lang\n })\n languageCache.set(id, entry)\n }\n return entry\n}\n\n/**\n * Extract all top-level symbols from source text of the given language.\n * Returns rows ordered by file line. Never throws for parse errors — a\n * failed parse yields an empty list (the caller logs and continues).\n */\nexport async function extractSymbols(code: string, id: LanguageId): Promise<SymbolInfo[]> {\n const lang = await getLanguage(id)\n const parser = await getParser()\n parser.setLanguage(lang)\n const tree = parser.parse(code)\n try {\n const query = lang.query(QUERIES[id])\n const rows: SymbolInfo[] = []\n try {\n const captures = query.captures(tree.rootNode)\n for (const cap of captures) {\n const def = CAPTURE_KINDS[cap.name]\n if (!def) continue\n const node = cap.node\n const name = nameOf(node)\n if (!name) continue\n rows.push({\n name,\n kind: def.kind,\n file: '', // set by the caller (extractor is file-agnostic)\n line: node.startPosition.row + 1,\n endLine: node.endPosition.row + 1,\n exported: isExported(node),\n signature: signatureFor(node),\n })\n }\n } finally {\n query.delete()\n }\n rows.sort((a, b) => a.line - b.line)\n return rows\n } finally {\n tree.delete()\n }\n}\n\n/** The declared name of a declaration node, via its `name` field. */\nfunction nameOf(node: Parser.SyntaxNode): string {\n const field = node.childForFieldName?.('name')\n if (field) return field.text.trim()\n // e.g. an anonymous default export — skip those.\n return ''\n}\n\n/** Best-effort declaration signature: `name` + parameter list, if any. */\nfunction signatureFor(node: Parser.SyntaxNode): string {\n const name = nameOf(node)\n const params = node.namedChildren.find(\n (c) => c.type === 'formal_parameters' || c.type === 'method_parameters',\n )\n if (params) {\n return `${name}${params.text}`\n }\n const first = node.namedChildren[0]\n return first ? first.text.trim() : name\n}\n\n/** A node is exported when it sits directly inside an `export_statement`. */\nfunction isExported(node: Parser.SyntaxNode): boolean {\n let parent = node.parent\n let depth = 0\n while (parent && depth < 3) {\n if (parent.type === 'export_statement') return true\n if (parent.type === 'statement_block') return false\n parent = parent.parent\n depth++\n }\n return false\n}\n\n/** Compile a symbol query for a code sample (used by tests). */\nexport async function parseFileToSymbols(\n filePath: string,\n repoRoot: string,\n code?: string,\n): Promise<SymbolInfo[]> {\n const lang = languageForFile(filePath)\n if (!lang) return []\n const text = code ?? (await readFile(filePath, 'utf8'))\n const rows = await extractSymbols(text, lang)\n const rel = path.relative(repoRoot, filePath).split(path.sep).join('/')\n return rows.map((r) => ({ ...r, file: rel }))\n}","/** Workspace file discovery with dir exclusions and mtime tracking. */\n\nimport { readdir, stat } from 'node:fs/promises'\nimport path from 'node:path'\nimport type { IndexOptions } from './types.js'\n\nexport const DEFAULT_EXCLUDED_DIRS = [\n 'node_modules',\n '.git',\n '.idea',\n '.vscode',\n 'dist',\n 'build',\n 'out',\n 'coverage',\n '.next',\n '.nuxt',\n '.cache',\n 'target',\n 'vendor',\n '.dsh-code-index',\n]\n\n/** Language-agnostic source extensions we index. */\nexport const SUPPORTED_EXTS = new Set([\n '.ts',\n '.tsx',\n '.mts',\n '.cts',\n '.js',\n '.jsx',\n '.mjs',\n '.cjs',\n])\n\nexport interface ScannedFile {\n /** Absolute path on disk. */\n abs: string\n /** Repo-relative path (forward-slash). */\n rel: string\n mtimeMs: number\n}\n\n/**\n * Recursively walk `root` and return indexed files, skipping excluded dir\n * components at any depth. Uses readdir with `withFileTypes` so we never\n * stat every entry; mtime comes from a targeted stat per candidate file.\n */\nexport async function scanRepo(\n root: string,\n options: IndexOptions = {},\n): Promise<ScannedFile[]> {\n const excluded = new Set([...DEFAULT_EXCLUDED_DIRS, ...(options.excludeDirs ?? [])])\n const results: ScannedFile[] = []\n const queue: Array<[string, string]> = [[root, '']] // [absDir, relDir]\n\n while (queue.length) {\n const [absDir, relDir] = queue.pop()!\n let entries\n try {\n entries = await readdir(absDir, { withFileTypes: true })\n } catch {\n continue // unreadable dir: skip into the void\n }\n for (const entry of entries) {\n const abs = path.join(absDir, entry.name)\n const rel = relDir ? `${relDir}/${entry.name}` : entry.name\n if (entry.isDirectory()) {\n if (excluded.has(entry.name)) continue\n queue.push([abs, rel])\n } else if (entry.isFile() && SUPPORTED_EXTS.has(path.extname(entry.name).toLowerCase())) {\n try {\n const st = await stat(abs)\n results.push({ abs, rel, mtimeMs: st.mtimeMs })\n } catch {\n // race: file deleted mid-scan — ignore\n }\n }\n }\n }\n\n results.sort((a, b) => a.rel.localeCompare(b.rel))\n return results\n}","/** On-disk JSON cache for RepoIndex, keyed by repo root. */\n\nimport { mkdir, readFile, rename, rm, writeFile } from 'node:fs/promises'\nimport path from 'node:path'\nimport { createHash, randomUUID } from 'node:crypto'\nimport type { RepoIndex } from './types.js'\n\nexport const CACHE_DIR_NAME = '.dsh-code-index'\n\n/** Stable root identity for cache hashing, including Windows case aliases. */\nexport function cacheKeyForRoot(root: string): string {\n const resolved = path.resolve(root)\n return process.platform === 'win32' ? resolved.toLowerCase() : resolved\n}\n\n/** Default cache location: `<repoRoot>/.dsh-code-index/index.json`. */\nexport function defaultCachePath(root: string, cacheDir?: string): string {\n const dir = cacheDir ?? path.join(root, CACHE_DIR_NAME)\n const hash = createHash('sha1').update(cacheKeyForRoot(root)).digest('hex').slice(0, 12)\n return path.join(dir, `${hash}.json`)\n}\n\n/** Cache filename used before Windows root casing was canonicalized. */\nexport function legacyCachePath(root: string, cacheDir?: string): string {\n const dir = cacheDir ?? path.join(root, CACHE_DIR_NAME)\n const hash = createHash('sha1').update(root).digest('hex').slice(0, 12)\n return path.join(dir, `${hash}.json`)\n}\n\nexport async function loadIndex(cachePath: string): Promise<RepoIndex | null> {\n try {\n const raw = await readFile(cachePath, 'utf8')\n const parsed = JSON.parse(raw) as RepoIndex\n if (!parsed || typeof parsed.root !== 'string' || !Array.isArray(parsed.files)) return null\n return parsed\n } catch {\n return null // missing or corrupt cache == no cache\n }\n}\n\nexport async function saveIndex(cachePath: string, index: RepoIndex): Promise<void> {\n await mkdir(path.dirname(cachePath), { recursive: true })\n const temporaryPath = `${cachePath}.${process.pid}.${randomUUID()}.tmp`\n try {\n await writeFile(temporaryPath, JSON.stringify(index, null, 2), { encoding: 'utf8', flag: 'wx' })\n await rename(temporaryPath, cachePath)\n } finally {\n await rm(temporaryPath, { force: true })\n }\n}\n","/** Shared data model for dsh-code-index. */\n\nexport type SymbolKind =\n | 'function'\n | 'method'\n | 'class'\n | 'interface'\n | 'type'\n | 'enum'\n | 'variable'\n | 'field'\n | 'import'\n | 'module'\n\nexport interface SymbolInfo {\n /** Symbol name (identifier / type id / member name). */\n name: string\n kind: SymbolKind\n /** Repo-relative path of the containing file, always forward-slash. */\n file: string\n /** 1-based start line. */\n line: number\n /** 1-based end line (inclusive). */\n endLine: number\n /** True when the symbol is exported at module level (export .. / export default). */\n exported: boolean\n /** Short human-readable signature, e.g. `greet(name: string)` — empty when n/a. */\n signature: string\n}\n\nexport interface IndexedFile {\n /** Repo-relative path (forward-slash). */\n path: string\n lang: string\n /** fs mtime of the source file at index time (milliseconds). */\n mtimeMs: number\n symbols: SymbolInfo[]\n}\n\nexport interface RepoIndex {\n /** Absolute source root this index describes. */\n root: string\n /** Unix ms when the index was generated. */\n generatedAt: number\n files: IndexedFile[]\n excludedDirs: string[]\n}\n\nexport function symbolCount(index: RepoIndex): number {\n return index.files.reduce((n, f) => n + f.symbols.length, 0)\n}\n\n/** Optional config consumed by the index build pipeline. */\nexport interface IndexOptions {\n /** Extra directories to exclude, appended to the defaults. */\n excludeDirs?: string[]\n /** Minimum mtime delta (ms) that forces a re-extract in refresh mode. */\n staleToleranceMs?: number\n}","/** Pure search / filter logic over a RepoIndex — unit-testable, no IO. */\n\nimport type { RepoIndex, SymbolInfo, SymbolKind } from './types.js'\n\nexport interface SymbolFilter {\n query?: string\n file?: string\n kind?: SymbolKind\n exportedOnly?: boolean\n}\n\nexport interface RankedHit extends SymbolInfo {\n /** 0..1 relevance. 1 = exact name match; lower = fuzzier. */\n score: number\n}\n\nfunction matchScore(name: string, query: string): number {\n const q = query.toLowerCase()\n const n = name.toLowerCase()\n if (n === q) return 1\n if (n.startsWith(q)) return 0.8\n if (n.includes(q)) return 0.5\n return 0\n}\n\n/** Filter symbols by file/kind/export, then score by name against query (if any). */\nexport function searchSymbols(\n index: RepoIndex,\n filter: SymbolFilter,\n limit = 50,\n): RankedHit[] {\n const q = (filter.query ?? '').trim()\n const filePat = filter.file?.trim().toLowerCase()\n const hits: RankedHit[] = []\n\n for (const file of index.files) {\n if (filePat && !file.path.toLowerCase().includes(filePat)) continue\n for (const sym of file.symbols) {\n if (filter.kind && sym.kind !== filter.kind) continue\n if (filter.exportedOnly && !sym.exported) continue\n const score = q ? matchScore(sym.name, q) : 0.4\n if (q && score === 0) continue\n hits.push({ ...sym, score })\n }\n }\n\n // Export boost, then relevance, then stable name order.\n hits.sort((a, b) => {\n const ab =\n Number(b.exported) - Number(a.exported) ||\n b.score - a.score ||\n a.name.localeCompare(b.name) ||\n a.file.localeCompare(b.file)\n return ab\n })\n return hits.slice(0, limit)\n}\n\n/** Neat one-line rendering of a hit for terminal/chat output. */\nexport function renderHit(hit: RankedHit): string {\n const exportMark = hit.exported ? 'export ' : ''\n const sig = hit.signature || hit.name\n const score = hit.score < 1 ? ` [${hit.score.toFixed(2)}]` : ''\n return `${exportMark}${hit.kind} ${sig}${score} — ${hit.file}:${hit.line}`\n}","/**\n * Bounded, ranked repo map generation — the \"aider-style\" overview the model\n * can turn to before browsing files. Pure logic, no IO.\n */\n\nimport type { IndexedFile, RepoIndex, SymbolInfo, SymbolKind } from './types.js'\n\n/** Higher-weight symbols pull their file up the map. */\nexport const KIND_WEIGHT: Record<SymbolKind, number> = {\n class: 1.0,\n interface: 1.0,\n type: 0.8,\n function: 0.8,\n method: 0.7,\n enum: 0.9,\n variable: 0.25,\n field: 0.2,\n import: 0.05,\n module: 0.3,\n}\n\nexport interface RepoMapOptions {\n /** Max files to include (default 24). */\n topFiles?: number\n /** Max symbols per file (default 18). */\n symbolsPerFile?: number\n /** Hard cap on rendered characters (default 3200). */\n maxChars?: number\n}\n\nexport interface RepoMapEntry {\n path: string\n score: number\n symbols: Array<{ name: string; kind: SymbolKind; line: number; signature: string }>\n}\n\n/** Density-aware file score: weighted symbols minus bloat. */\nexport function scoreFile(file: IndexedFile): number {\n let score = 0\n for (const sym of file.symbols) {\n score += KIND_WEIGHT[sym.kind] ?? 0.3\n if (sym.exported) score += 0.3\n }\n return score / (1 + file.symbols.length * 0.04)\n}\n\n/** Rank files, take the top slice, cap per-file symbols. */\nexport function rankRepoMap(index: RepoIndex, options: RepoMapOptions = {}): RepoMapEntry[] {\n const topFiles = options.topFiles ?? 24\n const perFile = options.symbolsPerFile ?? 18\n const ranked = index.files\n .filter((f) => f.symbols.length > 0)\n .map((f) => ({ file: f, score: scoreFile(f) }))\n .sort((a, b) => b.score - a.score || a.file.path.localeCompare(b.file.path))\n .slice(0, topFiles)\n\n return ranked.map(({ file, score }) => ({\n path: file.path,\n score,\n symbols: file.symbols.slice(0, perFile).map((s) => ({\n name: s.name,\n kind: s.kind,\n line: s.line,\n signature: s.signature,\n })),\n }))\n}\n\n/** Render the ranked map as markdown, hard-truncated to maxChars. */\nexport function renderRepoMap(entries: RepoMapEntry[], options: RepoMapOptions = {}): string {\n const maxChars = options.maxChars ?? 3200\n const lines: string[] = ['# repo map']\n let totalSymbols = 0\n for (const e of entries) {\n totalSymbols += e.symbols.length\n lines.push(`## ${e.path} (${e.symbols.length})`)\n for (const s of e.symbols) {\n const label = s.signature || s.name\n lines.push(` ${s.kind} ${label} :${s.line}`)\n }\n }\n let text = lines.join('\\n')\n if (text.length > maxChars) {\n text = `${text.slice(0, maxChars)}\\n… truncated`\n }\n return totalSymbols > 0 ? text : ''\n}","/** Model-visible tools: code_index, code_symbols, code_search. */\n\nimport { defineTool, type JsonValue } from '@deepseek-ai/dsh-tools'\nimport path from 'node:path'\nimport { buildIndexWithCache, findRepoRoot } from './buildIndex.js'\nimport { renderHit, searchSymbols } from './search.js'\nimport { rankRepoMap, renderRepoMap } from './repomap.js'\nimport { getConfig, indexOptions } from './config.js'\nimport { cacheKeyForRoot } from './store.js'\nimport type { RepoIndex } from './types.js'\n\n/** Minimal structural types for the harness surfaces we touch. */\ninterface ToolCwdContext {\n agent?: {\n session?: { header?: { cwd?: string } }\n }\n}\ntype ToolRunExec = ToolCwdContext & { signal?: AbortSignal }\n\ninterface TextBlock {\n type: 'text'\n text: string\n}\n\nexport interface IndexCache {\n get(root: string, force?: boolean): Promise<RepoIndex>\n invalidate(): void\n}\n\n/** Retain completed indexes briefly while still coalescing concurrent refreshes. */\nexport function createIndexCache(\n load: (root: string) => Promise<RepoIndex>,\n ttlMs = 60_000,\n now: () => number = Date.now,\n): IndexCache {\n interface CompletedEntry {\n index: RepoIndex\n at: number\n epoch: number\n }\n interface LoadEntry {\n promise: Promise<RepoIndex>\n epoch: number\n }\n\n const completed = new Map<string, CompletedEntry>()\n const inFlight = new Map<string, LoadEntry>()\n let epoch = 0\n\n function startLoad(key: string, root: string, previous?: Promise<RepoIndex>): Promise<RepoIndex> {\n const loadEpoch = epoch\n const begin = previous\n ? previous.catch(() => undefined).then(() => load(root))\n : load(root)\n const promise = begin\n .then((index) => {\n if (loadEpoch === epoch) {\n completed.delete(key)\n completed.set(key, { index, at: now(), epoch: loadEpoch })\n while (completed.size > 16) completed.delete(completed.keys().next().value!)\n }\n return index\n })\n .finally(() => {\n if (inFlight.get(key)?.promise === promise) inFlight.delete(key)\n })\n inFlight.set(key, { promise, epoch: loadEpoch })\n return promise\n }\n\n return {\n get(root, force = false) {\n const resolvedRoot = path.resolve(root)\n const key = cacheKeyForRoot(resolvedRoot)\n const running = inFlight.get(key)\n if (running) {\n if (running.epoch === epoch && !force) return running.promise\n return startLoad(key, resolvedRoot, running.promise)\n }\n\n if (!force) {\n const cached = completed.get(key)\n if (cached && cached.epoch === epoch && now() - cached.at < ttlMs) {\n completed.delete(key)\n completed.set(key, cached)\n return Promise.resolve(cached.index)\n }\n if (cached) completed.delete(key)\n } else {\n completed.delete(key)\n }\n return startLoad(key, resolvedRoot)\n },\n invalidate() {\n epoch++\n completed.clear()\n },\n }\n}\n\nconst indexCache = createIndexCache((root) => buildIndexWithCache(root, indexOptions()))\n\nexport function getIndex(root: string, force = false): Promise<RepoIndex> {\n return indexCache.get(root, force)\n}\n\nexport function invalidateIndexCache(): void {\n indexCache.invalidate()\n}\n\nasync function resolveRoot(arg: string | undefined, exec: ToolRunExec): Promise<string> {\n const cwd = exec.agent?.session?.header?.cwd\n const base = arg ?? cwd ?? process.cwd()\n const root = await findRepoRoot(base)\n if (!root) throw new Error(`no git repository found from ${path.resolve(base)}`)\n return root\n}\n\nexport const tools = [\n defineTool({\n name: 'code_index',\n description:\n 'Manage the semantic repo index: status or (re)build it for the current workspace. Auto-builds the first time it is queried. Returns file/symbol counts and the index location.',\n parameters: {\n action: {\n type: 'string',\n enum: ['status', 'build'],\n description: '\"status\" (default) reports without forcing a rebuild; \"build\" forces a fresh scan.',\n },\n repoRoot: {\n type: 'string',\n description:\n 'Optional absolute repo path. Defaults to the workspace root of the current session.',\n },\n },\n output: {\n schema: { type: 'string' },\n render: (_args, value: string): TextBlock[] => [{ type: 'text', text: value }],\n },\n async execute(args: { action?: string; repoRoot?: string }, exec: ToolRunExec): Promise<string> {\n try {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root, args.action === 'build')\n const total = index.files.reduce((n, f) => n + f.symbols.length, 0)\n const langs = new Set(index.files.map((f) => f.lang))\n return [\n `repo: ${root}`,\n `files indexed: ${index.files.length}`,\n `symbols: ${total}`,\n `languages: ${[...langs].join(', ')}`,\n index.files.length === 0 ? 'no supported files found' : 'index up to date',\n ].join('\\n')\n } catch (error) {\n return `code_index: ${(error as Error).message ?? String(error)}`\n }\n },\n }),\n\n defineTool({\n name: 'code_symbols',\n description:\n 'List symbols (functions, classes, interfaces, types, methods, variables) in the current repo. Filter by name substring, file path substring, or symbol kind. Results are exported-first, alphabetically ordered.',\n parameters: {\n query: {\n type: 'string',\n description: 'Substring of the symbol name to match (case-insensitive). Omit to list all.',\n },\n file: {\n type: 'string',\n description: 'Substring of the repo-relative file path to match, e.g. \"src/core\".',\n },\n kind: {\n type: 'string',\n enum: ['function', 'method', 'class', 'interface', 'type', 'enum', 'variable', 'field'],\n description: 'Only return symbols of this kind.',\n },\n exportedOnly: {\n type: 'boolean',\n description: 'Only exported (module-level public) symbols.',\n },\n limit: {\n type: 'number',\n description: 'Max rows (default 50).',\n },\n repoRoot: {\n type: 'string',\n description: 'Optional absolute repo path; defaults to the session workspace root.',\n },\n },\n output: {\n schema: { type: 'array' },\n render: (_args, value: JsonValue[]): TextBlock[] =>\n value.map((v) => ({\n type: 'text' as const,\n text: renderHit(v as unknown as Parameters<typeof renderHit>[0]),\n })),\n },\n async execute(\n args: {\n query?: string\n file?: string\n kind?: 'function' | 'method' | 'class' | 'interface' | 'type' | 'enum' | 'variable' | 'field'\n exportedOnly?: boolean\n limit?: number\n repoRoot?: string\n },\n exec: ToolRunExec,\n ): Promise<JsonValue[]> {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root)\n const hits = searchSymbols(\n index,\n { query: args.query, file: args.file, kind: args.kind, exportedOnly: args.exportedOnly },\n args.limit ?? 50,\n )\n return hits as unknown as JsonValue[]\n },\n }),\n\n defineTool({\n name: 'code_search',\n description:\n 'Ranked symbol search over the repo index: exact > prefix > substring name matches, exported symbols first. Results carry a relevance score and file:line, so the model can locate definitions quickly.',\n parameters: {\n query: {\n type: 'string',\n required: true,\n description: 'Symbol name (or fragment) to find.',\n },\n limit: {\n type: 'number',\n description: 'Max hits (default 20).',\n },\n repoRoot: {\n type: 'string',\n description: 'Optional absolute repo path; defaults to the session workspace root.',\n },\n },\n output: {\n schema: { type: 'array' },\n render: (_args, value: JsonValue[]): TextBlock[] =>\n value.map((v) => ({\n type: 'text' as const,\n text: renderHit(v as unknown as Parameters<typeof renderHit>[0]),\n })),\n },\n async execute(\n args: { query: string; limit?: number; repoRoot?: string },\n exec: ToolRunExec,\n ): Promise<JsonValue[]> {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root)\n const hits = searchSymbols(index, { query: args.query }, args.limit ?? 20)\n return hits as unknown as JsonValue[]\n },\n }),\n\n defineTool({\n name: 'code_map',\n description:\n 'Return a bounded, ranked map of the current repo (top files by symbol density, with their key symbols and lines). The model can call this once per session to build an internal model of the codebase before browsing files.',\n parameters: {\n repoRoot: {\n type: 'string',\n description: 'Optional absolute repo path; defaults to the session workspace root.',\n },\n },\n output: {\n schema: { type: 'string' },\n render: (_args, value: string): TextBlock[] => [{ type: 'text', text: value }],\n },\n async execute(args: { repoRoot?: string }, exec: ToolRunExec): Promise<string> {\n try {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root)\n const cfg = getConfig()\n const map = renderRepoMap(\n rankRepoMap(index, { topFiles: cfg.mapTopFiles }),\n { maxChars: cfg.mapMaxChars },\n )\n if (!map) return 'no indexable symbols found in this repo'\n return map\n } catch (error) {\n return `code_index: ${(error as Error).message ?? String(error)}`\n }\n },\n }),\n]\n","/** Plugin configuration: merged once at apply time, read wherever needed. */\n\nimport type { IndexOptions } from './types.js'\n\nexport interface PluginConfig {\n /** Extra directories to exclude from indexing (appended to defaults). */\n excludeDirs?: string[]\n /** Max files in the ranked repo map (code_map / auto section). */\n mapTopFiles?: number\n /** Hard char cap for rendered maps. */\n mapMaxChars?: number\n /** Set false to disable the auto-injected system section. */\n autoInject?: boolean\n}\n\ninterface EffectiveConfig {\n excludeDirs: string[]\n mapTopFiles: number\n mapMaxChars: number\n autoInject: boolean\n}\n\nconst DEFAULTS: EffectiveConfig = {\n excludeDirs: [],\n mapTopFiles: 24,\n mapMaxChars: 3200,\n autoInject: true,\n}\n\nconst state: { current: EffectiveConfig } = { current: { ...DEFAULTS } }\n\n/** Merge a plugin-provided partial config over the defaults (idempotent). */\nexport function applyConfig(partial?: PluginConfig): void {\n state.current = {\n ...DEFAULTS,\n ...(partial ?? {}),\n excludeDirs: [...DEFAULTS.excludeDirs, ...(partial?.excludeDirs ?? [])],\n }\n // Coerce obviously wrong inputs.\n if (!Number.isFinite(state.current.mapTopFiles) || state.current.mapTopFiles < 1) {\n state.current.mapTopFiles = DEFAULTS.mapTopFiles\n }\n if (!Number.isFinite(state.current.mapMaxChars) || state.current.mapMaxChars < 200) {\n state.current.mapMaxChars = DEFAULTS.mapMaxChars\n }\n}\n\nexport function getConfig(): Readonly<EffectiveConfig> {\n return state.current\n}\n\n/** Map the effective config onto the index pipeline options. */\nexport function indexOptions(): IndexOptions {\n return { excludeDirs: state.current.excludeDirs }\n}","/**\n * dsh-code-index — DeepSeek Harness bundle entry.\n *\n * Registers four model-visible tools (code_index / code_symbols /\n * code_search / code_map) backed by a tree-sitter symbol index, and\n * injects a bounded auto-updating repo map for the default workspace\n * into the system prompt.\n */\n\ntype Disposer = void | (() => void)\n\n/** Minimal structural Context; the real @deepseek-ai/cordis type is a\n * runtime dependency we intentionally do not import in the bundle entry. */\ninterface MinimalContext {\n effect(fn: () => Disposer): void\n tools: { register(t: unknown): () => void }\n systemPrompt: {\n section(section: {\n name: string\n order: number\n text: string | ((context: unknown) => string)\n }): () => void\n }\n}\n\nexport const name = 'dsh-code-index'\n\n// Public API surface (consumable by other bundles / tests).\nexport { buildIndex, buildIndexWithCache, findRepoRoot } from './buildIndex.js'\nexport { extractSymbols, languageForFile, parseFileToSymbols } from './extract.js'\nexport { scanRepo, DEFAULT_EXCLUDED_DIRS, SUPPORTED_EXTS } from './scan.js'\nexport { loadIndex, saveIndex, defaultCachePath, CACHE_DIR_NAME } from './store.js'\nexport { symbolCount } from './types.js'\nexport type { RepoIndex, IndexedFile, SymbolInfo, SymbolKind, IndexOptions } from './types.js'\nexport { searchSymbols, renderHit } from './search.js'\nexport { rankRepoMap, renderRepoMap, scoreFile } from './repomap.js'\nexport { tools } from './tools.js'\n\nimport { getIndex, invalidateIndexCache, tools } from './tools.js'\nimport { findRepoRoot } from './buildIndex.js'\nimport { rankRepoMap, renderRepoMap } from './repomap.js'\nimport { symbolCount } from './types.js'\nimport { applyConfig, getConfig, type PluginConfig } from './config.js'\n\nexport const inject = ['tools', 'systemPrompt'] as const\n\n/** TTL for the auto-injected repo map (seconds). */\nconst MAP_TTL_MS = 60_000\n\nexport function apply(ctx: MinimalContext, pluginConfig?: PluginConfig) {\n applyConfig(pluginConfig)\n invalidateIndexCache()\n ctx.effect(() => {\n const disposers: Array<() => void> = []\n console.log('[dsh-code-index] plugin loaded')\n for (const tool of tools) {\n disposers.push(ctx.tools.register(tool))\n console.log(`[dsh-code-index] registered tool: ${tool.name}`)\n }\n\n // Auto-inject a bounded repo map for the DEFAULT workspace (the dsh\n // launch directory, per the harness docs). Multi-workspace web sessions\n // should rely on the `code_map` tool, which resolves the per-session cwd.\n let cached: { root: string; at: number; text: string } | null = null\n\n async function warmMap(): Promise<void> {\n const now = Date.now()\n const cfg = getConfig()\n try {\n const root = await findRepoRoot(process.cwd())\n if (!root) {\n cached = { root: '', at: now, text: '' }\n return\n }\n const index = await getIndex(root)\n const text = renderRepoMap(\n rankRepoMap(index, { topFiles: cfg.mapTopFiles }),\n { maxChars: cfg.mapMaxChars },\n )\n const stats = symbolCount(index)\n cached = {\n root: index.root,\n at: Date.now(),\n text: text ? `${text}\\n\\n(summary: ${index.files.length} files, ${stats} symbols)` : '',\n }\n } catch {\n cached = { root: '', at: now, text: '' } // never let injection fail the boot\n }\n }\n\n // Warm eagerly at load so the first assembly already has the map.\n void warmMap()\n\n if (getConfig().autoInject) {\n disposers.push(ctx.systemPrompt.section({\n name: 'code-index:repo-map',\n order: 60, // before tool guidance (100–199), after persona (0)\n text: () => {\n const now = Date.now()\n if (cached && now - cached.at < MAP_TTL_MS) return cached.text\n void warmMap()\n return cached?.text ?? ''\n },\n }))\n }\n\n return () => {\n const errors: unknown[] = []\n for (const dispose of disposers.reverse()) {\n try {\n dispose()\n } catch (error) {\n errors.push(error)\n }\n }\n console.log('[dsh-code-index] plugin unloaded')\n if (errors.length > 0) throw new AggregateError(errors, 'failed to unload dsh-code-index')\n }\n })\n}\n"],"mappings":"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","names":["readFile","stat","path","require","name","path","readFile","path","readFile","path","stat","name","path","path"]}
|
|
1
|
+
{"version":3,"sources":["../src/buildIndex.ts","../src/extract.ts","../src/scan.ts","../src/store.ts","../src/types.ts","../src/search.ts","../src/repomap.ts","../src/tools.ts","../src/config.ts","../src/index.ts"],"sourcesContent":["/** Build a RepoIndex for a workspace: scan -> extract -> persist. */\n\nimport { readFile, stat } from 'node:fs/promises'\nimport path from 'node:path'\nimport { extractAll, languageForFile } from './extract.js'\nimport { scanRepo, DEFAULT_EXCLUDED_DIRS } from './scan.js'\nimport {\n cacheKeyForRoot,\n defaultCachePath,\n legacyCachePath,\n loadIndex,\n saveIndex,\n} from './store.js'\nimport type { IndexOptions, IndexedFile, RepoIndex } from './types.js'\n\n/**\n * Full build: scan + extract every supported file. Existing per-file\n * extraction is reused when `previous` holds an identical mtime for the\n * same rel path (incremental refresh), so touched files alone re-parse.\n */\nexport async function buildIndex(\n root: string,\n options: IndexOptions = {},\n previous: RepoIndex | null = null,\n): Promise<RepoIndex> {\n const scanned = await scanRepo(root, options)\n\n // Index stale/current state from the previous run by rel path.\n const prevByPath = new Map((previous?.files ?? []).map((f) => [f.path, f]))\n const prevMtime = new Map((previous?.files ?? []).map((f) => [f.path, f.mtimeMs]))\n\n const files: IndexedFile[] = []\n const BATCH = 8\n for (let i = 0; i < scanned.length; i += BATCH) {\n const batch = scanned.slice(i, i + BATCH)\n const rows = await Promise.all(\n batch.map(async (f) => {\n const lang = languageForFile(f.abs)\n if (!lang) return null\n if (prevMtime.get(f.rel) === f.mtimeMs) {\n const cached = prevByPath.get(f.rel)!\n return {\n ...cached,\n mtimeMs: f.mtimeMs,\n symbols: cached.symbols.map((symbol) => ({ ...symbol, file: f.rel })),\n }\n }\n let code: string\n try {\n code = await readFile(f.abs, 'utf8')\n } catch {\n return null\n }\n const { symbols, imports } = await extractAll(code, lang)\n // Backfill the repo-relative path: the extractor is file-agnostic and\n // leaves SymbolInfo.file empty, but search/render depend on it.\n return {\n path: f.rel,\n lang,\n mtimeMs: f.mtimeMs,\n symbols: symbols.map((s) => ({ ...s, file: f.rel })),\n imports,\n } satisfies IndexedFile\n }),\n )\n for (const f of rows) {\n if (f) files.push(f)\n }\n }\n\n return {\n root,\n generatedAt: Date.now(),\n files,\n excludedDirs: [...DEFAULT_EXCLUDED_DIRS, ...(options.excludeDirs ?? [])],\n }\n}\n\n/** Convenience wrapper: evolve an on-disk cache if `root` exists. */\nexport async function buildIndexWithCache(\n root: string,\n options: IndexOptions = {},\n cacheDir?: string,\n): Promise<RepoIndex> {\n const cachePath = defaultCachePath(root, cacheDir)\n let prev = await loadIndex(cachePath)\n let loadedLegacy = false\n if (!prev) {\n const oldPath = legacyCachePath(root, cacheDir)\n if (oldPath !== cachePath) {\n prev = await loadIndex(oldPath)\n loadedLegacy = prev !== null\n }\n }\n const reusable = prev && cacheKeyForRoot(prev.root) === cacheKeyForRoot(root) ? prev : null\n const fresh = await buildIndex(root, options, reusable)\n if (prev && indexesEqual(prev, fresh)) {\n if (loadedLegacy) await saveIndex(cachePath, fresh)\n return loadedLegacy ? fresh : prev\n }\n await saveIndex(cachePath, fresh)\n return fresh\n}\n\nfunction indexesEqual(left: RepoIndex, right: RepoIndex): boolean {\n if (cacheKeyForRoot(left.root) !== cacheKeyForRoot(right.root)) return false\n if (left.files.length !== right.files.length) return false\n if (left.excludedDirs.length !== right.excludedDirs.length) return false\n if (left.excludedDirs.some((value, index) => value !== right.excludedDirs[index])) return false\n\n return left.files.every((file, fileIndex) => {\n const other = right.files[fileIndex]\n if (!other || file.path !== other.path || file.lang !== other.lang || file.mtimeMs !== other.mtimeMs) {\n return false\n }\n if (file.symbols.length !== other.symbols.length) return false\n return file.symbols.every((symbol, symbolIndex) => {\n const candidate = other.symbols[symbolIndex]\n return candidate !== undefined\n && symbol.name === candidate.name\n && symbol.kind === candidate.kind\n && symbol.file === candidate.file\n && symbol.line === candidate.line\n && symbol.endLine === candidate.endLine\n && symbol.exported === candidate.exported\n && symbol.signature === candidate.signature\n })\n })\n}\n\n/**\n * Locate the git repo root for a path by walking up to the nearest `.git`\n * directory. Bounded walk (max `maxLevels` levels); returns `null` when no\n * repo marker is found — callers must NOT index an untagged directory\n * (the fs root is the classic footgun: indexing `C:\\` by accident).\n */\nexport async function findRepoRoot(startDir: string, maxLevels = 12): Promise<string | null> {\n let dir = path.resolve(startDir)\n for (let level = 0; level < maxLevels; level++) {\n try {\n // stat() accepts BOTH a `.git` directory (normal repos) and a `.git`\n // file (worktrees / submodules) — readFile only handled the file form.\n await stat(path.join(dir, '.git'))\n return dir\n } catch {\n // not a repo here — keep walking\n }\n const parent = path.dirname(dir)\n if (parent === dir) return null\n dir = parent\n }\n return null\n}\n","/**\n * tree-sitter symbol extraction.\n *\n * Parses a source text with a per-language grammar (web-tree-sitter WASM,\n * static grammars from tree-sitter-wasms) and returns flat SymbolInfo rows.\n *\n * NOTE on the dependency pin: web-tree-sitter must stay at ^0.20.x — newer\n * releases expect dylinked grammar wasm, while tree-sitter-wasms ships\n * static builds. Verified working pair: web-tree-sitter@0.20.8 + tree-sitter-wasms@0.1.13.\n */\n\nimport { readFile } from 'node:fs/promises'\nimport { createRequire } from 'node:module'\nimport path from 'node:path'\nimport Parser from 'web-tree-sitter'\nimport type { SymbolInfo, SymbolKind } from './types.js'\n\nconst require = createRequire(import.meta.url)\n// web-tree-sitter@0.20.8 is CJS `export = Parser`; default-interop gives the class directly.\n\nexport type LanguageId = 'typescript' | 'javascript' | 'python' | 'go' | 'rust' | 'java'\n\nconst WASM_DIR = path.dirname(require.resolve('tree-sitter-wasms/out/tree-sitter-typescript.wasm'))\n\nconst GRAMMAR_NAMES: Record<LanguageId, string> = {\n typescript: 'tree-sitter-typescript',\n javascript: 'tree-sitter-javascript',\n python: 'tree-sitter-python',\n go: 'tree-sitter-go',\n rust: 'tree-sitter-rust',\n java: 'tree-sitter-java',\n}\n\nconst EXT_TO_LANG: Record<string, LanguageId> = {\n '.ts': 'typescript',\n '.tsx': 'typescript',\n '.mts': 'typescript',\n '.cts': 'typescript',\n '.js': 'javascript',\n '.jsx': 'javascript',\n '.mjs': 'javascript',\n '.cjs': 'javascript',\n '.py': 'python',\n '.pyi': 'python',\n '.go': 'go',\n '.rs': 'rust',\n '.java': 'java',\n}\n\nexport function languageForFile(filePath: string): LanguageId | null {\n const ext = path.extname(filePath).toLowerCase()\n return EXT_TO_LANG[ext] ?? null\n}\n\n/** Kind of a capture per query. */\ntype CaptureDef = { kind: SymbolKind; exported?: boolean }\n\n// Query definitions per language. Captures bind to the DECLARATION node\n// (capture OUTSIDE the pattern: `(function_declaration) @function` — the\n// 0.20 query parser rejects a capture sitting directly after the node type\n// inside the parens). Names/signatures/export come from node fields.\nconst QUERIES: Record<LanguageId, string> = {\n typescript: `\n (function_declaration) @function\n (generator_function_declaration) @function\n (method_definition) @method\n (class_declaration) @class\n (interface_declaration) @interface\n (type_alias_declaration) @type\n (enum_declaration) @enum\n (variable_declarator) @variable\n (public_field_definition) @field\n (abstract_class_declaration) @class\n `,\n // JS shares the same query surface; type-related patterns simply never match.\n javascript: `\n (function_declaration) @function\n (generator_function_declaration) @function\n (method_definition) @method\n (class_declaration) @class\n (variable_declarator) @variable\n `,\n python: `\n (function_definition) @function\n (class_definition) @class\n `,\n go: `\n (function_declaration) @function\n (method_declaration) @method\n (type_spec) @type\n `,\n rust: `\n (function_item) @function\n (function_signature_item) @method\n (struct_item) @class\n (enum_item) @enum\n (trait_item) @interface\n `,\n java: `\n (class_declaration) @class\n (interface_declaration) @interface\n (enum_declaration) @enum\n (method_declaration) @method\n (constructor_declaration) @method\n `,\n}\n\nconst CAPTURE_KINDS: Record<string, CaptureDef> = {\n function: { kind: 'function' },\n method: { kind: 'method' },\n class: { kind: 'class' },\n interface: { kind: 'interface' },\n type: { kind: 'type' },\n enum: { kind: 'enum' },\n variable: { kind: 'variable' },\n field: { kind: 'field' },\n}\n\n// Import statements per language. Whole statements are captured; the module\n// specifier is read from node fields in code (string quoting, dotted vs\n// relative vs URL-style syntax differ per grammar). CommonJS require() is out\n// of scope — the ES import surface covers the modern plugin ecosystem.\nconst IMPORT_QUERIES: Record<LanguageId, string> = {\n typescript: `\n (import_statement) @import\n (export_statement) @reexport\n `,\n javascript: `\n (import_statement) @import\n (export_statement) @reexport\n `,\n python: `\n (import_from_statement) @import\n (import_statement) @import\n `,\n go: `\n (import_spec) @import\n `,\n rust: `\n (use_declaration) @use\n `,\n java: `\n (import_declaration) @import\n `,\n}\n\nlet parserPromise: Promise<Parser> | null = null\n\nasync function getParser(): Promise<Parser> {\n if (!parserPromise) {\n parserPromise = (async () => {\n const wasm = path.join(path.dirname(require.resolve('web-tree-sitter')), 'tree-sitter.wasm')\n await Parser.init({ locateFile: () => wasm })\n const p = new Parser()\n return p\n })()\n }\n return parserPromise\n}\n\nconst languageCache = new Map<LanguageId, Promise<Parser.Language>>()\n\nfunction getLanguage(id: LanguageId): Promise<Parser.Language> {\n let entry = languageCache.get(id)\n if (!entry) {\n entry = getParser().then(async () => {\n const grammarPath = path.join(WASM_DIR, `${GRAMMAR_NAMES[id]}.wasm`)\n const bytes = await readFile(grammarPath)\n const lang = await Parser.Language.load(bytes)\n // Precompile queries per language to catch authoring errors early.\n const q = lang.query(QUERIES[id])\n q.delete()\n const iq = lang.query(IMPORT_QUERIES[id])\n iq.delete()\n return lang\n })\n languageCache.set(id, entry)\n }\n return entry\n}\n\n/**\n * Extract symbols and raw import specifiers from source text of the given\n * language, from a single parse. Returns rows ordered by file line. Never\n * throws for parse errors — a failed parse yields empty lists (the caller\n * logs and continues).\n */\nexport interface ExtractedFile {\n symbols: SymbolInfo[]\n /** Raw module specifiers, e.g. './util', 'node:fs', './utils' (py). */\n imports: string[]\n}\n\nexport async function extractAll(code: string, id: LanguageId): Promise<ExtractedFile> {\n const lang = await getLanguage(id)\n const parser = await getParser()\n parser.setLanguage(lang)\n const tree = parser.parse(code)\n try {\n const symbols: SymbolInfo[] = []\n const symbolQuery = lang.query(QUERIES[id])\n try {\n const captures = symbolQuery.captures(tree.rootNode)\n for (const cap of captures) {\n const def = CAPTURE_KINDS[cap.name]\n if (!def) continue\n const node = cap.node\n // tree-sitter queries match at any depth; without this check the\n // variable_declarator pattern would also capture function-body\n // locals — pure index noise.\n if (def.kind === 'variable' && !isModuleLevelVariable(node)) continue\n const name = nameOf(node)\n if (!name) continue\n symbols.push({\n name,\n kind: kindFor(id, node, def.kind),\n file: '', // set by the caller (extractor is file-agnostic)\n line: node.startPosition.row + 1,\n endLine: node.endPosition.row + 1,\n exported: isExported(id, node),\n signature: signatureFor(node),\n })\n }\n } finally {\n symbolQuery.delete()\n }\n\n const imports: string[] = []\n const importQuery = lang.query(IMPORT_QUERIES[id])\n try {\n for (const cap of importQuery.captures(tree.rootNode)) {\n const spec = specifierOf(id, cap.node)\n if (spec) imports.push(spec)\n }\n } finally {\n importQuery.delete()\n }\n\n symbols.sort((a, b) => a.line - b.line)\n return { symbols, imports }\n } finally {\n tree.delete()\n }\n}\n\n/** Symbols only — see extractAll for the combined parse. */\nexport async function extractSymbols(code: string, id: LanguageId): Promise<SymbolInfo[]> {\n return (await extractAll(code, id)).symbols\n}\n\n/** The declared name of a declaration node, via its `name` field. */\nfunction nameOf(node: Parser.SyntaxNode): string {\n const field = node.childForFieldName?.('name')\n if (field) return field.text.trim()\n // e.g. an anonymous default export — skip those.\n return ''\n}\n\n/** Read the raw module specifier out of a captured import statement. */\nfunction specifierOf(id: LanguageId, node: Parser.SyntaxNode): string | null {\n switch (node.type) {\n case 'import_statement':\n // ts/js: `import … from './x'` (source); python: `import a.b` (name)\n if (id === 'python') return dottedToPath(node.childForFieldName('name')?.text)\n return stripQuotes(node.childForFieldName('source')?.text)\n case 'export_statement':\n // ts/js re-export: `export … from './x'`; plain exports have no source\n return stripQuotes(node.childForFieldName('source')?.text)\n case 'import_from_statement': {\n // python: `from .utils import x` / `from mypkg.core import Thing`\n const raw = node.childForFieldName('module_name')?.text\n if (raw == null) return null\n return raw.startsWith('.') ? pythonRelative(raw) : dottedToPath(raw)\n }\n case 'import_spec': // go: `import \"example.com/foo/util\"`\n return stripQuotes(node.childForFieldName('path')?.text)\n case 'use_declaration': // rust: `use crate::a::b::{c, d}`\n return rustUsePath(node.childForFieldName('argument')?.text)\n case 'import_declaration': // java: `import com.example.Thing;`\n return dottedToPath(node.namedChildren[0]?.text)\n default:\n return null\n }\n}\n\n/**\n * Rust use paths: 'crate::a::b' is root-relative, 'super::x' is parent-module\n * ('../x'), 'self::x' is current ('./x'); everything else (std, external\n * crates) stays root-relative and simply won't resolve in-repo. Use-lists\n * ('a::b::{c,d}') contribute their base path.\n */\nfunction rustUsePath(text: string | undefined | null): string | null {\n if (!text) return null\n const base = text.split('{')[0].trim()\n if (!base) return null\n const parts = base.split('::').filter(Boolean)\n if (parts[0] === 'crate') parts.shift()\n return parts.map((p) => (p === 'super' ? '..' : p === 'self' ? '.' : p)).join('/')\n}\n\nfunction stripQuotes(text: string | undefined | null): string | null {\n if (text == null || text.length < 2) return null\n const first = text[0]\n const last = text[text.length - 1]\n if ((first === \"'\" && last === \"'\") || (first === '\"' && last === '\"')) {\n return text.slice(1, -1)\n }\n return null\n}\n\n/** 'os.path' → 'os/path' — dotted module path to repo-relative-ish path. */\nfunction dottedToPath(text: string | undefined | null): string | null {\n if (!text) return null\n return text.trim().replace(/\\./g, '/')\n}\n\n/** '.utils' → './utils', '..pkg.mod' → '../pkg/mod' — python relative import. */\nfunction pythonRelative(raw: string): string {\n const dots = raw.match(/^\\.+/)?.[0].length ?? 0\n const rest = raw.slice(dots).replace(/\\./g, '/')\n const prefix = dots === 1 ? './' : '../'.repeat(dots - 1)\n return prefix + rest\n}\n\n/** Best-effort declaration signature: `name` + parameter list, if any. */\nfunction signatureFor(node: Parser.SyntaxNode): string {\n const name = nameOf(node)\n // Field first (go method_declaration has both a receiver and a parameters\n // parameter_list — the field picks the right one), type fallback otherwise.\n const params =\n node.childForFieldName?.('parameters') ??\n node.namedChildren.find(\n (c) =>\n c.type === 'formal_parameters' ||\n c.type === 'method_parameters' ||\n c.type === 'parameters' ||\n c.type === 'parameter_list',\n )\n if (params) {\n return `${name}${collapseSpace(params.text)}`\n }\n const first = node.namedChildren[0]\n return first ? collapseSpace(first.text) : name\n}\n\n/**\n * Signatures must stay one line: repo-map rows are budgeted per line, and a\n * multi-line parameter list would both wrap the format and burn chars.\n */\nfunction collapseSpace(text: string): string {\n return text\n .replace(/\\s+/g, ' ')\n .replace(/\\( /g, '(')\n .replace(/ \\)/g, ')')\n .replace(/ ,/g, ',')\n .replace(/,\\)/g, ')')\n .trim()\n}\n\n/**\n * A variable is indexable only at module level: its declaration must sit\n * directly inside the program (or the export_statement wrapping it). Anything\n * deeper — function bodies, blocks, for-of heads — is a local with no\n * navigation value.\n */\nfunction isModuleLevelVariable(node: Parser.SyntaxNode): boolean {\n const declaration = node.parent // variable_declaration | lexical_declaration\n const container = declaration?.parent // program | export_statement | …\n return container?.type === 'program' || container?.type === 'export_statement'\n}\n\n/**\n * A symbol is exported when walking up from it reaches an export_statement\n * before any function or class body — only module-level declarations count.\n * A method inside `export class` must NOT inherit the class's export, and a\n * function nested inside an exported function is not exported either.\n */\nfunction isExported(id: LanguageId, node: Parser.SyntaxNode): boolean {\n if (id === 'python') {\n // Python has no export syntax: a def/class directly under the module is\n // importable, anything nested (methods, inner functions) is not a\n // module-level symbol.\n return node.parent?.type === 'module'\n }\n if (id === 'go') {\n // Go exports by capitalisation, not by keyword.\n const name = nameOf(node)\n return !!name && /^[A-Z]/.test(name)\n }\n if (id === 'rust') {\n // `pub` = exported; `pub(crate)` & friends are crate-local, not public.\n return node.namedChildren.some(\n (c) => c.type === 'visibility_modifier' && c.text === 'pub',\n )\n }\n if (id === 'java') {\n // Interface members are implicitly public.\n if (node.parent?.type === 'interface_body') return true\n return node.namedChildren.some((c) => c.type === 'modifiers' && /\\bpublic\\b/.test(c.text))\n }\n for (let parent = node.parent; parent; parent = parent.parent) {\n if (parent.type === 'export_statement') return true\n if (parent.type === 'statement_block' || parent.type === 'class_body') return false\n if (parent.type === 'program') return false\n }\n return false\n}\n\n/**\n * Language quirks the query syntax can't express:\n * - python: no distinct method node — a def directly in a class body is one\n * - go: a type_spec is a class (struct) or interface by its type child\n * - rust: function_item directly in an impl body is a method\n */\nfunction kindFor(id: LanguageId, node: Parser.SyntaxNode, kind: SymbolKind): SymbolKind {\n if (id === 'python' && kind === 'function') {\n const inClassBody = node.parent?.type === 'block' && node.parent?.parent?.type === 'class_definition'\n if (inClassBody) return 'method'\n }\n if (id === 'go' && node.type === 'type_spec') {\n const type = node.childForFieldName('type')?.type\n if (type === 'struct_type') return 'class'\n if (type === 'interface_type') return 'interface'\n return 'type'\n }\n if (id === 'rust' && node.type === 'function_item') {\n const inImpl = node.parent?.type === 'declaration_list' && node.parent?.parent?.type === 'impl_item'\n if (inImpl) return 'method'\n }\n return kind\n}\n\n/** Compile a symbol query for a code sample (used by tests). */\nexport async function parseFileToSymbols(\n filePath: string,\n repoRoot: string,\n code?: string,\n): Promise<SymbolInfo[]> {\n const lang = languageForFile(filePath)\n if (!lang) return []\n const text = code ?? (await readFile(filePath, 'utf8'))\n const rows = await extractSymbols(text, lang)\n const rel = path.relative(repoRoot, filePath).split(path.sep).join('/')\n return rows.map((r) => ({ ...r, file: rel }))\n}","/** Workspace file discovery with dir exclusions and mtime tracking. */\n\nimport { readdir, stat } from 'node:fs/promises'\nimport path from 'node:path'\nimport type { IndexOptions } from './types.js'\n\nexport const DEFAULT_EXCLUDED_DIRS = [\n 'node_modules',\n '.git',\n '.idea',\n '.vscode',\n 'dist',\n 'build',\n 'out',\n 'coverage',\n '.next',\n '.nuxt',\n '.cache',\n 'target',\n 'vendor',\n '.dsh-code-index',\n]\n\n/** Language-agnostic source extensions we index. */\nexport const SUPPORTED_EXTS = new Set([\n '.ts',\n '.tsx',\n '.mts',\n '.cts',\n '.js',\n '.jsx',\n '.mjs',\n '.cjs',\n '.py',\n '.pyi',\n '.go',\n '.rs',\n '.java',\n])\n\nexport interface ScannedFile {\n /** Absolute path on disk. */\n abs: string\n /** Repo-relative path (forward-slash). */\n rel: string\n mtimeMs: number\n}\n\n/**\n * Recursively walk `root` and return indexed files, skipping excluded dir\n * components at any depth. Uses readdir with `withFileTypes` so we never\n * stat every entry; mtime comes from a targeted stat per candidate file.\n */\nexport async function scanRepo(\n root: string,\n options: IndexOptions = {},\n): Promise<ScannedFile[]> {\n const excluded = new Set([...DEFAULT_EXCLUDED_DIRS, ...(options.excludeDirs ?? [])])\n const results: ScannedFile[] = []\n const queue: Array<[string, string]> = [[root, '']] // [absDir, relDir]\n\n while (queue.length) {\n const [absDir, relDir] = queue.pop()!\n let entries\n try {\n entries = await readdir(absDir, { withFileTypes: true })\n } catch {\n continue // unreadable dir: skip into the void\n }\n for (const entry of entries) {\n const abs = path.join(absDir, entry.name)\n const rel = relDir ? `${relDir}/${entry.name}` : entry.name\n if (entry.isDirectory()) {\n if (excluded.has(entry.name)) continue\n queue.push([abs, rel])\n } else if (entry.isFile() && SUPPORTED_EXTS.has(path.extname(entry.name).toLowerCase())) {\n try {\n const st = await stat(abs)\n results.push({ abs, rel, mtimeMs: st.mtimeMs })\n } catch {\n // race: file deleted mid-scan — ignore\n }\n }\n }\n }\n\n results.sort((a, b) => a.rel.localeCompare(b.rel))\n return results\n}","/** On-disk JSON cache for RepoIndex, keyed by repo root. */\n\nimport { mkdir, readFile, rename, rm, writeFile } from 'node:fs/promises'\nimport path from 'node:path'\nimport { createHash, randomUUID } from 'node:crypto'\nimport type { RepoIndex } from './types.js'\n\nexport const CACHE_DIR_NAME = '.dsh-code-index'\n\n/** Stable root identity for cache hashing, including Windows case aliases. */\nexport function cacheKeyForRoot(root: string): string {\n const resolved = path.resolve(root)\n return process.platform === 'win32' ? resolved.toLowerCase() : resolved\n}\n\n/** Default cache location: `<repoRoot>/.dsh-code-index/index.json`. */\nexport function defaultCachePath(root: string, cacheDir?: string): string {\n const dir = cacheDir ?? path.join(root, CACHE_DIR_NAME)\n const hash = createHash('sha1').update(cacheKeyForRoot(root)).digest('hex').slice(0, 12)\n return path.join(dir, `${hash}.json`)\n}\n\n/** Cache filename used before Windows root casing was canonicalized. */\nexport function legacyCachePath(root: string, cacheDir?: string): string {\n const dir = cacheDir ?? path.join(root, CACHE_DIR_NAME)\n const hash = createHash('sha1').update(root).digest('hex').slice(0, 12)\n return path.join(dir, `${hash}.json`)\n}\n\nexport async function loadIndex(cachePath: string): Promise<RepoIndex | null> {\n try {\n const raw = await readFile(cachePath, 'utf8')\n const parsed = JSON.parse(raw) as RepoIndex\n if (!parsed || typeof parsed.root !== 'string' || !Array.isArray(parsed.files)) return null\n return healSymbolFiles(parsed)\n } catch {\n return null // missing or corrupt cache == no cache\n }\n}\n\n/**\n * Self-heal caches written before the per-symbol file backfill (the\n * \"SymbolInfo.file is always set\" invariant). Empty `file` fields are derived\n * from the containing IndexedFile path on load, so any consumer of loadIndex\n * sees consistent rows — and the next save persists the healed form.\n */\nexport function healSymbolFiles(index: RepoIndex): RepoIndex {\n for (const file of index.files) {\n for (const symbol of file.symbols) {\n if (!symbol.file) symbol.file = file.path\n }\n }\n return index\n}\n\nexport async function saveIndex(cachePath: string, index: RepoIndex): Promise<void> {\n await mkdir(path.dirname(cachePath), { recursive: true })\n const temporaryPath = `${cachePath}.${process.pid}.${randomUUID()}.tmp`\n try {\n await writeFile(temporaryPath, JSON.stringify(index, null, 2), { encoding: 'utf8', flag: 'wx' })\n await rename(temporaryPath, cachePath)\n } finally {\n await rm(temporaryPath, { force: true })\n }\n}\n","/** Shared data model for dsh-code-index. */\n\nexport type SymbolKind =\n | 'function'\n | 'method'\n | 'class'\n | 'interface'\n | 'type'\n | 'enum'\n | 'variable'\n | 'field'\n | 'import'\n | 'module'\n\nexport interface SymbolInfo {\n /** Symbol name (identifier / type id / member name). */\n name: string\n kind: SymbolKind\n /** Repo-relative path of the containing file, always forward-slash. */\n file: string\n /** 1-based start line. */\n line: number\n /** 1-based end line (inclusive). */\n endLine: number\n /** True when the symbol is exported at module level (export .. / export default). */\n exported: boolean\n /** Short human-readable signature, e.g. `greet(name: string)` — empty when n/a. */\n signature: string\n}\n\nexport interface IndexedFile {\n /** Repo-relative path (forward-slash). */\n path: string\n lang: string\n /** fs mtime of the source file at index time (milliseconds). */\n mtimeMs: number\n symbols: SymbolInfo[]\n /** Raw import specifiers found in this file ('./util', 'mypkg/core', …).\n * Optional because caches written before reference ranking lack it. */\n imports?: string[]\n}\n\nexport interface RepoIndex {\n /** Absolute source root this index describes. */\n root: string\n /** Unix ms when the index was generated. */\n generatedAt: number\n files: IndexedFile[]\n excludedDirs: string[]\n}\n\nexport function symbolCount(index: RepoIndex): number {\n return index.files.reduce((n, f) => n + f.symbols.length, 0)\n}\n\n/** Optional config consumed by the index build pipeline. */\nexport interface IndexOptions {\n /** Extra directories to exclude, appended to the defaults. */\n excludeDirs?: string[]\n /** Minimum mtime delta (ms) that forces a re-extract in refresh mode. */\n staleToleranceMs?: number\n}","/** Pure search / filter logic over a RepoIndex — unit-testable, no IO. */\n\nimport type { RepoIndex, SymbolInfo, SymbolKind } from './types.js'\n\nexport interface SymbolFilter {\n query?: string\n file?: string\n kind?: SymbolKind\n exportedOnly?: boolean\n}\n\nexport interface RankedHit extends SymbolInfo {\n /** 0..1 relevance. 1 = exact name match; lower = fuzzier. */\n score: number\n}\n\nfunction matchScore(name: string, query: string): number {\n const q = query.toLowerCase()\n const n = name.toLowerCase()\n if (n === q) return 1\n if (n.startsWith(q)) return 0.8\n if (n.includes(q)) return 0.5\n if (q.length >= 3 && isSubsequence(q, n)) return 0.3\n return 0\n}\n\n/**\n * Every query char appears in the name, in order — 'cfgldr' finds\n * 'configLoader'. Gated to 3+ chars so short queries don't match everything.\n */\nfunction isSubsequence(query: string, name: string): boolean {\n let i = 0\n for (const ch of name) {\n if (ch === query[i]) i++\n if (i === query.length) return true\n }\n return false\n}\n\n/** Filter symbols by file/kind/export, then score by name against query (if any). */\nexport function searchSymbols(\n index: RepoIndex,\n filter: SymbolFilter,\n limit = 50,\n): RankedHit[] {\n const q = (filter.query ?? '').trim()\n const filePat = filter.file?.trim().toLowerCase()\n const hits: RankedHit[] = []\n\n for (const file of index.files) {\n if (filePat && !file.path.toLowerCase().includes(filePat)) continue\n for (const sym of file.symbols) {\n if (filter.kind && sym.kind !== filter.kind) continue\n if (filter.exportedOnly && !sym.exported) continue\n const score = q ? matchScore(sym.name, q) : 0.4\n if (q && score === 0) continue\n hits.push({ ...sym, score })\n }\n }\n\n // Export boost, then relevance, then stable name order.\n hits.sort((a, b) => {\n const ab =\n Number(b.exported) - Number(a.exported) ||\n b.score - a.score ||\n a.name.localeCompare(b.name) ||\n a.file.localeCompare(b.file)\n return ab\n })\n return hits.slice(0, limit)\n}\n\n/** Neat one-line rendering of a hit for terminal/chat output. */\nexport function renderHit(hit: RankedHit): string {\n const exportMark = hit.exported ? 'export ' : ''\n const sig = hit.signature || hit.name\n const score = hit.score < 1 ? ` [${hit.score.toFixed(2)}]` : ''\n return `${exportMark}${hit.kind} ${sig}${score} — ${hit.file}:${hit.line}`\n}","/**\n * Bounded, ranked repo map generation — the \"aider-style\" overview the model\n * can turn to before browsing files. Pure logic, no IO.\n */\n\nimport path from 'node:path'\nimport { SUPPORTED_EXTS } from './scan.js'\nimport type { IndexedFile, RepoIndex, SymbolInfo, SymbolKind } from './types.js'\n\n/** Higher-weight symbols pull their file up the map. */\nexport const KIND_WEIGHT: Record<SymbolKind, number> = {\n class: 1.0,\n interface: 1.0,\n type: 0.8,\n function: 0.8,\n method: 0.7,\n enum: 0.9,\n variable: 0.25,\n field: 0.2,\n import: 0.05,\n module: 0.3,\n}\n\nexport interface RepoMapOptions {\n /** Max files to include (default 24). */\n topFiles?: number\n /** Max symbols per file (default 18). */\n symbolsPerFile?: number\n /** Hard cap on rendered characters (default 3200). */\n maxChars?: number\n}\n\nexport interface RepoMapEntry {\n path: string\n score: number\n symbols: Array<{ name: string; kind: SymbolKind; line: number; signature: string }>\n}\n\n/**\n * Paths that look like tests. A map led by test files reads as noise: tests\n * reference an API, they rarely explain it — and symbol density actively\n * favours them (many small functions), so they need an explicit damper.\n */\nconst TEST_PATH_RE =\n /(^|\\/)(tests?|__tests__)(\\/|$)|\\.(?:spec|test)\\.[cm]?[jt]sx?$|(^|\\/)(?:test_[^/]+\\.py|[^/]+_test\\.(?:py|go))$/\n\n/** Density-aware file score: weighted symbols minus bloat; test paths damped. */\nexport function scoreFile(file: IndexedFile): number {\n let score = 0\n for (const sym of file.symbols) {\n score += KIND_WEIGHT[sym.kind] ?? 0.3\n if (sym.exported) score += 0.3\n }\n score /= 1 + file.symbols.length * 0.04\n if (TEST_PATH_RE.test(file.path)) score *= 0.2\n return score\n}\n\n/** Rank files, take the top slice, cap per-file symbols. */\nexport function rankRepoMap(index: RepoIndex, options: RepoMapOptions = {}): RepoMapEntry[] {\n const topFiles = options.topFiles ?? 24\n const perFile = options.symbolsPerFile ?? 18\n const density = new Map<string, number>()\n for (const f of index.files) {\n if (f.symbols.length > 0) density.set(f.path, scoreFile(f))\n }\n const centrality = referencePageRank(index.files, density)\n const ranked = index.files\n .filter((f) => f.symbols.length > 0)\n .map((f) => ({\n file: f,\n score: (density.get(f.path) ?? 0) + REF_WEIGHT * (centrality.get(f.path) ?? 0),\n }))\n .sort((a, b) => b.score - a.score || a.file.path.localeCompare(b.file.path))\n .slice(0, topFiles)\n\n return ranked.map(({ file, score }) => ({\n path: file.path,\n score,\n symbols: file.symbols.slice(0, perFile).map((s) => ({\n name: s.name,\n kind: s.kind,\n line: s.line,\n signature: s.signature,\n })),\n }))\n}\n\n/** How much one unit of reference centrality is worth in map score. */\nconst REF_WEIGHT = 0.5\n\n/**\n * Count in-repo references: how many OTHER indexed files import each file.\n * Self-imports don't count; each (importer, target) pair counts once.\n */\nexport function countReferences(files: IndexedFile[]): Map<string, number> {\n const fileSet = new Set(files.map((f) => f.path))\n const counts = new Map<string, number>()\n for (const file of files) {\n const targets = new Set<string>()\n for (const spec of file.imports ?? []) {\n const target = resolveImport(spec, file.path, fileSet)\n if (target && target !== file.path) targets.add(target)\n }\n for (const target of targets) {\n counts.set(target, (counts.get(target) ?? 0) + 1)\n }\n }\n return counts\n}\n\n/** PageRank damping — the standard 0.85. */\nconst DAMPING = 0.85\n/** Stop the power iteration once total rank movement drops below this. */\nconst CONVERGENCE_TOL = 1e-6\n/** Hard cap; convergence on repo-sized graphs needs ~20-40. */\nconst MAX_ITERATIONS = 100\n\n/**\n * Personalized PageRank over the import graph: nodes are files, an edge\n * A → B means A imports B, so rank flows toward heavily-imported hubs — and\n * a hub that other hubs themselves import accumulates more than a merely\n * popular leaf, which flat in-degree counting cannot see.\n *\n * Teleport uses each file's density share instead of a uniform vector, so\n * sparsely-linked repos keep their 0.2.x ordering (with no edges the fixed\n * point IS the normalized density vector). Returns L1-normalized importance\n * mass per file.\n */\nfunction referencePageRank(files: IndexedFile[], density: Map<string, number>): Map<string, number> {\n const nodes = files.filter((f) => density.has(f.path)).map((f) => f.path)\n const n = nodes.length\n if (n === 0) return new Map()\n if (n === 1) return new Map([[nodes[0]!, 1]])\n\n const totalDensity = nodes.reduce((sum, p) => sum + (density.get(p) ?? 0), 0)\n const teleport = nodes.map((p) => (density.get(p) ?? 0) / totalDensity)\n\n const fileSet = new Set(nodes)\n const out = new Map<string, Set<string>>()\n for (const file of files) {\n if (!fileSet.has(file.path)) continue\n const targets = out.get(file.path) ?? new Set<string>()\n for (const spec of file.imports ?? []) {\n const target = resolveImport(spec, file.path, fileSet)\n if (target && target !== file.path) targets.add(target)\n }\n out.set(file.path, targets)\n }\n\n const incoming = new Map<string, Array<[fromIdx: number, weight: number]>>()\n for (const [from, targets] of out) {\n if (targets.size === 0) continue\n const weight = 1 / targets.size\n const fromIdx = nodes.indexOf(from)\n for (const target of targets) {\n const list = incoming.get(target) ?? []\n list.push([fromIdx, weight])\n incoming.set(target, list)\n }\n }\n\n let rank = teleport.slice()\n for (let iter = 0; iter < MAX_ITERATIONS; iter++) {\n let danglingMass = 0\n for (let i = 0; i < n; i++) {\n if (!out.get(nodes[i]!)?.size) danglingMass += rank[i]!\n }\n const next = new Array<number>(n)\n let delta = 0\n for (let i = 0; i < n; i++) {\n let flow = 0\n for (const [fromIdx, weight] of incoming.get(nodes[i]!) ?? []) {\n flow += rank[fromIdx]! * weight\n }\n next[i] = (1 - DAMPING) * teleport[i]! + DAMPING * (flow + danglingMass * teleport[i]!)\n delta += Math.abs(next[i]! - rank[i]!)\n }\n rank = next\n if (delta < CONVERGENCE_TOL) break\n }\n\n const result = new Map<string, number>()\n for (let i = 0; i < n; i++) result.set(nodes[i]!, rank[i]!)\n return result\n}\n\n/**\n * Resolve a raw import specifier against the indexed file set; returns the\n * repo-relative target path or null. Relative specifiers resolve against the\n * importing file; absolute ones against the repo root — with a suffix\n * fallback so Go module paths and Java package names match their in-repo\n * location without reading go.mod / package-info.\n */\nexport function resolveImport(spec: string, fromPath: string, fileSet: Set<string>): string | null {\n if (!spec) return null\n if (spec.startsWith('./') || spec.startsWith('../')) {\n const base = path.posix.normalize(path.posix.join(path.posix.dirname(fromPath), spec))\n return candidateFor(base, fileSet)\n }\n const segments = spec.split('/').filter(Boolean)\n for (let skip = 0; skip < segments.length; skip++) {\n const hit = candidateFor(segments.slice(skip).join('/'), fileSet)\n if (hit) return hit\n }\n return null\n}\n\n/** Extension and index-file candidates for a specifier base path. */\nfunction candidateFor(base: string, fileSet: Set<string>): string | null {\n for (const ext of SUPPORTED_EXTS) {\n if (fileSet.has(`${base}${ext}`)) return `${base}${ext}`\n }\n for (const ext of SUPPORTED_EXTS) {\n if (fileSet.has(`${base}/index${ext}`)) return `${base}/index${ext}`\n if (fileSet.has(`${base}/__init__${ext}`)) return `${base}/__init__${ext}`\n }\n return null\n}\n\n/** Render the ranked map as markdown, hard-truncated to maxChars. */\nexport function renderRepoMap(entries: RepoMapEntry[], options: RepoMapOptions = {}): string {\n const maxChars = options.maxChars ?? 3200\n const lines: string[] = ['# repo map']\n let totalSymbols = 0\n for (const e of entries) {\n totalSymbols += e.symbols.length\n lines.push(`## ${e.path} (${e.symbols.length})`)\n for (const s of e.symbols) {\n const label = s.signature || s.name\n lines.push(` ${s.kind} ${label} :${s.line}`)\n }\n }\n let text = lines.join('\\n')\n if (text.length > maxChars) {\n text = `${text.slice(0, maxChars)}\\n… truncated`\n }\n return totalSymbols > 0 ? text : ''\n}","/** Model-visible tools: code_index, code_symbols, code_search. */\n\nimport { defineTool, type JsonValue } from '@deepseek-ai/dsh-tools'\nimport path from 'node:path'\nimport { buildIndexWithCache, findRepoRoot } from './buildIndex.js'\nimport { renderHit, searchSymbols } from './search.js'\nimport { rankRepoMap, renderRepoMap } from './repomap.js'\nimport { getConfig, indexOptions } from './config.js'\nimport { cacheKeyForRoot } from './store.js'\nimport type { RepoIndex } from './types.js'\n\n/** Minimal structural types for the harness surfaces we touch. */\ninterface ToolCwdContext {\n agent?: {\n session?: { header?: { cwd?: string } }\n }\n}\ntype ToolRunExec = ToolCwdContext & { signal?: AbortSignal }\n\ninterface TextBlock {\n type: 'text'\n text: string\n}\n\nexport interface IndexCache {\n get(root: string, force?: boolean): Promise<RepoIndex>\n invalidate(): void\n}\n\n/** Retain completed indexes briefly while still coalescing concurrent refreshes. */\nexport function createIndexCache(\n load: (root: string) => Promise<RepoIndex>,\n ttlMs = 60_000,\n now: () => number = Date.now,\n): IndexCache {\n interface CompletedEntry {\n index: RepoIndex\n at: number\n epoch: number\n }\n interface LoadEntry {\n promise: Promise<RepoIndex>\n epoch: number\n }\n\n const completed = new Map<string, CompletedEntry>()\n const inFlight = new Map<string, LoadEntry>()\n let epoch = 0\n\n function startLoad(key: string, root: string, previous?: Promise<RepoIndex>): Promise<RepoIndex> {\n const loadEpoch = epoch\n const begin = previous\n ? previous.catch(() => undefined).then(() => load(root))\n : load(root)\n const promise = begin\n .then((index) => {\n if (loadEpoch === epoch) {\n completed.delete(key)\n completed.set(key, { index, at: now(), epoch: loadEpoch })\n while (completed.size > 16) completed.delete(completed.keys().next().value!)\n }\n return index\n })\n .finally(() => {\n if (inFlight.get(key)?.promise === promise) inFlight.delete(key)\n })\n inFlight.set(key, { promise, epoch: loadEpoch })\n return promise\n }\n\n return {\n get(root, force = false) {\n const resolvedRoot = path.resolve(root)\n const key = cacheKeyForRoot(resolvedRoot)\n const running = inFlight.get(key)\n if (running) {\n if (running.epoch === epoch && !force) return running.promise\n return startLoad(key, resolvedRoot, running.promise)\n }\n\n if (!force) {\n const cached = completed.get(key)\n if (cached && cached.epoch === epoch && now() - cached.at < ttlMs) {\n completed.delete(key)\n completed.set(key, cached)\n return Promise.resolve(cached.index)\n }\n if (cached) completed.delete(key)\n } else {\n completed.delete(key)\n }\n return startLoad(key, resolvedRoot)\n },\n invalidate() {\n epoch++\n completed.clear()\n },\n }\n}\n\nconst indexCache = createIndexCache((root) => buildIndexWithCache(root, indexOptions()))\n\nexport function getIndex(root: string, force = false): Promise<RepoIndex> {\n return indexCache.get(root, force)\n}\n\nexport function invalidateIndexCache(): void {\n indexCache.invalidate()\n}\n\nasync function resolveRoot(arg: string | undefined, exec: ToolRunExec): Promise<string> {\n const cwd = exec.agent?.session?.header?.cwd\n const base = arg ?? cwd ?? process.cwd()\n const root = await findRepoRoot(base)\n if (!root) throw new Error(`no git repository found from ${path.resolve(base)}`)\n return root\n}\n\nexport const tools = [\n defineTool({\n name: 'code_index',\n description:\n 'Manage the semantic repo index: status or (re)build it for the current workspace. Auto-builds the first time it is queried. Returns file/symbol counts and the index location.',\n parameters: {\n action: {\n type: 'string',\n enum: ['status', 'build'],\n description: '\"status\" (default) reports without forcing a rebuild; \"build\" forces a fresh scan.',\n },\n repoRoot: {\n type: 'string',\n description:\n 'Optional absolute repo path. Defaults to the workspace root of the current session.',\n },\n },\n output: {\n schema: { type: 'string' },\n render: (_args, value: string): TextBlock[] => [{ type: 'text', text: value }],\n },\n async execute(args: { action?: string; repoRoot?: string }, exec: ToolRunExec): Promise<string> {\n try {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root, args.action === 'build')\n const total = index.files.reduce((n, f) => n + f.symbols.length, 0)\n const langs = new Set(index.files.map((f) => f.lang))\n return [\n `repo: ${root}`,\n `files indexed: ${index.files.length}`,\n `symbols: ${total}`,\n `languages: ${[...langs].join(', ')}`,\n index.files.length === 0 ? 'no supported files found' : 'index up to date',\n ].join('\\n')\n } catch (error) {\n return `code_index: ${(error as Error).message ?? String(error)}`\n }\n },\n }),\n\n defineTool({\n name: 'code_symbols',\n description:\n 'List symbols (functions, classes, interfaces, types, methods, variables) in the current repo. Filter by name substring, file path substring, or symbol kind. Results are exported-first, alphabetically ordered.',\n parameters: {\n query: {\n type: 'string',\n description: 'Substring of the symbol name to match (case-insensitive). Omit to list all.',\n },\n file: {\n type: 'string',\n description: 'Substring of the repo-relative file path to match, e.g. \"src/core\".',\n },\n kind: {\n type: 'string',\n enum: ['function', 'method', 'class', 'interface', 'type', 'enum', 'variable', 'field'],\n description: 'Only return symbols of this kind.',\n },\n exportedOnly: {\n type: 'boolean',\n description: 'Only exported (module-level public) symbols.',\n },\n limit: {\n type: 'number',\n description: 'Max rows (default 50).',\n },\n repoRoot: {\n type: 'string',\n description: 'Optional absolute repo path; defaults to the session workspace root.',\n },\n },\n output: {\n schema: { type: 'array' },\n render: (_args, value: JsonValue[]): TextBlock[] =>\n value.map((v) => ({\n type: 'text' as const,\n text: renderHit(v as unknown as Parameters<typeof renderHit>[0]),\n })),\n },\n async execute(\n args: {\n query?: string\n file?: string\n kind?: 'function' | 'method' | 'class' | 'interface' | 'type' | 'enum' | 'variable' | 'field'\n exportedOnly?: boolean\n limit?: number\n repoRoot?: string\n },\n exec: ToolRunExec,\n ): Promise<JsonValue[]> {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root)\n const hits = searchSymbols(\n index,\n { query: args.query, file: args.file, kind: args.kind, exportedOnly: args.exportedOnly },\n args.limit ?? 50,\n )\n return hits as unknown as JsonValue[]\n },\n }),\n\n defineTool({\n name: 'code_search',\n description:\n 'Ranked symbol search over the repo index: exact > prefix > substring name matches, exported symbols first. Results carry a relevance score and file:line, so the model can locate definitions quickly.',\n parameters: {\n query: {\n type: 'string',\n required: true,\n description: 'Symbol name (or fragment) to find.',\n },\n limit: {\n type: 'number',\n description: 'Max hits (default 20).',\n },\n repoRoot: {\n type: 'string',\n description: 'Optional absolute repo path; defaults to the session workspace root.',\n },\n },\n output: {\n schema: { type: 'array' },\n render: (_args, value: JsonValue[]): TextBlock[] =>\n value.map((v) => ({\n type: 'text' as const,\n text: renderHit(v as unknown as Parameters<typeof renderHit>[0]),\n })),\n },\n async execute(\n args: { query: string; limit?: number; repoRoot?: string },\n exec: ToolRunExec,\n ): Promise<JsonValue[]> {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root)\n const hits = searchSymbols(index, { query: args.query }, args.limit ?? 20)\n return hits as unknown as JsonValue[]\n },\n }),\n\n defineTool({\n name: 'code_map',\n description:\n 'Return a bounded, ranked map of the current repo (top files by symbol density, with their key symbols and lines). The model can call this once per session to build an internal model of the codebase before browsing files.',\n parameters: {\n repoRoot: {\n type: 'string',\n description: 'Optional absolute repo path; defaults to the session workspace root.',\n },\n },\n output: {\n schema: { type: 'string' },\n render: (_args, value: string): TextBlock[] => [{ type: 'text', text: value }],\n },\n async execute(args: { repoRoot?: string }, exec: ToolRunExec): Promise<string> {\n try {\n const root = await resolveRoot(args.repoRoot, exec)\n const index = await getIndex(root)\n const cfg = getConfig()\n const map = renderRepoMap(\n rankRepoMap(index, { topFiles: cfg.mapTopFiles }),\n { maxChars: cfg.mapMaxChars },\n )\n if (!map) return 'no indexable symbols found in this repo'\n return map\n } catch (error) {\n return `code_index: ${(error as Error).message ?? String(error)}`\n }\n },\n }),\n]\n","/** Plugin configuration: merged once at apply time, read wherever needed. */\n\nimport type { IndexOptions } from './types.js'\n\nexport interface PluginConfig {\n /** Extra directories to exclude from indexing (appended to defaults). */\n excludeDirs?: string[]\n /** Max files in the ranked repo map (code_map / auto section). */\n mapTopFiles?: number\n /** Hard char cap for rendered maps. */\n mapMaxChars?: number\n /** Refresh interval for the auto-injected map (ms, min 1000). */\n mapTtlMs?: number\n /** Set false to disable the auto-injected system section. */\n autoInject?: boolean\n}\n\ninterface EffectiveConfig {\n excludeDirs: string[]\n mapTopFiles: number\n mapMaxChars: number\n mapTtlMs: number\n autoInject: boolean\n}\n\nconst DEFAULTS: EffectiveConfig = {\n excludeDirs: [],\n mapTopFiles: 24,\n mapMaxChars: 3200,\n mapTtlMs: 60_000,\n autoInject: true,\n}\n\nconst state: { current: EffectiveConfig } = { current: { ...DEFAULTS } }\n\n/** Merge a plugin-provided partial config over the defaults (idempotent). */\nexport function applyConfig(partial?: PluginConfig): void {\n state.current = {\n ...DEFAULTS,\n ...(partial ?? {}),\n excludeDirs: [...DEFAULTS.excludeDirs, ...(partial?.excludeDirs ?? [])],\n }\n // Coerce obviously wrong inputs.\n if (!Number.isFinite(state.current.mapTopFiles) || state.current.mapTopFiles < 1) {\n state.current.mapTopFiles = DEFAULTS.mapTopFiles\n }\n if (!Number.isFinite(state.current.mapMaxChars) || state.current.mapMaxChars < 200) {\n state.current.mapMaxChars = DEFAULTS.mapMaxChars\n }\n if (!Number.isFinite(state.current.mapTtlMs) || state.current.mapTtlMs < 1_000) {\n state.current.mapTtlMs = DEFAULTS.mapTtlMs\n }\n}\n\nexport function getConfig(): Readonly<EffectiveConfig> {\n return state.current\n}\n\n/** Map the effective config onto the index pipeline options. */\nexport function indexOptions(): IndexOptions {\n return { excludeDirs: state.current.excludeDirs }\n}","/**\n * dsh-code-index — DeepSeek Harness bundle entry.\n *\n * Registers four model-visible tools (code_index / code_symbols /\n * code_search / code_map) backed by a tree-sitter symbol index, and\n * injects a bounded auto-updating repo map for the default workspace\n * into the system prompt.\n */\n\ntype Disposer = void | (() => void)\n\n/** Minimal structural Context; the real @deepseek-ai/cordis type is a\n * runtime dependency we intentionally do not import in the bundle entry. */\ninterface MinimalContext {\n effect(fn: () => Disposer): void\n tools: { register(t: unknown): () => void }\n systemPrompt: {\n section(section: {\n name: string\n order: number\n text: string | ((context: unknown) => string)\n }): () => void\n }\n}\n\nexport const name = 'dsh-code-index'\n\n// Public API surface (consumable by other bundles / tests).\nexport { buildIndex, buildIndexWithCache, findRepoRoot } from './buildIndex.js'\nexport { extractSymbols, extractAll, languageForFile, parseFileToSymbols } from './extract.js'\nexport { scanRepo, DEFAULT_EXCLUDED_DIRS, SUPPORTED_EXTS } from './scan.js'\nexport { loadIndex, saveIndex, defaultCachePath, CACHE_DIR_NAME } from './store.js'\nexport { symbolCount } from './types.js'\nexport type { RepoIndex, IndexedFile, SymbolInfo, SymbolKind, IndexOptions } from './types.js'\nexport { searchSymbols, renderHit } from './search.js'\nexport { rankRepoMap, renderRepoMap, scoreFile } from './repomap.js'\nexport { tools } from './tools.js'\n\nimport { getIndex, invalidateIndexCache, tools } from './tools.js'\nimport { findRepoRoot } from './buildIndex.js'\nimport { rankRepoMap, renderRepoMap } from './repomap.js'\nimport { symbolCount } from './types.js'\nimport { applyConfig, getConfig, type PluginConfig } from './config.js'\n\nexport const inject = ['tools', 'systemPrompt'] as const\n\nexport function apply(ctx: MinimalContext, pluginConfig?: PluginConfig) {\n applyConfig(pluginConfig)\n invalidateIndexCache()\n ctx.effect(() => {\n const disposers: Array<() => void> = []\n console.log('[dsh-code-index] plugin loaded')\n for (const tool of tools) {\n disposers.push(ctx.tools.register(tool))\n console.log(`[dsh-code-index] registered tool: ${tool.name}`)\n }\n\n // Auto-inject a bounded repo map for the DEFAULT workspace (the dsh\n // launch directory, per the harness docs). Multi-workspace web sessions\n // should rely on the `code_map` tool, which resolves the per-session cwd.\n let cached: { root: string; at: number; text: string } | null = null\n\n async function warmMap(): Promise<void> {\n const now = Date.now()\n const cfg = getConfig()\n try {\n const root = await findRepoRoot(process.cwd())\n if (!root) {\n cached = { root: '', at: now, text: '' }\n return\n }\n const index = await getIndex(root)\n const text = renderRepoMap(\n rankRepoMap(index, { topFiles: cfg.mapTopFiles }),\n { maxChars: cfg.mapMaxChars },\n )\n const stats = symbolCount(index)\n cached = {\n root: index.root,\n at: Date.now(),\n text: text ? `${text}\\n\\n(summary: ${index.files.length} files, ${stats} symbols)` : '',\n }\n } catch {\n cached = { root: '', at: now, text: '' } // never let injection fail the boot\n }\n }\n\n // Warm eagerly at load so the first assembly already has the map.\n void warmMap()\n\n if (getConfig().autoInject) {\n disposers.push(ctx.systemPrompt.section({\n name: 'code-index:repo-map',\n order: 60, // before tool guidance (100–199), after persona (0)\n text: () => {\n const now = Date.now()\n if (cached && now - cached.at < getConfig().mapTtlMs) return cached.text\n void warmMap()\n return cached?.text ?? ''\n },\n }))\n }\n\n return () => {\n const errors: unknown[] = []\n for (const dispose of disposers.reverse()) {\n try {\n dispose()\n } catch (error) {\n errors.push(error)\n }\n }\n console.log('[dsh-code-index] plugin unloaded')\n if (errors.length > 0) throw new AggregateError(errors, 'failed to unload dsh-code-index')\n }\n })\n}\n"],"mappings":"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","names":["readFile","stat","path","require","name","path","readFile","path","readFile","path","stat","name","path","path","path","path"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-code-index",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Semantic repo index for DeepSeek Harness — tree-sitter symbol index, code search, and a bounded ranked repo map injected into agent context.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"dev": "tsup --watch",
|
|
15
15
|
"test": "vitest run",
|
|
16
16
|
"typecheck": "tsc --noEmit",
|
|
17
|
+
"fix:wsl-links": "node scripts/fix-wsl-links.mjs",
|
|
17
18
|
"prepare": "tsup",
|
|
18
19
|
"prepublishOnly": "tsup"
|
|
19
20
|
},
|
|
@@ -40,9 +41,20 @@
|
|
|
40
41
|
"vitest": "^4.1.8"
|
|
41
42
|
},
|
|
42
43
|
"license": "MIT",
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=22"
|
|
46
|
+
},
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "git+https://github.com/lemonxiny55/dsh-code-index.git"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/lemonxiny55/dsh-code-index",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/lemonxiny55/dsh-code-index/issues"
|
|
54
|
+
},
|
|
43
55
|
"dependencies": {
|
|
44
56
|
"@deepseek-ai/dsh-tools": "0.1.0-rc.8",
|
|
45
57
|
"tree-sitter-wasms": "^0.1.13",
|
|
46
58
|
"web-tree-sitter": "^0.20.8"
|
|
47
59
|
}
|
|
48
|
-
}
|
|
60
|
+
}
|