dsh-code-index 0.2.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/LICENSE +20 -20
- package/README.md +142 -129
- package/README.zh.md +138 -125
- package/cordis.patch.yml +4 -4
- package/dist/index.js +52 -8
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 dsh-code-index contributors
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 dsh-code-index contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,129 +1,142 @@
|
|
|
1
|
-
# dsh-code-index
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/dsh-code-index)
|
|
4
|
-
[](https://github.com/lemonxiny55/dsh-code-index/actions)
|
|
5
|
-
|
|
6
|
-
English | [中文](README.zh.md)
|
|
7
|
-
|
|
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.
|
|
9
|
-
|
|
10
|
-
Fills a real ecosystem gap: search of the `dsh-plugin` topic (2026-08) shows git/voice/browser/memory plugins galore, but **no native, model-usable code index / repo-map capability** — the kind of thing aider's repo-map and Cursor's `@Codebase` do for their agents.
|
|
11
|
-
|
|
12
|
-
## What the model gets
|
|
13
|
-
|
|
14
|
-
| Tool | Purpose |
|
|
15
|
-
|---|---|
|
|
16
|
-
| `code_index` | Status / (re)build the index for the current workspace |
|
|
17
|
-
| `code_symbols` | List symbols (functions, classes, interfaces, types, methods…) with file:line — filtered by name, path, kind, exported |
|
|
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
|
|
20
|
-
|
|
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.
|
|
22
|
-
|
|
23
|
-
## Install
|
|
24
|
-
|
|
25
|
-
Requires `dsh` (any install path — npx, npm, or source) and Node ≥ 22.
|
|
26
|
-
|
|
27
|
-
```sh
|
|
28
|
-
# from npm (prebuilt)
|
|
29
|
-
npx @deepseek-ai/dsh plugin --profile web add dsh-code-index
|
|
30
|
-
|
|
31
|
-
# or from a directory containing this checkout
|
|
32
|
-
npx @deepseek-ai/dsh plugin --profile web add ./dsh-code-index
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
Restart the Web UI (`npx @deepseek-ai/dsh web`) — startup logs confirm each tool:
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
[dsh-code-index] plugin loaded
|
|
39
|
-
[dsh-code-index] registered tool: code_index
|
|
40
|
-
...
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
Verify the composed config without booting: `dsh --profile web --dump-config`.
|
|
44
|
-
|
|
45
|
-
## Using it
|
|
46
|
-
|
|
47
|
-
In a workspace session, ask the agent:
|
|
48
|
-
|
|
49
|
-
- "Which repo are we in — run code_map first."
|
|
50
|
-
- "Find every function whose name contains `parse` and where it lives."
|
|
51
|
-
- "List the exported symbols in src/core."
|
|
52
|
-
- "Rebuild the code index."
|
|
53
|
-
|
|
54
|
-
No API key is needed to *index*; the model must of course be configured to call the tools.
|
|
55
|
-
|
|
56
|
-
## Example (input → output)
|
|
57
|
-
|
|
58
|
-
User prompt:
|
|
59
|
-
|
|
60
|
-
> Which repo are we in? Run `code_map` first, then find where `extractSymbols` is defined.
|
|
61
|
-
|
|
62
|
-
The agent calls the tools in turn:
|
|
63
|
-
|
|
64
|
-
```
|
|
65
|
-
code_map
|
|
66
|
-
# repo map
|
|
67
|
-
## src/extract.ts (14)
|
|
68
|
-
function extractSymbols(code, id) :121
|
|
69
|
-
function languageForFile(filePath) :37
|
|
70
|
-
...
|
|
71
|
-
|
|
72
|
-
code_search { query: "extractSymbols" }
|
|
73
|
-
export function extractSymbols(code, id) — src/extract.ts:121
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
The index builds lazily on first use; later calls are served from the on-disk cache with mtime-incremental refresh.
|
|
77
|
-
|
|
78
|
-
## Configuration
|
|
79
|
-
|
|
80
|
-
Options are passed as the plugin row's `config` in the profile patch (or defaults are used if absent):
|
|
81
|
-
|
|
82
|
-
```yaml
|
|
83
|
-
# $DSH_HOME/profiles/<name>/cordis.patch.yml — a bare row overrides by id.
|
|
84
|
-
- id: code-index
|
|
85
|
-
config:
|
|
86
|
-
excludeDirs: [generated, playground]
|
|
87
|
-
mapTopFiles: 30
|
|
88
|
-
mapMaxChars: 4000
|
|
89
|
-
autoInject: true
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
| Key | Default | Meaning |
|
|
93
|
-
|---|---|---|
|
|
94
|
-
| `excludeDirs` | `[]` | Extra dirs appended to the built-in excludes (`node_modules`, `.git`, `dist`, `build`, `out`, `coverage`, `.next`, `.nuxt`, `.cache`, `target`, `vendor`, …) |
|
|
95
|
-
| `mapTopFiles` | `24` | Max files in a ranked map |
|
|
96
|
-
| `mapMaxChars` | `3200` | Hard cap on rendered map characters |
|
|
97
|
-
| `mapTtlMs` | `60000` | Refresh interval for the auto-injected map (ms, min 1000) |
|
|
98
|
-
| `autoInject` | `true` | Register the system prompt section |
|
|
99
|
-
|
|
100
|
-
## Supported languages
|
|
101
|
-
|
|
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.
|
|
103
|
-
|
|
104
|
-
## How it works
|
|
105
|
-
|
|
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).
|
|
107
|
-
- **Search** (`src/search.ts`): pure scoring — exact `1` / prefix `0.8` / substring `0.5`, export boost, name order tiebreak.
|
|
108
|
-
- **Repo map** (`src/repomap.ts`): density-aware file score (class/interface/function weighted,
|
|
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).
|
|
110
|
-
|
|
111
|
-
## Known limitations
|
|
112
|
-
|
|
113
|
-
- **web-tree-sitter pinned to `^0.20.8`** — newer releases expect dylinked grammar wasm while `tree-sitter-wasms` ships static builds; this pair is verified working under Node ≥ 22/24.
|
|
114
|
-
- Auto-injected section targets the **default workspace** (launch directory, matching headless/CLI mode). Multi-workspace Web UI sessions should use `code_map`/`code_symbols` (they resolve per-session cwd).
|
|
115
|
-
- Local variables are indexed too — recall over precision; `code_search` ranking keeps them low.
|
|
116
|
-
- Developer-preview harness: expect breaking harness/plugin API changes upstream.
|
|
117
|
-
|
|
118
|
-
## Development
|
|
119
|
-
|
|
120
|
-
```sh
|
|
121
|
-
pnpm install
|
|
122
|
-
pnpm test # vitest — extractor, scan, cache, search, repo map
|
|
123
|
-
pnpm typecheck
|
|
124
|
-
pnpm build # tsup → dist/index.js (ESM, external deps)
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
1
|
+
# dsh-code-index
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/dsh-code-index)
|
|
4
|
+
[](https://github.com/lemonxiny55/dsh-code-index/actions)
|
|
5
|
+
|
|
6
|
+
English | [中文](README.zh.md)
|
|
7
|
+
|
|
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.
|
|
9
|
+
|
|
10
|
+
Fills a real ecosystem gap: search of the `dsh-plugin` topic (2026-08) shows git/voice/browser/memory plugins galore, but **no native, model-usable code index / repo-map capability** — the kind of thing aider's repo-map and Cursor's `@Codebase` do for their agents.
|
|
11
|
+
|
|
12
|
+
## What the model gets
|
|
13
|
+
|
|
14
|
+
| Tool | Purpose |
|
|
15
|
+
|---|---|
|
|
16
|
+
| `code_index` | Status / (re)build the index for the current workspace |
|
|
17
|
+
| `code_symbols` | List symbols (functions, classes, interfaces, types, methods…) with file:line — filtered by name, path, kind, exported |
|
|
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) |
|
|
20
|
+
|
|
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.
|
|
22
|
+
|
|
23
|
+
## Install
|
|
24
|
+
|
|
25
|
+
Requires `dsh` (any install path — npx, npm, or source) and Node ≥ 22.
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
# from npm (prebuilt)
|
|
29
|
+
npx @deepseek-ai/dsh plugin --profile web add dsh-code-index
|
|
30
|
+
|
|
31
|
+
# or from a directory containing this checkout
|
|
32
|
+
npx @deepseek-ai/dsh plugin --profile web add ./dsh-code-index
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Restart the Web UI (`npx @deepseek-ai/dsh web`) — startup logs confirm each tool:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
[dsh-code-index] plugin loaded
|
|
39
|
+
[dsh-code-index] registered tool: code_index
|
|
40
|
+
...
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Verify the composed config without booting: `dsh --profile web --dump-config`.
|
|
44
|
+
|
|
45
|
+
## Using it
|
|
46
|
+
|
|
47
|
+
In a workspace session, ask the agent:
|
|
48
|
+
|
|
49
|
+
- "Which repo are we in — run code_map first."
|
|
50
|
+
- "Find every function whose name contains `parse` and where it lives."
|
|
51
|
+
- "List the exported symbols in src/core."
|
|
52
|
+
- "Rebuild the code index."
|
|
53
|
+
|
|
54
|
+
No API key is needed to *index*; the model must of course be configured to call the tools.
|
|
55
|
+
|
|
56
|
+
## Example (input → output)
|
|
57
|
+
|
|
58
|
+
User prompt:
|
|
59
|
+
|
|
60
|
+
> Which repo are we in? Run `code_map` first, then find where `extractSymbols` is defined.
|
|
61
|
+
|
|
62
|
+
The agent calls the tools in turn:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
code_map
|
|
66
|
+
# repo map
|
|
67
|
+
## src/extract.ts (14)
|
|
68
|
+
function extractSymbols(code, id) :121
|
|
69
|
+
function languageForFile(filePath) :37
|
|
70
|
+
...
|
|
71
|
+
|
|
72
|
+
code_search { query: "extractSymbols" }
|
|
73
|
+
export function extractSymbols(code, id) — src/extract.ts:121
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
The index builds lazily on first use; later calls are served from the on-disk cache with mtime-incremental refresh.
|
|
77
|
+
|
|
78
|
+
## Configuration
|
|
79
|
+
|
|
80
|
+
Options are passed as the plugin row's `config` in the profile patch (or defaults are used if absent):
|
|
81
|
+
|
|
82
|
+
```yaml
|
|
83
|
+
# $DSH_HOME/profiles/<name>/cordis.patch.yml — a bare row overrides by id.
|
|
84
|
+
- id: code-index
|
|
85
|
+
config:
|
|
86
|
+
excludeDirs: [generated, playground]
|
|
87
|
+
mapTopFiles: 30
|
|
88
|
+
mapMaxChars: 4000
|
|
89
|
+
autoInject: true
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
| Key | Default | Meaning |
|
|
93
|
+
|---|---|---|
|
|
94
|
+
| `excludeDirs` | `[]` | Extra dirs appended to the built-in excludes (`node_modules`, `.git`, `dist`, `build`, `out`, `coverage`, `.next`, `.nuxt`, `.cache`, `target`, `vendor`, …) |
|
|
95
|
+
| `mapTopFiles` | `24` | Max files in a ranked map |
|
|
96
|
+
| `mapMaxChars` | `3200` | Hard cap on rendered map characters |
|
|
97
|
+
| `mapTtlMs` | `60000` | Refresh interval for the auto-injected map (ms, min 1000) |
|
|
98
|
+
| `autoInject` | `true` | Register the system prompt section |
|
|
99
|
+
|
|
100
|
+
## Supported languages
|
|
101
|
+
|
|
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.
|
|
103
|
+
|
|
104
|
+
## How it works
|
|
105
|
+
|
|
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).
|
|
107
|
+
- **Search** (`src/search.ts`): pure scoring — exact `1` / prefix `0.8` / substring `0.5`, export boost, name order tiebreak.
|
|
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.
|
|
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).
|
|
110
|
+
|
|
111
|
+
## Known limitations
|
|
112
|
+
|
|
113
|
+
- **web-tree-sitter pinned to `^0.20.8`** — newer releases expect dylinked grammar wasm while `tree-sitter-wasms` ships static builds; this pair is verified working under Node ≥ 22/24.
|
|
114
|
+
- Auto-injected section targets the **default workspace** (launch directory, matching headless/CLI mode). Multi-workspace Web UI sessions should use `code_map`/`code_symbols` (they resolve per-session cwd).
|
|
115
|
+
- Local variables are indexed too — recall over precision; `code_search` ranking keeps them low.
|
|
116
|
+
- Developer-preview harness: expect breaking harness/plugin API changes upstream.
|
|
117
|
+
|
|
118
|
+
## Development
|
|
119
|
+
|
|
120
|
+
```sh
|
|
121
|
+
pnpm install
|
|
122
|
+
pnpm test # vitest — extractor, scan, cache, search, repo map
|
|
123
|
+
pnpm typecheck
|
|
124
|
+
pnpm build # tsup → dist/index.js (ESM, external deps)
|
|
125
|
+
```
|
|
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
|
+
|
|
140
|
+
## License
|
|
141
|
+
|
|
142
|
+
MIT. Not affiliated with DeepSeek; built on the public `dsh` plugin surface.
|
package/README.zh.md
CHANGED
|
@@ -1,126 +1,139 @@
|
|
|
1
|
-
# dsh-code-index
|
|
2
|
-
|
|
3
|
-
[English](README.md) | 中文
|
|
4
|
-
|
|
5
|
-
语义仓库索引 —— 一个 [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)(`dsh`)插件,为 agent 提供**代码库地图**:基于 tree-sitter 的符号索引、带排名的符号搜索,以及注入到系统提示词里的限量自动更新仓库地图。
|
|
6
|
-
|
|
7
|
-
填补了一个真实的生态缺口:检索 `dsh-plugin` 话题(2026-08)会发现 git/语音/浏览器/记忆类插件琳琅满目,但**缺少原生、模型可用的代码索引 / 仓库地图能力**——也就是 aider 的 repo-map 和 Cursor 的 `@Codebase` 为各自 agent 提供的同类能力。
|
|
8
|
-
|
|
9
|
-
## 模型能得到什么
|
|
10
|
-
|
|
11
|
-
| 工具 | 用途 |
|
|
12
|
-
|---|---|
|
|
13
|
-
| `code_index` | 查看 / (重)建当前工作区的索引 |
|
|
14
|
-
| `code_symbols` | 列出符号(函数、类、接口、类型、方法……),带 file:line——支持按名称、路径、类型、是否导出过滤 |
|
|
15
|
-
| `code_search` | 排名检索:精确 > 前缀 > 子串 > 子序列模糊,导出优先,带相关度分数与 file:line |
|
|
16
|
-
| `code_map` | 限量排名仓库地图(按符号密度 +
|
|
17
|
-
|
|
18
|
-
外加一个可选的**自动注入系统提示词段**(`code-index:repo-map`,序 60):默认工作区的精简排名地图,按 TTL 自动刷新(`mapTtlMs`,默认 60 秒)。将 `autoInject: false` 可关闭,只依赖 `code_map` 工具。
|
|
19
|
-
|
|
20
|
-
## 安装
|
|
21
|
-
|
|
22
|
-
需要 `dsh`(任意安装方式——npx、npm 或源码)与 Node ≥ 22。
|
|
23
|
-
|
|
24
|
-
```sh
|
|
25
|
-
# 从 npm(预编译)
|
|
26
|
-
npx @deepseek-ai/dsh plugin --profile web add dsh-code-index
|
|
27
|
-
|
|
28
|
-
# 或从包含本仓库检查副本的目录
|
|
29
|
-
npx @deepseek-ai/dsh plugin --profile web add ./dsh-code-index
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
重启 Web UI(`npx @deepseek-ai/dsh web`)——启动日志会确认每个工具:
|
|
33
|
-
|
|
34
|
-
```
|
|
35
|
-
[dsh-code-index] plugin loaded
|
|
36
|
-
[dsh-code-index] registered tool: code_index
|
|
37
|
-
...
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
不启动即可核对组合配置:`dsh --profile web --dump-config`。
|
|
41
|
-
|
|
42
|
-
## 使用
|
|
43
|
-
|
|
44
|
-
在工作区会话中,向 agent 提这类请求:
|
|
45
|
-
|
|
46
|
-
- "我们现在在哪个仓库?先跑 code_map。"
|
|
47
|
-
- "找出所有名字含 `parse` 的函数及其位置。"
|
|
48
|
-
- "列出 src/core 里的导出符号。"
|
|
49
|
-
- "重建代码索引。"
|
|
50
|
-
|
|
51
|
-
*索引*本身不需要 API key;模型当然要配置好才能调用这些工具。
|
|
52
|
-
|
|
53
|
-
## 示例(输入 → 输出)
|
|
54
|
-
|
|
55
|
-
用户提示:
|
|
56
|
-
|
|
57
|
-
> 我们现在在哪个仓库?先跑 `code_map`,然后找出 `extractSymbols` 定义在哪。
|
|
58
|
-
|
|
59
|
-
agent 依次调用工具:
|
|
60
|
-
|
|
61
|
-
```
|
|
62
|
-
code_map
|
|
63
|
-
# repo map
|
|
64
|
-
## src/extract.ts (14)
|
|
65
|
-
function extractSymbols(code, id) :121
|
|
66
|
-
function languageForFile(filePath) :37
|
|
67
|
-
...
|
|
68
|
-
|
|
69
|
-
code_search { query: "extractSymbols" }
|
|
70
|
-
export function extractSymbols(code, id) — src/extract.ts:121
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
索引在首次使用时惰性构建;后续调用由磁盘缓存提供,并按 mtime 增量刷新。
|
|
74
|
-
|
|
75
|
-
## 配置
|
|
76
|
-
|
|
77
|
-
选项通过插件行的 `config` 在 profile 补丁中传入(缺省时使用默认值):
|
|
78
|
-
|
|
79
|
-
```yaml
|
|
80
|
-
# $DSH_HOME/profiles/<name>/cordis.patch.yml —— 裸行按 id 覆盖。
|
|
81
|
-
- id: code-index
|
|
82
|
-
config:
|
|
83
|
-
excludeDirs: [generated, playground]
|
|
84
|
-
mapTopFiles: 30
|
|
85
|
-
mapMaxChars: 4000
|
|
86
|
-
autoInject: true
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
| 键 | 默认 | 含义 |
|
|
90
|
-
|---|---|---|
|
|
91
|
-
| `excludeDirs` | `[]` | 追加到内置排除列表(`node_modules`、`.git`、`dist`、`build`、`out`、`coverage`、`.next`、`.nuxt`、`.cache`、`target`、`vendor`……)之外的额外目录 |
|
|
92
|
-
| `mapTopFiles` | `24` | 排名地图中的最大文件数 |
|
|
93
|
-
| `mapMaxChars` | `3200` | 渲染地图的硬性字符上限 |
|
|
94
|
-
| `mapTtlMs` | `60000` | 自动注入地图的刷新间隔(毫秒,最小 1000) |
|
|
95
|
-
| `autoInject` | `true` | 是否注册系统提示词段 |
|
|
96
|
-
|
|
97
|
-
## 支持的语言
|
|
98
|
-
|
|
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` + 语法文件)预留了后续接入其他语言/嵌入检索的位置。
|
|
100
|
-
|
|
101
|
-
## 工作原理
|
|
102
|
-
|
|
103
|
-
- **索引构建**(`src/buildIndex.ts`):递归扫描(应用排除规则),逐文件 tree-sitter 提取(`src/extract.ts`),JSON 缓存置于 `<repo>/.dsh-code-index/`,按 mtime 增量刷新(只有被改动的文件才重新解析)。
|
|
104
|
-
- **搜索**(`src/search.ts`):纯打分——精确 `1` / 前缀 `0.8` / 子串 `0.5`,导出加权,名称序平局裁决。
|
|
105
|
-
- **仓库地图**(`src/repomap.ts`)
|
|
106
|
-
- **工作区解析**:每个工具解析会话 cwd(`agent.session.header.cwd`)并向上查找最近的 `.git`(有界——没有仓库标记的目录绝不会被索引)。
|
|
107
|
-
|
|
108
|
-
## 已知限制
|
|
109
|
-
|
|
110
|
-
- **web-tree-sitter 固定为 `^0.20.8`** —— 新版本期望 dylink 语法的 wasm,而 `tree-sitter-wasms` 提供静态构建;此组合在 Node ≥ 22/24 下验证可用。
|
|
111
|
-
- 自动注入段针对**默认工作区**(启动目录,与 headless/CLI 模式一致)。多工作区 Web UI 会话应使用 `code_map`/`code_symbols`(它们按会话 cwd 解析)。
|
|
112
|
-
- 局部变量也会被索引——召回优先于精确;`code_search` 的排名会压低它们。
|
|
113
|
-
- 开发者预览版 harness:上游 harness/插件 API 大概率有破坏性变更。
|
|
114
|
-
|
|
115
|
-
## 开发
|
|
116
|
-
|
|
117
|
-
```sh
|
|
118
|
-
pnpm install
|
|
119
|
-
pnpm test # vitest —— 提取器、扫描、缓存、搜索、仓库地图
|
|
120
|
-
pnpm typecheck
|
|
121
|
-
pnpm build # tsup → dist/index.js(ESM,外部依赖)
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
1
|
+
# dsh-code-index
|
|
2
|
+
|
|
3
|
+
[English](README.md) | 中文
|
|
4
|
+
|
|
5
|
+
语义仓库索引 —— 一个 [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)(`dsh`)插件,为 agent 提供**代码库地图**:基于 tree-sitter 的符号索引、带排名的符号搜索,以及注入到系统提示词里的限量自动更新仓库地图。
|
|
6
|
+
|
|
7
|
+
填补了一个真实的生态缺口:检索 `dsh-plugin` 话题(2026-08)会发现 git/语音/浏览器/记忆类插件琳琅满目,但**缺少原生、模型可用的代码索引 / 仓库地图能力**——也就是 aider 的 repo-map 和 Cursor 的 `@Codebase` 为各自 agent 提供的同类能力。
|
|
8
|
+
|
|
9
|
+
## 模型能得到什么
|
|
10
|
+
|
|
11
|
+
| 工具 | 用途 |
|
|
12
|
+
|---|---|
|
|
13
|
+
| `code_index` | 查看 / (重)建当前工作区的索引 |
|
|
14
|
+
| `code_symbols` | 列出符号(函数、类、接口、类型、方法……),带 file:line——支持按名称、路径、类型、是否导出过滤 |
|
|
15
|
+
| `code_search` | 排名检索:精确 > 前缀 > 子串 > 子序列模糊,导出优先,带相关度分数与 file:line |
|
|
16
|
+
| `code_map` | 限量排名仓库地图(按符号密度 + import 图 PageRank 取核心文件 + 关键符号与行号) |
|
|
17
|
+
|
|
18
|
+
外加一个可选的**自动注入系统提示词段**(`code-index:repo-map`,序 60):默认工作区的精简排名地图,按 TTL 自动刷新(`mapTtlMs`,默认 60 秒)。将 `autoInject: false` 可关闭,只依赖 `code_map` 工具。
|
|
19
|
+
|
|
20
|
+
## 安装
|
|
21
|
+
|
|
22
|
+
需要 `dsh`(任意安装方式——npx、npm 或源码)与 Node ≥ 22。
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
# 从 npm(预编译)
|
|
26
|
+
npx @deepseek-ai/dsh plugin --profile web add dsh-code-index
|
|
27
|
+
|
|
28
|
+
# 或从包含本仓库检查副本的目录
|
|
29
|
+
npx @deepseek-ai/dsh plugin --profile web add ./dsh-code-index
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
重启 Web UI(`npx @deepseek-ai/dsh web`)——启动日志会确认每个工具:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
[dsh-code-index] plugin loaded
|
|
36
|
+
[dsh-code-index] registered tool: code_index
|
|
37
|
+
...
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
不启动即可核对组合配置:`dsh --profile web --dump-config`。
|
|
41
|
+
|
|
42
|
+
## 使用
|
|
43
|
+
|
|
44
|
+
在工作区会话中,向 agent 提这类请求:
|
|
45
|
+
|
|
46
|
+
- "我们现在在哪个仓库?先跑 code_map。"
|
|
47
|
+
- "找出所有名字含 `parse` 的函数及其位置。"
|
|
48
|
+
- "列出 src/core 里的导出符号。"
|
|
49
|
+
- "重建代码索引。"
|
|
50
|
+
|
|
51
|
+
*索引*本身不需要 API key;模型当然要配置好才能调用这些工具。
|
|
52
|
+
|
|
53
|
+
## 示例(输入 → 输出)
|
|
54
|
+
|
|
55
|
+
用户提示:
|
|
56
|
+
|
|
57
|
+
> 我们现在在哪个仓库?先跑 `code_map`,然后找出 `extractSymbols` 定义在哪。
|
|
58
|
+
|
|
59
|
+
agent 依次调用工具:
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
code_map
|
|
63
|
+
# repo map
|
|
64
|
+
## src/extract.ts (14)
|
|
65
|
+
function extractSymbols(code, id) :121
|
|
66
|
+
function languageForFile(filePath) :37
|
|
67
|
+
...
|
|
68
|
+
|
|
69
|
+
code_search { query: "extractSymbols" }
|
|
70
|
+
export function extractSymbols(code, id) — src/extract.ts:121
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
索引在首次使用时惰性构建;后续调用由磁盘缓存提供,并按 mtime 增量刷新。
|
|
74
|
+
|
|
75
|
+
## 配置
|
|
76
|
+
|
|
77
|
+
选项通过插件行的 `config` 在 profile 补丁中传入(缺省时使用默认值):
|
|
78
|
+
|
|
79
|
+
```yaml
|
|
80
|
+
# $DSH_HOME/profiles/<name>/cordis.patch.yml —— 裸行按 id 覆盖。
|
|
81
|
+
- id: code-index
|
|
82
|
+
config:
|
|
83
|
+
excludeDirs: [generated, playground]
|
|
84
|
+
mapTopFiles: 30
|
|
85
|
+
mapMaxChars: 4000
|
|
86
|
+
autoInject: true
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
| 键 | 默认 | 含义 |
|
|
90
|
+
|---|---|---|
|
|
91
|
+
| `excludeDirs` | `[]` | 追加到内置排除列表(`node_modules`、`.git`、`dist`、`build`、`out`、`coverage`、`.next`、`.nuxt`、`.cache`、`target`、`vendor`……)之外的额外目录 |
|
|
92
|
+
| `mapTopFiles` | `24` | 排名地图中的最大文件数 |
|
|
93
|
+
| `mapMaxChars` | `3200` | 渲染地图的硬性字符上限 |
|
|
94
|
+
| `mapTtlMs` | `60000` | 自动注入地图的刷新间隔(毫秒,最小 1000) |
|
|
95
|
+
| `autoInject` | `true` | 是否注册系统提示词段 |
|
|
96
|
+
|
|
97
|
+
## 支持的语言
|
|
98
|
+
|
|
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` + 语法文件)预留了后续接入其他语言/嵌入检索的位置。
|
|
100
|
+
|
|
101
|
+
## 工作原理
|
|
102
|
+
|
|
103
|
+
- **索引构建**(`src/buildIndex.ts`):递归扫描(应用排除规则),逐文件 tree-sitter 提取(`src/extract.ts`),JSON 缓存置于 `<repo>/.dsh-code-index/`,按 mtime 增量刷新(只有被改动的文件才重新解析)。
|
|
104
|
+
- **搜索**(`src/search.ts`):纯打分——精确 `1` / 前缀 `0.8` / 子串 `0.5`,导出加权,名称序平局裁决。
|
|
105
|
+
- **仓库地图**(`src/repomap.ts`):import 图上的个性化 PageRank(传送向量 = 各文件密度份额,被其他枢纽文件引用的枢纽会比平铺入度统计排得更靠前),以密度感知的文件打分为底(class/interface/function 加权,测试路径衰减),取 Top-N 文件,每文件符号上限,硬截断。
|
|
106
|
+
- **工作区解析**:每个工具解析会话 cwd(`agent.session.header.cwd`)并向上查找最近的 `.git`(有界——没有仓库标记的目录绝不会被索引)。
|
|
107
|
+
|
|
108
|
+
## 已知限制
|
|
109
|
+
|
|
110
|
+
- **web-tree-sitter 固定为 `^0.20.8`** —— 新版本期望 dylink 语法的 wasm,而 `tree-sitter-wasms` 提供静态构建;此组合在 Node ≥ 22/24 下验证可用。
|
|
111
|
+
- 自动注入段针对**默认工作区**(启动目录,与 headless/CLI 模式一致)。多工作区 Web UI 会话应使用 `code_map`/`code_symbols`(它们按会话 cwd 解析)。
|
|
112
|
+
- 局部变量也会被索引——召回优先于精确;`code_search` 的排名会压低它们。
|
|
113
|
+
- 开发者预览版 harness:上游 harness/插件 API 大概率有破坏性变更。
|
|
114
|
+
|
|
115
|
+
## 开发
|
|
116
|
+
|
|
117
|
+
```sh
|
|
118
|
+
pnpm install
|
|
119
|
+
pnpm test # vitest —— 提取器、扫描、缓存、搜索、仓库地图
|
|
120
|
+
pnpm typecheck
|
|
121
|
+
pnpm build # tsup → dist/index.js(ESM,外部依赖)
|
|
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
|
+
|
|
137
|
+
## 许可证
|
|
138
|
+
|
|
126
139
|
MIT。与 DeepSeek 无关;基于公开的 `dsh` 插件接口构建。
|
package/cordis.patch.yml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# dsh-code-index bundle: inserts the plugin row into the composition.
|
|
2
|
-
# Later layers (profile cordis.patch.yml, --patch) may override this row by id.
|
|
3
|
-
- insert:
|
|
4
|
-
- id: code-index
|
|
1
|
+
# dsh-code-index bundle: inserts the plugin row into the composition.
|
|
2
|
+
# Later layers (profile cordis.patch.yml, --patch) may override this row by id.
|
|
3
|
+
- insert:
|
|
4
|
+
- id: code-index
|
|
5
5
|
name: dsh-code-index
|
package/dist/index.js
CHANGED
|
@@ -608,10 +608,14 @@ function scoreFile(file) {
|
|
|
608
608
|
function rankRepoMap(index, options = {}) {
|
|
609
609
|
const topFiles = options.topFiles ?? 24;
|
|
610
610
|
const perFile = options.symbolsPerFile ?? 18;
|
|
611
|
-
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);
|
|
612
616
|
const ranked = index.files.filter((f) => f.symbols.length > 0).map((f) => ({
|
|
613
617
|
file: f,
|
|
614
|
-
score:
|
|
618
|
+
score: (density.get(f.path) ?? 0) + REF_WEIGHT * (centrality.get(f.path) ?? 0)
|
|
615
619
|
})).sort((a, b) => b.score - a.score || a.file.path.localeCompare(b.file.path)).slice(0, topFiles);
|
|
616
620
|
return ranked.map(({ file, score }) => ({
|
|
617
621
|
path: file.path,
|
|
@@ -625,20 +629,60 @@ function rankRepoMap(index, options = {}) {
|
|
|
625
629
|
}));
|
|
626
630
|
}
|
|
627
631
|
var REF_WEIGHT = 0.5;
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
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();
|
|
631
644
|
for (const file of files) {
|
|
632
|
-
|
|
645
|
+
if (!fileSet.has(file.path)) continue;
|
|
646
|
+
const targets = out.get(file.path) ?? /* @__PURE__ */ new Set();
|
|
633
647
|
for (const spec of file.imports ?? []) {
|
|
634
648
|
const target = resolveImport(spec, file.path, fileSet);
|
|
635
649
|
if (target && target !== file.path) targets.add(target);
|
|
636
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);
|
|
637
658
|
for (const target of targets) {
|
|
638
|
-
|
|
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]);
|
|
639
679
|
}
|
|
680
|
+
rank = next;
|
|
681
|
+
if (delta < CONVERGENCE_TOL) break;
|
|
640
682
|
}
|
|
641
|
-
|
|
683
|
+
const result = /* @__PURE__ */ new Map();
|
|
684
|
+
for (let i = 0; i < n; i++) result.set(nodes[i], rank[i]);
|
|
685
|
+
return result;
|
|
642
686
|
}
|
|
643
687
|
function resolveImport(spec, fromPath, fileSet) {
|
|
644
688
|
if (!spec) return null;
|
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. */\r\n\r\nimport { readFile, stat } from 'node:fs/promises'\r\nimport path from 'node:path'\r\nimport { extractAll, languageForFile } from './extract.js'\r\nimport { scanRepo, DEFAULT_EXCLUDED_DIRS } from './scan.js'\r\nimport {\r\n cacheKeyForRoot,\r\n defaultCachePath,\r\n legacyCachePath,\r\n loadIndex,\r\n saveIndex,\r\n} from './store.js'\r\nimport type { IndexOptions, IndexedFile, RepoIndex } from './types.js'\r\n\r\n/**\r\n * Full build: scan + extract every supported file. Existing per-file\r\n * extraction is reused when `previous` holds an identical mtime for the\r\n * same rel path (incremental refresh), so touched files alone re-parse.\r\n */\r\nexport async function buildIndex(\r\n root: string,\r\n options: IndexOptions = {},\r\n previous: RepoIndex | null = null,\r\n): Promise<RepoIndex> {\r\n const scanned = await scanRepo(root, options)\r\n\r\n // Index stale/current state from the previous run by rel path.\r\n const prevByPath = new Map((previous?.files ?? []).map((f) => [f.path, f]))\r\n const prevMtime = new Map((previous?.files ?? []).map((f) => [f.path, f.mtimeMs]))\r\n\r\n const files: IndexedFile[] = []\r\n const BATCH = 8\r\n for (let i = 0; i < scanned.length; i += BATCH) {\r\n const batch = scanned.slice(i, i + BATCH)\r\n const rows = await Promise.all(\r\n batch.map(async (f) => {\r\n const lang = languageForFile(f.abs)\r\n if (!lang) return null\r\n if (prevMtime.get(f.rel) === f.mtimeMs) {\r\n const cached = prevByPath.get(f.rel)!\r\n return {\r\n ...cached,\r\n mtimeMs: f.mtimeMs,\r\n symbols: cached.symbols.map((symbol) => ({ ...symbol, file: f.rel })),\r\n }\r\n }\r\n let code: string\r\n try {\r\n code = await readFile(f.abs, 'utf8')\r\n } catch {\r\n return null\r\n }\r\n const { symbols, imports } = await extractAll(code, lang)\r\n // Backfill the repo-relative path: the extractor is file-agnostic and\r\n // leaves SymbolInfo.file empty, but search/render depend on it.\r\n return {\r\n path: f.rel,\r\n lang,\r\n mtimeMs: f.mtimeMs,\r\n symbols: symbols.map((s) => ({ ...s, file: f.rel })),\r\n imports,\r\n } satisfies IndexedFile\r\n }),\r\n )\r\n for (const f of rows) {\r\n if (f) files.push(f)\r\n }\r\n }\r\n\r\n return {\r\n root,\r\n generatedAt: Date.now(),\r\n files,\r\n excludedDirs: [...DEFAULT_EXCLUDED_DIRS, ...(options.excludeDirs ?? [])],\r\n }\r\n}\r\n\r\n/** Convenience wrapper: evolve an on-disk cache if `root` exists. */\r\nexport async function buildIndexWithCache(\r\n root: string,\r\n options: IndexOptions = {},\r\n cacheDir?: string,\r\n): Promise<RepoIndex> {\r\n const cachePath = defaultCachePath(root, cacheDir)\r\n let prev = await loadIndex(cachePath)\r\n let loadedLegacy = false\r\n if (!prev) {\r\n const oldPath = legacyCachePath(root, cacheDir)\r\n if (oldPath !== cachePath) {\r\n prev = await loadIndex(oldPath)\r\n loadedLegacy = prev !== null\r\n }\r\n }\r\n const reusable = prev && cacheKeyForRoot(prev.root) === cacheKeyForRoot(root) ? prev : null\r\n const fresh = await buildIndex(root, options, reusable)\r\n if (prev && indexesEqual(prev, fresh)) {\r\n if (loadedLegacy) await saveIndex(cachePath, fresh)\r\n return loadedLegacy ? fresh : prev\r\n }\r\n await saveIndex(cachePath, fresh)\r\n return fresh\r\n}\r\n\r\nfunction indexesEqual(left: RepoIndex, right: RepoIndex): boolean {\r\n if (cacheKeyForRoot(left.root) !== cacheKeyForRoot(right.root)) return false\r\n if (left.files.length !== right.files.length) return false\r\n if (left.excludedDirs.length !== right.excludedDirs.length) return false\r\n if (left.excludedDirs.some((value, index) => value !== right.excludedDirs[index])) return false\r\n\r\n return left.files.every((file, fileIndex) => {\r\n const other = right.files[fileIndex]\r\n if (!other || file.path !== other.path || file.lang !== other.lang || file.mtimeMs !== other.mtimeMs) {\r\n return false\r\n }\r\n if (file.symbols.length !== other.symbols.length) return false\r\n return file.symbols.every((symbol, symbolIndex) => {\r\n const candidate = other.symbols[symbolIndex]\r\n return candidate !== undefined\r\n && symbol.name === candidate.name\r\n && symbol.kind === candidate.kind\r\n && symbol.file === candidate.file\r\n && symbol.line === candidate.line\r\n && symbol.endLine === candidate.endLine\r\n && symbol.exported === candidate.exported\r\n && symbol.signature === candidate.signature\r\n })\r\n })\r\n}\r\n\r\n/**\r\n * Locate the git repo root for a path by walking up to the nearest `.git`\r\n * directory. Bounded walk (max `maxLevels` levels); returns `null` when no\r\n * repo marker is found — callers must NOT index an untagged directory\r\n * (the fs root is the classic footgun: indexing `C:\\` by accident).\r\n */\r\nexport async function findRepoRoot(startDir: string, maxLevels = 12): Promise<string | null> {\r\n let dir = path.resolve(startDir)\r\n for (let level = 0; level < maxLevels; level++) {\r\n try {\r\n // stat() accepts BOTH a `.git` directory (normal repos) and a `.git`\r\n // file (worktrees / submodules) — readFile only handled the file form.\r\n await stat(path.join(dir, '.git'))\r\n return dir\r\n } catch {\r\n // not a repo here — keep walking\r\n }\r\n const parent = path.dirname(dir)\r\n if (parent === dir) return null\r\n dir = parent\r\n }\r\n return null\r\n}\r\n","/**\r\n * tree-sitter symbol extraction.\r\n *\r\n * Parses a source text with a per-language grammar (web-tree-sitter WASM,\r\n * static grammars from tree-sitter-wasms) and returns flat SymbolInfo rows.\r\n *\r\n * NOTE on the dependency pin: web-tree-sitter must stay at ^0.20.x — newer\r\n * releases expect dylinked grammar wasm, while tree-sitter-wasms ships\r\n * static builds. Verified working pair: web-tree-sitter@0.20.8 + tree-sitter-wasms@0.1.13.\r\n */\r\n\r\nimport { readFile } from 'node:fs/promises'\r\nimport { createRequire } from 'node:module'\r\nimport path from 'node:path'\r\nimport Parser from 'web-tree-sitter'\r\nimport type { SymbolInfo, SymbolKind } from './types.js'\r\n\r\nconst require = createRequire(import.meta.url)\r\n// web-tree-sitter@0.20.8 is CJS `export = Parser`; default-interop gives the class directly.\r\n\r\nexport type LanguageId = 'typescript' | 'javascript' | 'python' | 'go' | 'rust' | 'java'\r\n\r\nconst WASM_DIR = path.dirname(require.resolve('tree-sitter-wasms/out/tree-sitter-typescript.wasm'))\r\n\r\nconst GRAMMAR_NAMES: Record<LanguageId, string> = {\r\n typescript: 'tree-sitter-typescript',\r\n javascript: 'tree-sitter-javascript',\r\n python: 'tree-sitter-python',\r\n go: 'tree-sitter-go',\r\n rust: 'tree-sitter-rust',\r\n java: 'tree-sitter-java',\r\n}\r\n\r\nconst EXT_TO_LANG: Record<string, LanguageId> = {\r\n '.ts': 'typescript',\r\n '.tsx': 'typescript',\r\n '.mts': 'typescript',\r\n '.cts': 'typescript',\r\n '.js': 'javascript',\r\n '.jsx': 'javascript',\r\n '.mjs': 'javascript',\r\n '.cjs': 'javascript',\r\n '.py': 'python',\r\n '.pyi': 'python',\r\n '.go': 'go',\r\n '.rs': 'rust',\r\n '.java': 'java',\r\n}\r\n\r\nexport function languageForFile(filePath: string): LanguageId | null {\r\n const ext = path.extname(filePath).toLowerCase()\r\n return EXT_TO_LANG[ext] ?? null\r\n}\r\n\r\n/** Kind of a capture per query. */\r\ntype CaptureDef = { kind: SymbolKind; exported?: boolean }\r\n\r\n// Query definitions per language. Captures bind to the DECLARATION node\r\n// (capture OUTSIDE the pattern: `(function_declaration) @function` — the\r\n// 0.20 query parser rejects a capture sitting directly after the node type\r\n// inside the parens). Names/signatures/export come from node fields.\r\nconst QUERIES: Record<LanguageId, string> = {\r\n typescript: `\r\n (function_declaration) @function\r\n (generator_function_declaration) @function\r\n (method_definition) @method\r\n (class_declaration) @class\r\n (interface_declaration) @interface\r\n (type_alias_declaration) @type\r\n (enum_declaration) @enum\r\n (variable_declarator) @variable\r\n (public_field_definition) @field\r\n (abstract_class_declaration) @class\r\n `,\r\n // JS shares the same query surface; type-related patterns simply never match.\r\n javascript: `\r\n (function_declaration) @function\r\n (generator_function_declaration) @function\r\n (method_definition) @method\r\n (class_declaration) @class\r\n (variable_declarator) @variable\r\n `,\r\n python: `\r\n (function_definition) @function\r\n (class_definition) @class\r\n `,\r\n go: `\r\n (function_declaration) @function\r\n (method_declaration) @method\r\n (type_spec) @type\r\n `,\r\n rust: `\r\n (function_item) @function\r\n (function_signature_item) @method\r\n (struct_item) @class\r\n (enum_item) @enum\r\n (trait_item) @interface\r\n `,\r\n java: `\r\n (class_declaration) @class\r\n (interface_declaration) @interface\r\n (enum_declaration) @enum\r\n (method_declaration) @method\r\n (constructor_declaration) @method\r\n `,\r\n}\r\n\r\nconst CAPTURE_KINDS: Record<string, CaptureDef> = {\r\n function: { kind: 'function' },\r\n method: { kind: 'method' },\r\n class: { kind: 'class' },\r\n interface: { kind: 'interface' },\r\n type: { kind: 'type' },\r\n enum: { kind: 'enum' },\r\n variable: { kind: 'variable' },\r\n field: { kind: 'field' },\r\n}\r\n\r\n// Import statements per language. Whole statements are captured; the module\r\n// specifier is read from node fields in code (string quoting, dotted vs\r\n// relative vs URL-style syntax differ per grammar). CommonJS require() is out\r\n// of scope — the ES import surface covers the modern plugin ecosystem.\r\nconst IMPORT_QUERIES: Record<LanguageId, string> = {\r\n typescript: `\r\n (import_statement) @import\r\n (export_statement) @reexport\r\n `,\r\n javascript: `\r\n (import_statement) @import\r\n (export_statement) @reexport\r\n `,\r\n python: `\r\n (import_from_statement) @import\r\n (import_statement) @import\r\n `,\r\n go: `\r\n (import_spec) @import\r\n `,\r\n rust: `\r\n (use_declaration) @use\r\n `,\r\n java: `\r\n (import_declaration) @import\r\n `,\r\n}\r\n\r\nlet parserPromise: Promise<Parser> | null = null\r\n\r\nasync function getParser(): Promise<Parser> {\r\n if (!parserPromise) {\r\n parserPromise = (async () => {\r\n const wasm = path.join(path.dirname(require.resolve('web-tree-sitter')), 'tree-sitter.wasm')\r\n await Parser.init({ locateFile: () => wasm })\r\n const p = new Parser()\r\n return p\r\n })()\r\n }\r\n return parserPromise\r\n}\r\n\r\nconst languageCache = new Map<LanguageId, Promise<Parser.Language>>()\r\n\r\nfunction getLanguage(id: LanguageId): Promise<Parser.Language> {\r\n let entry = languageCache.get(id)\r\n if (!entry) {\r\n entry = getParser().then(async () => {\r\n const grammarPath = path.join(WASM_DIR, `${GRAMMAR_NAMES[id]}.wasm`)\r\n const bytes = await readFile(grammarPath)\r\n const lang = await Parser.Language.load(bytes)\r\n // Precompile queries per language to catch authoring errors early.\r\n const q = lang.query(QUERIES[id])\r\n q.delete()\r\n const iq = lang.query(IMPORT_QUERIES[id])\r\n iq.delete()\r\n return lang\r\n })\r\n languageCache.set(id, entry)\r\n }\r\n return entry\r\n}\r\n\r\n/**\r\n * Extract symbols and raw import specifiers from source text of the given\r\n * language, from a single parse. Returns rows ordered by file line. Never\r\n * throws for parse errors — a failed parse yields empty lists (the caller\r\n * logs and continues).\r\n */\r\nexport interface ExtractedFile {\r\n symbols: SymbolInfo[]\r\n /** Raw module specifiers, e.g. './util', 'node:fs', './utils' (py). */\r\n imports: string[]\r\n}\r\n\r\nexport async function extractAll(code: string, id: LanguageId): Promise<ExtractedFile> {\r\n const lang = await getLanguage(id)\r\n const parser = await getParser()\r\n parser.setLanguage(lang)\r\n const tree = parser.parse(code)\r\n try {\r\n const symbols: SymbolInfo[] = []\r\n const symbolQuery = lang.query(QUERIES[id])\r\n try {\r\n const captures = symbolQuery.captures(tree.rootNode)\r\n for (const cap of captures) {\r\n const def = CAPTURE_KINDS[cap.name]\r\n if (!def) continue\r\n const node = cap.node\r\n // tree-sitter queries match at any depth; without this check the\r\n // variable_declarator pattern would also capture function-body\r\n // locals — pure index noise.\r\n if (def.kind === 'variable' && !isModuleLevelVariable(node)) continue\r\n const name = nameOf(node)\r\n if (!name) continue\r\n symbols.push({\r\n name,\r\n kind: kindFor(id, node, def.kind),\r\n file: '', // set by the caller (extractor is file-agnostic)\r\n line: node.startPosition.row + 1,\r\n endLine: node.endPosition.row + 1,\r\n exported: isExported(id, node),\r\n signature: signatureFor(node),\r\n })\r\n }\r\n } finally {\r\n symbolQuery.delete()\r\n }\r\n\r\n const imports: string[] = []\r\n const importQuery = lang.query(IMPORT_QUERIES[id])\r\n try {\r\n for (const cap of importQuery.captures(tree.rootNode)) {\r\n const spec = specifierOf(id, cap.node)\r\n if (spec) imports.push(spec)\r\n }\r\n } finally {\r\n importQuery.delete()\r\n }\r\n\r\n symbols.sort((a, b) => a.line - b.line)\r\n return { symbols, imports }\r\n } finally {\r\n tree.delete()\r\n }\r\n}\r\n\r\n/** Symbols only — see extractAll for the combined parse. */\r\nexport async function extractSymbols(code: string, id: LanguageId): Promise<SymbolInfo[]> {\r\n return (await extractAll(code, id)).symbols\r\n}\r\n\r\n/** The declared name of a declaration node, via its `name` field. */\r\nfunction nameOf(node: Parser.SyntaxNode): string {\r\n const field = node.childForFieldName?.('name')\r\n if (field) return field.text.trim()\r\n // e.g. an anonymous default export — skip those.\r\n return ''\r\n}\r\n\r\n/** Read the raw module specifier out of a captured import statement. */\r\nfunction specifierOf(id: LanguageId, node: Parser.SyntaxNode): string | null {\r\n switch (node.type) {\r\n case 'import_statement':\r\n // ts/js: `import … from './x'` (source); python: `import a.b` (name)\r\n if (id === 'python') return dottedToPath(node.childForFieldName('name')?.text)\r\n return stripQuotes(node.childForFieldName('source')?.text)\r\n case 'export_statement':\r\n // ts/js re-export: `export … from './x'`; plain exports have no source\r\n return stripQuotes(node.childForFieldName('source')?.text)\r\n case 'import_from_statement': {\r\n // python: `from .utils import x` / `from mypkg.core import Thing`\r\n const raw = node.childForFieldName('module_name')?.text\r\n if (raw == null) return null\r\n return raw.startsWith('.') ? pythonRelative(raw) : dottedToPath(raw)\r\n }\r\n case 'import_spec': // go: `import \"example.com/foo/util\"`\r\n return stripQuotes(node.childForFieldName('path')?.text)\r\n case 'use_declaration': // rust: `use crate::a::b::{c, d}`\r\n return rustUsePath(node.childForFieldName('argument')?.text)\r\n case 'import_declaration': // java: `import com.example.Thing;`\r\n return dottedToPath(node.namedChildren[0]?.text)\r\n default:\r\n return null\r\n }\r\n}\r\n\r\n/**\r\n * Rust use paths: 'crate::a::b' is root-relative, 'super::x' is parent-module\r\n * ('../x'), 'self::x' is current ('./x'); everything else (std, external\r\n * crates) stays root-relative and simply won't resolve in-repo. Use-lists\r\n * ('a::b::{c,d}') contribute their base path.\r\n */\r\nfunction rustUsePath(text: string | undefined | null): string | null {\r\n if (!text) return null\r\n const base = text.split('{')[0].trim()\r\n if (!base) return null\r\n const parts = base.split('::').filter(Boolean)\r\n if (parts[0] === 'crate') parts.shift()\r\n return parts.map((p) => (p === 'super' ? '..' : p === 'self' ? '.' : p)).join('/')\r\n}\r\n\r\nfunction stripQuotes(text: string | undefined | null): string | null {\r\n if (text == null || text.length < 2) return null\r\n const first = text[0]\r\n const last = text[text.length - 1]\r\n if ((first === \"'\" && last === \"'\") || (first === '\"' && last === '\"')) {\r\n return text.slice(1, -1)\r\n }\r\n return null\r\n}\r\n\r\n/** 'os.path' → 'os/path' — dotted module path to repo-relative-ish path. */\r\nfunction dottedToPath(text: string | undefined | null): string | null {\r\n if (!text) return null\r\n return text.trim().replace(/\\./g, '/')\r\n}\r\n\r\n/** '.utils' → './utils', '..pkg.mod' → '../pkg/mod' — python relative import. */\r\nfunction pythonRelative(raw: string): string {\r\n const dots = raw.match(/^\\.+/)?.[0].length ?? 0\r\n const rest = raw.slice(dots).replace(/\\./g, '/')\r\n const prefix = dots === 1 ? './' : '../'.repeat(dots - 1)\r\n return prefix + rest\r\n}\r\n\r\n/** Best-effort declaration signature: `name` + parameter list, if any. */\r\nfunction signatureFor(node: Parser.SyntaxNode): string {\r\n const name = nameOf(node)\r\n // Field first (go method_declaration has both a receiver and a parameters\r\n // parameter_list — the field picks the right one), type fallback otherwise.\r\n const params =\r\n node.childForFieldName?.('parameters') ??\r\n node.namedChildren.find(\r\n (c) =>\r\n c.type === 'formal_parameters' ||\r\n c.type === 'method_parameters' ||\r\n c.type === 'parameters' ||\r\n c.type === 'parameter_list',\r\n )\r\n if (params) {\r\n return `${name}${collapseSpace(params.text)}`\r\n }\r\n const first = node.namedChildren[0]\r\n return first ? collapseSpace(first.text) : name\r\n}\r\n\r\n/**\r\n * Signatures must stay one line: repo-map rows are budgeted per line, and a\r\n * multi-line parameter list would both wrap the format and burn chars.\r\n */\r\nfunction collapseSpace(text: string): string {\r\n return text\r\n .replace(/\\s+/g, ' ')\r\n .replace(/\\( /g, '(')\r\n .replace(/ \\)/g, ')')\r\n .replace(/ ,/g, ',')\r\n .replace(/,\\)/g, ')')\r\n .trim()\r\n}\r\n\r\n/**\r\n * A variable is indexable only at module level: its declaration must sit\r\n * directly inside the program (or the export_statement wrapping it). Anything\r\n * deeper — function bodies, blocks, for-of heads — is a local with no\r\n * navigation value.\r\n */\r\nfunction isModuleLevelVariable(node: Parser.SyntaxNode): boolean {\r\n const declaration = node.parent // variable_declaration | lexical_declaration\r\n const container = declaration?.parent // program | export_statement | …\r\n return container?.type === 'program' || container?.type === 'export_statement'\r\n}\r\n\r\n/**\r\n * A symbol is exported when walking up from it reaches an export_statement\r\n * before any function or class body — only module-level declarations count.\r\n * A method inside `export class` must NOT inherit the class's export, and a\r\n * function nested inside an exported function is not exported either.\r\n */\r\nfunction isExported(id: LanguageId, node: Parser.SyntaxNode): boolean {\r\n if (id === 'python') {\r\n // Python has no export syntax: a def/class directly under the module is\r\n // importable, anything nested (methods, inner functions) is not a\r\n // module-level symbol.\r\n return node.parent?.type === 'module'\r\n }\r\n if (id === 'go') {\r\n // Go exports by capitalisation, not by keyword.\r\n const name = nameOf(node)\r\n return !!name && /^[A-Z]/.test(name)\r\n }\r\n if (id === 'rust') {\r\n // `pub` = exported; `pub(crate)` & friends are crate-local, not public.\r\n return node.namedChildren.some(\r\n (c) => c.type === 'visibility_modifier' && c.text === 'pub',\r\n )\r\n }\r\n if (id === 'java') {\r\n // Interface members are implicitly public.\r\n if (node.parent?.type === 'interface_body') return true\r\n return node.namedChildren.some((c) => c.type === 'modifiers' && /\\bpublic\\b/.test(c.text))\r\n }\r\n for (let parent = node.parent; parent; parent = parent.parent) {\r\n if (parent.type === 'export_statement') return true\r\n if (parent.type === 'statement_block' || parent.type === 'class_body') return false\r\n if (parent.type === 'program') return false\r\n }\r\n return false\r\n}\r\n\r\n/**\r\n * Language quirks the query syntax can't express:\r\n * - python: no distinct method node — a def directly in a class body is one\r\n * - go: a type_spec is a class (struct) or interface by its type child\r\n * - rust: function_item directly in an impl body is a method\r\n */\r\nfunction kindFor(id: LanguageId, node: Parser.SyntaxNode, kind: SymbolKind): SymbolKind {\r\n if (id === 'python' && kind === 'function') {\r\n const inClassBody = node.parent?.type === 'block' && node.parent?.parent?.type === 'class_definition'\r\n if (inClassBody) return 'method'\r\n }\r\n if (id === 'go' && node.type === 'type_spec') {\r\n const type = node.childForFieldName('type')?.type\r\n if (type === 'struct_type') return 'class'\r\n if (type === 'interface_type') return 'interface'\r\n return 'type'\r\n }\r\n if (id === 'rust' && node.type === 'function_item') {\r\n const inImpl = node.parent?.type === 'declaration_list' && node.parent?.parent?.type === 'impl_item'\r\n if (inImpl) return 'method'\r\n }\r\n return kind\r\n}\r\n\r\n/** Compile a symbol query for a code sample (used by tests). */\r\nexport async function parseFileToSymbols(\r\n filePath: string,\r\n repoRoot: string,\r\n code?: string,\r\n): Promise<SymbolInfo[]> {\r\n const lang = languageForFile(filePath)\r\n if (!lang) return []\r\n const text = code ?? (await readFile(filePath, 'utf8'))\r\n const rows = await extractSymbols(text, lang)\r\n const rel = path.relative(repoRoot, filePath).split(path.sep).join('/')\r\n return rows.map((r) => ({ ...r, file: rel }))\r\n}","/** Workspace file discovery with dir exclusions and mtime tracking. */\r\n\r\nimport { readdir, stat } from 'node:fs/promises'\r\nimport path from 'node:path'\r\nimport type { IndexOptions } from './types.js'\r\n\r\nexport const DEFAULT_EXCLUDED_DIRS = [\r\n 'node_modules',\r\n '.git',\r\n '.idea',\r\n '.vscode',\r\n 'dist',\r\n 'build',\r\n 'out',\r\n 'coverage',\r\n '.next',\r\n '.nuxt',\r\n '.cache',\r\n 'target',\r\n 'vendor',\r\n '.dsh-code-index',\r\n]\r\n\r\n/** Language-agnostic source extensions we index. */\r\nexport const SUPPORTED_EXTS = new Set([\r\n '.ts',\r\n '.tsx',\r\n '.mts',\r\n '.cts',\r\n '.js',\r\n '.jsx',\r\n '.mjs',\r\n '.cjs',\r\n '.py',\r\n '.pyi',\r\n '.go',\r\n '.rs',\r\n '.java',\r\n])\r\n\r\nexport interface ScannedFile {\r\n /** Absolute path on disk. */\r\n abs: string\r\n /** Repo-relative path (forward-slash). */\r\n rel: string\r\n mtimeMs: number\r\n}\r\n\r\n/**\r\n * Recursively walk `root` and return indexed files, skipping excluded dir\r\n * components at any depth. Uses readdir with `withFileTypes` so we never\r\n * stat every entry; mtime comes from a targeted stat per candidate file.\r\n */\r\nexport async function scanRepo(\r\n root: string,\r\n options: IndexOptions = {},\r\n): Promise<ScannedFile[]> {\r\n const excluded = new Set([...DEFAULT_EXCLUDED_DIRS, ...(options.excludeDirs ?? [])])\r\n const results: ScannedFile[] = []\r\n const queue: Array<[string, string]> = [[root, '']] // [absDir, relDir]\r\n\r\n while (queue.length) {\r\n const [absDir, relDir] = queue.pop()!\r\n let entries\r\n try {\r\n entries = await readdir(absDir, { withFileTypes: true })\r\n } catch {\r\n continue // unreadable dir: skip into the void\r\n }\r\n for (const entry of entries) {\r\n const abs = path.join(absDir, entry.name)\r\n const rel = relDir ? `${relDir}/${entry.name}` : entry.name\r\n if (entry.isDirectory()) {\r\n if (excluded.has(entry.name)) continue\r\n queue.push([abs, rel])\r\n } else if (entry.isFile() && SUPPORTED_EXTS.has(path.extname(entry.name).toLowerCase())) {\r\n try {\r\n const st = await stat(abs)\r\n results.push({ abs, rel, mtimeMs: st.mtimeMs })\r\n } catch {\r\n // race: file deleted mid-scan — ignore\r\n }\r\n }\r\n }\r\n }\r\n\r\n results.sort((a, b) => a.rel.localeCompare(b.rel))\r\n return results\r\n}","/** On-disk JSON cache for RepoIndex, keyed by repo root. */\r\n\r\nimport { mkdir, readFile, rename, rm, writeFile } from 'node:fs/promises'\r\nimport path from 'node:path'\r\nimport { createHash, randomUUID } from 'node:crypto'\r\nimport type { RepoIndex } from './types.js'\r\n\r\nexport const CACHE_DIR_NAME = '.dsh-code-index'\r\n\r\n/** Stable root identity for cache hashing, including Windows case aliases. */\r\nexport function cacheKeyForRoot(root: string): string {\r\n const resolved = path.resolve(root)\r\n return process.platform === 'win32' ? resolved.toLowerCase() : resolved\r\n}\r\n\r\n/** Default cache location: `<repoRoot>/.dsh-code-index/index.json`. */\r\nexport function defaultCachePath(root: string, cacheDir?: string): string {\r\n const dir = cacheDir ?? path.join(root, CACHE_DIR_NAME)\r\n const hash = createHash('sha1').update(cacheKeyForRoot(root)).digest('hex').slice(0, 12)\r\n return path.join(dir, `${hash}.json`)\r\n}\r\n\r\n/** Cache filename used before Windows root casing was canonicalized. */\r\nexport function legacyCachePath(root: string, cacheDir?: string): string {\r\n const dir = cacheDir ?? path.join(root, CACHE_DIR_NAME)\r\n const hash = createHash('sha1').update(root).digest('hex').slice(0, 12)\r\n return path.join(dir, `${hash}.json`)\r\n}\r\n\r\nexport async function loadIndex(cachePath: string): Promise<RepoIndex | null> {\r\n try {\r\n const raw = await readFile(cachePath, 'utf8')\r\n const parsed = JSON.parse(raw) as RepoIndex\r\n if (!parsed || typeof parsed.root !== 'string' || !Array.isArray(parsed.files)) return null\r\n return healSymbolFiles(parsed)\r\n } catch {\r\n return null // missing or corrupt cache == no cache\r\n }\r\n}\r\n\r\n/**\r\n * Self-heal caches written before the per-symbol file backfill (the\r\n * \"SymbolInfo.file is always set\" invariant). Empty `file` fields are derived\r\n * from the containing IndexedFile path on load, so any consumer of loadIndex\r\n * sees consistent rows — and the next save persists the healed form.\r\n */\r\nexport function healSymbolFiles(index: RepoIndex): RepoIndex {\r\n for (const file of index.files) {\r\n for (const symbol of file.symbols) {\r\n if (!symbol.file) symbol.file = file.path\r\n }\r\n }\r\n return index\r\n}\r\n\r\nexport async function saveIndex(cachePath: string, index: RepoIndex): Promise<void> {\r\n await mkdir(path.dirname(cachePath), { recursive: true })\r\n const temporaryPath = `${cachePath}.${process.pid}.${randomUUID()}.tmp`\r\n try {\r\n await writeFile(temporaryPath, JSON.stringify(index, null, 2), { encoding: 'utf8', flag: 'wx' })\r\n await rename(temporaryPath, cachePath)\r\n } finally {\r\n await rm(temporaryPath, { force: true })\r\n }\r\n}\r\n","/** Shared data model for dsh-code-index. */\r\n\r\nexport type SymbolKind =\r\n | 'function'\r\n | 'method'\r\n | 'class'\r\n | 'interface'\r\n | 'type'\r\n | 'enum'\r\n | 'variable'\r\n | 'field'\r\n | 'import'\r\n | 'module'\r\n\r\nexport interface SymbolInfo {\r\n /** Symbol name (identifier / type id / member name). */\r\n name: string\r\n kind: SymbolKind\r\n /** Repo-relative path of the containing file, always forward-slash. */\r\n file: string\r\n /** 1-based start line. */\r\n line: number\r\n /** 1-based end line (inclusive). */\r\n endLine: number\r\n /** True when the symbol is exported at module level (export .. / export default). */\r\n exported: boolean\r\n /** Short human-readable signature, e.g. `greet(name: string)` — empty when n/a. */\r\n signature: string\r\n}\r\n\r\nexport interface IndexedFile {\r\n /** Repo-relative path (forward-slash). */\r\n path: string\r\n lang: string\r\n /** fs mtime of the source file at index time (milliseconds). */\r\n mtimeMs: number\r\n symbols: SymbolInfo[]\r\n /** Raw import specifiers found in this file ('./util', 'mypkg/core', …).\r\n * Optional because caches written before reference ranking lack it. */\r\n imports?: string[]\r\n}\r\n\r\nexport interface RepoIndex {\r\n /** Absolute source root this index describes. */\r\n root: string\r\n /** Unix ms when the index was generated. */\r\n generatedAt: number\r\n files: IndexedFile[]\r\n excludedDirs: string[]\r\n}\r\n\r\nexport function symbolCount(index: RepoIndex): number {\r\n return index.files.reduce((n, f) => n + f.symbols.length, 0)\r\n}\r\n\r\n/** Optional config consumed by the index build pipeline. */\r\nexport interface IndexOptions {\r\n /** Extra directories to exclude, appended to the defaults. */\r\n excludeDirs?: string[]\r\n /** Minimum mtime delta (ms) that forces a re-extract in refresh mode. */\r\n staleToleranceMs?: number\r\n}","/** Pure search / filter logic over a RepoIndex — unit-testable, no IO. */\r\n\r\nimport type { RepoIndex, SymbolInfo, SymbolKind } from './types.js'\r\n\r\nexport interface SymbolFilter {\r\n query?: string\r\n file?: string\r\n kind?: SymbolKind\r\n exportedOnly?: boolean\r\n}\r\n\r\nexport interface RankedHit extends SymbolInfo {\r\n /** 0..1 relevance. 1 = exact name match; lower = fuzzier. */\r\n score: number\r\n}\r\n\r\nfunction matchScore(name: string, query: string): number {\r\n const q = query.toLowerCase()\r\n const n = name.toLowerCase()\r\n if (n === q) return 1\r\n if (n.startsWith(q)) return 0.8\r\n if (n.includes(q)) return 0.5\r\n if (q.length >= 3 && isSubsequence(q, n)) return 0.3\r\n return 0\r\n}\r\n\r\n/**\r\n * Every query char appears in the name, in order — 'cfgldr' finds\r\n * 'configLoader'. Gated to 3+ chars so short queries don't match everything.\r\n */\r\nfunction isSubsequence(query: string, name: string): boolean {\r\n let i = 0\r\n for (const ch of name) {\r\n if (ch === query[i]) i++\r\n if (i === query.length) return true\r\n }\r\n return false\r\n}\r\n\r\n/** Filter symbols by file/kind/export, then score by name against query (if any). */\r\nexport function searchSymbols(\r\n index: RepoIndex,\r\n filter: SymbolFilter,\r\n limit = 50,\r\n): RankedHit[] {\r\n const q = (filter.query ?? '').trim()\r\n const filePat = filter.file?.trim().toLowerCase()\r\n const hits: RankedHit[] = []\r\n\r\n for (const file of index.files) {\r\n if (filePat && !file.path.toLowerCase().includes(filePat)) continue\r\n for (const sym of file.symbols) {\r\n if (filter.kind && sym.kind !== filter.kind) continue\r\n if (filter.exportedOnly && !sym.exported) continue\r\n const score = q ? matchScore(sym.name, q) : 0.4\r\n if (q && score === 0) continue\r\n hits.push({ ...sym, score })\r\n }\r\n }\r\n\r\n // Export boost, then relevance, then stable name order.\r\n hits.sort((a, b) => {\r\n const ab =\r\n Number(b.exported) - Number(a.exported) ||\r\n b.score - a.score ||\r\n a.name.localeCompare(b.name) ||\r\n a.file.localeCompare(b.file)\r\n return ab\r\n })\r\n return hits.slice(0, limit)\r\n}\r\n\r\n/** Neat one-line rendering of a hit for terminal/chat output. */\r\nexport function renderHit(hit: RankedHit): string {\r\n const exportMark = hit.exported ? 'export ' : ''\r\n const sig = hit.signature || hit.name\r\n const score = hit.score < 1 ? ` [${hit.score.toFixed(2)}]` : ''\r\n return `${exportMark}${hit.kind} ${sig}${score} — ${hit.file}:${hit.line}`\r\n}","/**\r\n * Bounded, ranked repo map generation — the \"aider-style\" overview the model\r\n * can turn to before browsing files. Pure logic, no IO.\r\n */\r\n\r\nimport path from 'node:path'\r\nimport { SUPPORTED_EXTS } from './scan.js'\r\nimport type { IndexedFile, RepoIndex, SymbolInfo, SymbolKind } from './types.js'\r\n\r\n/** Higher-weight symbols pull their file up the map. */\r\nexport const KIND_WEIGHT: Record<SymbolKind, number> = {\r\n class: 1.0,\r\n interface: 1.0,\r\n type: 0.8,\r\n function: 0.8,\r\n method: 0.7,\r\n enum: 0.9,\r\n variable: 0.25,\r\n field: 0.2,\r\n import: 0.05,\r\n module: 0.3,\r\n}\r\n\r\nexport interface RepoMapOptions {\r\n /** Max files to include (default 24). */\r\n topFiles?: number\r\n /** Max symbols per file (default 18). */\r\n symbolsPerFile?: number\r\n /** Hard cap on rendered characters (default 3200). */\r\n maxChars?: number\r\n}\r\n\r\nexport interface RepoMapEntry {\r\n path: string\r\n score: number\r\n symbols: Array<{ name: string; kind: SymbolKind; line: number; signature: string }>\r\n}\r\n\r\n/**\r\n * Paths that look like tests. A map led by test files reads as noise: tests\r\n * reference an API, they rarely explain it — and symbol density actively\r\n * favours them (many small functions), so they need an explicit damper.\r\n */\r\nconst TEST_PATH_RE =\r\n /(^|\\/)(tests?|__tests__)(\\/|$)|\\.(?:spec|test)\\.[cm]?[jt]sx?$|(^|\\/)(?:test_[^/]+\\.py|[^/]+_test\\.(?:py|go))$/\r\n\r\n/** Density-aware file score: weighted symbols minus bloat; test paths damped. */\r\nexport function scoreFile(file: IndexedFile): number {\r\n let score = 0\r\n for (const sym of file.symbols) {\r\n score += KIND_WEIGHT[sym.kind] ?? 0.3\r\n if (sym.exported) score += 0.3\r\n }\r\n score /= 1 + file.symbols.length * 0.04\r\n if (TEST_PATH_RE.test(file.path)) score *= 0.2\r\n return score\r\n}\r\n\r\n/** Rank files, take the top slice, cap per-file symbols. */\r\nexport function rankRepoMap(index: RepoIndex, options: RepoMapOptions = {}): RepoMapEntry[] {\r\n const topFiles = options.topFiles ?? 24\r\n const perFile = options.symbolsPerFile ?? 18\r\n const refs = countReferences(index.files)\r\n const ranked = index.files\r\n .filter((f) => f.symbols.length > 0)\r\n .map((f) => ({\r\n file: f,\r\n score: scoreFile(f) + REF_WEIGHT * (refs.get(f.path) ?? 0),\r\n }))\r\n .sort((a, b) => b.score - a.score || a.file.path.localeCompare(b.file.path))\r\n .slice(0, topFiles)\r\n\r\n return ranked.map(({ file, score }) => ({\r\n path: file.path,\r\n score,\r\n symbols: file.symbols.slice(0, perFile).map((s) => ({\r\n name: s.name,\r\n kind: s.kind,\r\n line: s.line,\r\n signature: s.signature,\r\n })),\r\n }))\r\n}\r\n\r\n/** How much one in-repo import is worth in map score. */\r\nconst REF_WEIGHT = 0.5\r\n\r\n/**\r\n * Count in-repo references: how many OTHER indexed files import each file.\r\n * Self-imports don't count; each (importer, target) pair counts once.\r\n */\r\nexport function countReferences(files: IndexedFile[]): Map<string, number> {\r\n const fileSet = new Set(files.map((f) => f.path))\r\n const counts = new Map<string, number>()\r\n for (const file of files) {\r\n const targets = new Set<string>()\r\n for (const spec of file.imports ?? []) {\r\n const target = resolveImport(spec, file.path, fileSet)\r\n if (target && target !== file.path) targets.add(target)\r\n }\r\n for (const target of targets) {\r\n counts.set(target, (counts.get(target) ?? 0) + 1)\r\n }\r\n }\r\n return counts\r\n}\r\n\r\n/**\r\n * Resolve a raw import specifier against the indexed file set; returns the\r\n * repo-relative target path or null. Relative specifiers resolve against the\r\n * importing file; absolute ones against the repo root — with a suffix\r\n * fallback so Go module paths and Java package names match their in-repo\r\n * location without reading go.mod / package-info.\r\n */\r\nexport function resolveImport(spec: string, fromPath: string, fileSet: Set<string>): string | null {\r\n if (!spec) return null\r\n if (spec.startsWith('./') || spec.startsWith('../')) {\r\n const base = path.posix.normalize(path.posix.join(path.posix.dirname(fromPath), spec))\r\n return candidateFor(base, fileSet)\r\n }\r\n const segments = spec.split('/').filter(Boolean)\r\n for (let skip = 0; skip < segments.length; skip++) {\r\n const hit = candidateFor(segments.slice(skip).join('/'), fileSet)\r\n if (hit) return hit\r\n }\r\n return null\r\n}\r\n\r\n/** Extension and index-file candidates for a specifier base path. */\r\nfunction candidateFor(base: string, fileSet: Set<string>): string | null {\r\n for (const ext of SUPPORTED_EXTS) {\r\n if (fileSet.has(`${base}${ext}`)) return `${base}${ext}`\r\n }\r\n for (const ext of SUPPORTED_EXTS) {\r\n if (fileSet.has(`${base}/index${ext}`)) return `${base}/index${ext}`\r\n if (fileSet.has(`${base}/__init__${ext}`)) return `${base}/__init__${ext}`\r\n }\r\n return null\r\n}\r\n\r\n/** Render the ranked map as markdown, hard-truncated to maxChars. */\r\nexport function renderRepoMap(entries: RepoMapEntry[], options: RepoMapOptions = {}): string {\r\n const maxChars = options.maxChars ?? 3200\r\n const lines: string[] = ['# repo map']\r\n let totalSymbols = 0\r\n for (const e of entries) {\r\n totalSymbols += e.symbols.length\r\n lines.push(`## ${e.path} (${e.symbols.length})`)\r\n for (const s of e.symbols) {\r\n const label = s.signature || s.name\r\n lines.push(` ${s.kind} ${label} :${s.line}`)\r\n }\r\n }\r\n let text = lines.join('\\n')\r\n if (text.length > maxChars) {\r\n text = `${text.slice(0, maxChars)}\\n… truncated`\r\n }\r\n return totalSymbols > 0 ? text : ''\r\n}","/** Model-visible tools: code_index, code_symbols, code_search. */\r\n\r\nimport { defineTool, type JsonValue } from '@deepseek-ai/dsh-tools'\r\nimport path from 'node:path'\r\nimport { buildIndexWithCache, findRepoRoot } from './buildIndex.js'\r\nimport { renderHit, searchSymbols } from './search.js'\r\nimport { rankRepoMap, renderRepoMap } from './repomap.js'\r\nimport { getConfig, indexOptions } from './config.js'\r\nimport { cacheKeyForRoot } from './store.js'\r\nimport type { RepoIndex } from './types.js'\r\n\r\n/** Minimal structural types for the harness surfaces we touch. */\r\ninterface ToolCwdContext {\r\n agent?: {\r\n session?: { header?: { cwd?: string } }\r\n }\r\n}\r\ntype ToolRunExec = ToolCwdContext & { signal?: AbortSignal }\r\n\r\ninterface TextBlock {\r\n type: 'text'\r\n text: string\r\n}\r\n\r\nexport interface IndexCache {\r\n get(root: string, force?: boolean): Promise<RepoIndex>\r\n invalidate(): void\r\n}\r\n\r\n/** Retain completed indexes briefly while still coalescing concurrent refreshes. */\r\nexport function createIndexCache(\r\n load: (root: string) => Promise<RepoIndex>,\r\n ttlMs = 60_000,\r\n now: () => number = Date.now,\r\n): IndexCache {\r\n interface CompletedEntry {\r\n index: RepoIndex\r\n at: number\r\n epoch: number\r\n }\r\n interface LoadEntry {\r\n promise: Promise<RepoIndex>\r\n epoch: number\r\n }\r\n\r\n const completed = new Map<string, CompletedEntry>()\r\n const inFlight = new Map<string, LoadEntry>()\r\n let epoch = 0\r\n\r\n function startLoad(key: string, root: string, previous?: Promise<RepoIndex>): Promise<RepoIndex> {\r\n const loadEpoch = epoch\r\n const begin = previous\r\n ? previous.catch(() => undefined).then(() => load(root))\r\n : load(root)\r\n const promise = begin\r\n .then((index) => {\r\n if (loadEpoch === epoch) {\r\n completed.delete(key)\r\n completed.set(key, { index, at: now(), epoch: loadEpoch })\r\n while (completed.size > 16) completed.delete(completed.keys().next().value!)\r\n }\r\n return index\r\n })\r\n .finally(() => {\r\n if (inFlight.get(key)?.promise === promise) inFlight.delete(key)\r\n })\r\n inFlight.set(key, { promise, epoch: loadEpoch })\r\n return promise\r\n }\r\n\r\n return {\r\n get(root, force = false) {\r\n const resolvedRoot = path.resolve(root)\r\n const key = cacheKeyForRoot(resolvedRoot)\r\n const running = inFlight.get(key)\r\n if (running) {\r\n if (running.epoch === epoch && !force) return running.promise\r\n return startLoad(key, resolvedRoot, running.promise)\r\n }\r\n\r\n if (!force) {\r\n const cached = completed.get(key)\r\n if (cached && cached.epoch === epoch && now() - cached.at < ttlMs) {\r\n completed.delete(key)\r\n completed.set(key, cached)\r\n return Promise.resolve(cached.index)\r\n }\r\n if (cached) completed.delete(key)\r\n } else {\r\n completed.delete(key)\r\n }\r\n return startLoad(key, resolvedRoot)\r\n },\r\n invalidate() {\r\n epoch++\r\n completed.clear()\r\n },\r\n }\r\n}\r\n\r\nconst indexCache = createIndexCache((root) => buildIndexWithCache(root, indexOptions()))\r\n\r\nexport function getIndex(root: string, force = false): Promise<RepoIndex> {\r\n return indexCache.get(root, force)\r\n}\r\n\r\nexport function invalidateIndexCache(): void {\r\n indexCache.invalidate()\r\n}\r\n\r\nasync function resolveRoot(arg: string | undefined, exec: ToolRunExec): Promise<string> {\r\n const cwd = exec.agent?.session?.header?.cwd\r\n const base = arg ?? cwd ?? process.cwd()\r\n const root = await findRepoRoot(base)\r\n if (!root) throw new Error(`no git repository found from ${path.resolve(base)}`)\r\n return root\r\n}\r\n\r\nexport const tools = [\r\n defineTool({\r\n name: 'code_index',\r\n description:\r\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.',\r\n parameters: {\r\n action: {\r\n type: 'string',\r\n enum: ['status', 'build'],\r\n description: '\"status\" (default) reports without forcing a rebuild; \"build\" forces a fresh scan.',\r\n },\r\n repoRoot: {\r\n type: 'string',\r\n description:\r\n 'Optional absolute repo path. Defaults to the workspace root of the current session.',\r\n },\r\n },\r\n output: {\r\n schema: { type: 'string' },\r\n render: (_args, value: string): TextBlock[] => [{ type: 'text', text: value }],\r\n },\r\n async execute(args: { action?: string; repoRoot?: string }, exec: ToolRunExec): Promise<string> {\r\n try {\r\n const root = await resolveRoot(args.repoRoot, exec)\r\n const index = await getIndex(root, args.action === 'build')\r\n const total = index.files.reduce((n, f) => n + f.symbols.length, 0)\r\n const langs = new Set(index.files.map((f) => f.lang))\r\n return [\r\n `repo: ${root}`,\r\n `files indexed: ${index.files.length}`,\r\n `symbols: ${total}`,\r\n `languages: ${[...langs].join(', ')}`,\r\n index.files.length === 0 ? 'no supported files found' : 'index up to date',\r\n ].join('\\n')\r\n } catch (error) {\r\n return `code_index: ${(error as Error).message ?? String(error)}`\r\n }\r\n },\r\n }),\r\n\r\n defineTool({\r\n name: 'code_symbols',\r\n description:\r\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.',\r\n parameters: {\r\n query: {\r\n type: 'string',\r\n description: 'Substring of the symbol name to match (case-insensitive). Omit to list all.',\r\n },\r\n file: {\r\n type: 'string',\r\n description: 'Substring of the repo-relative file path to match, e.g. \"src/core\".',\r\n },\r\n kind: {\r\n type: 'string',\r\n enum: ['function', 'method', 'class', 'interface', 'type', 'enum', 'variable', 'field'],\r\n description: 'Only return symbols of this kind.',\r\n },\r\n exportedOnly: {\r\n type: 'boolean',\r\n description: 'Only exported (module-level public) symbols.',\r\n },\r\n limit: {\r\n type: 'number',\r\n description: 'Max rows (default 50).',\r\n },\r\n repoRoot: {\r\n type: 'string',\r\n description: 'Optional absolute repo path; defaults to the session workspace root.',\r\n },\r\n },\r\n output: {\r\n schema: { type: 'array' },\r\n render: (_args, value: JsonValue[]): TextBlock[] =>\r\n value.map((v) => ({\r\n type: 'text' as const,\r\n text: renderHit(v as unknown as Parameters<typeof renderHit>[0]),\r\n })),\r\n },\r\n async execute(\r\n args: {\r\n query?: string\r\n file?: string\r\n kind?: 'function' | 'method' | 'class' | 'interface' | 'type' | 'enum' | 'variable' | 'field'\r\n exportedOnly?: boolean\r\n limit?: number\r\n repoRoot?: string\r\n },\r\n exec: ToolRunExec,\r\n ): Promise<JsonValue[]> {\r\n const root = await resolveRoot(args.repoRoot, exec)\r\n const index = await getIndex(root)\r\n const hits = searchSymbols(\r\n index,\r\n { query: args.query, file: args.file, kind: args.kind, exportedOnly: args.exportedOnly },\r\n args.limit ?? 50,\r\n )\r\n return hits as unknown as JsonValue[]\r\n },\r\n }),\r\n\r\n defineTool({\r\n name: 'code_search',\r\n description:\r\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.',\r\n parameters: {\r\n query: {\r\n type: 'string',\r\n required: true,\r\n description: 'Symbol name (or fragment) to find.',\r\n },\r\n limit: {\r\n type: 'number',\r\n description: 'Max hits (default 20).',\r\n },\r\n repoRoot: {\r\n type: 'string',\r\n description: 'Optional absolute repo path; defaults to the session workspace root.',\r\n },\r\n },\r\n output: {\r\n schema: { type: 'array' },\r\n render: (_args, value: JsonValue[]): TextBlock[] =>\r\n value.map((v) => ({\r\n type: 'text' as const,\r\n text: renderHit(v as unknown as Parameters<typeof renderHit>[0]),\r\n })),\r\n },\r\n async execute(\r\n args: { query: string; limit?: number; repoRoot?: string },\r\n exec: ToolRunExec,\r\n ): Promise<JsonValue[]> {\r\n const root = await resolveRoot(args.repoRoot, exec)\r\n const index = await getIndex(root)\r\n const hits = searchSymbols(index, { query: args.query }, args.limit ?? 20)\r\n return hits as unknown as JsonValue[]\r\n },\r\n }),\r\n\r\n defineTool({\r\n name: 'code_map',\r\n description:\r\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.',\r\n parameters: {\r\n repoRoot: {\r\n type: 'string',\r\n description: 'Optional absolute repo path; defaults to the session workspace root.',\r\n },\r\n },\r\n output: {\r\n schema: { type: 'string' },\r\n render: (_args, value: string): TextBlock[] => [{ type: 'text', text: value }],\r\n },\r\n async execute(args: { repoRoot?: string }, exec: ToolRunExec): Promise<string> {\r\n try {\r\n const root = await resolveRoot(args.repoRoot, exec)\r\n const index = await getIndex(root)\r\n const cfg = getConfig()\r\n const map = renderRepoMap(\r\n rankRepoMap(index, { topFiles: cfg.mapTopFiles }),\r\n { maxChars: cfg.mapMaxChars },\r\n )\r\n if (!map) return 'no indexable symbols found in this repo'\r\n return map\r\n } catch (error) {\r\n return `code_index: ${(error as Error).message ?? String(error)}`\r\n }\r\n },\r\n }),\r\n]\r\n","/** Plugin configuration: merged once at apply time, read wherever needed. */\r\n\r\nimport type { IndexOptions } from './types.js'\r\n\r\nexport interface PluginConfig {\r\n /** Extra directories to exclude from indexing (appended to defaults). */\r\n excludeDirs?: string[]\r\n /** Max files in the ranked repo map (code_map / auto section). */\r\n mapTopFiles?: number\r\n /** Hard char cap for rendered maps. */\r\n mapMaxChars?: number\r\n /** Refresh interval for the auto-injected map (ms, min 1000). */\r\n mapTtlMs?: number\r\n /** Set false to disable the auto-injected system section. */\r\n autoInject?: boolean\r\n}\r\n\r\ninterface EffectiveConfig {\r\n excludeDirs: string[]\r\n mapTopFiles: number\r\n mapMaxChars: number\r\n mapTtlMs: number\r\n autoInject: boolean\r\n}\r\n\r\nconst DEFAULTS: EffectiveConfig = {\r\n excludeDirs: [],\r\n mapTopFiles: 24,\r\n mapMaxChars: 3200,\r\n mapTtlMs: 60_000,\r\n autoInject: true,\r\n}\r\n\r\nconst state: { current: EffectiveConfig } = { current: { ...DEFAULTS } }\r\n\r\n/** Merge a plugin-provided partial config over the defaults (idempotent). */\r\nexport function applyConfig(partial?: PluginConfig): void {\r\n state.current = {\r\n ...DEFAULTS,\r\n ...(partial ?? {}),\r\n excludeDirs: [...DEFAULTS.excludeDirs, ...(partial?.excludeDirs ?? [])],\r\n }\r\n // Coerce obviously wrong inputs.\r\n if (!Number.isFinite(state.current.mapTopFiles) || state.current.mapTopFiles < 1) {\r\n state.current.mapTopFiles = DEFAULTS.mapTopFiles\r\n }\r\n if (!Number.isFinite(state.current.mapMaxChars) || state.current.mapMaxChars < 200) {\r\n state.current.mapMaxChars = DEFAULTS.mapMaxChars\r\n }\r\n if (!Number.isFinite(state.current.mapTtlMs) || state.current.mapTtlMs < 1_000) {\r\n state.current.mapTtlMs = DEFAULTS.mapTtlMs\r\n }\r\n}\r\n\r\nexport function getConfig(): Readonly<EffectiveConfig> {\r\n return state.current\r\n}\r\n\r\n/** Map the effective config onto the index pipeline options. */\r\nexport function indexOptions(): IndexOptions {\r\n return { excludeDirs: state.current.excludeDirs }\r\n}","/**\r\n * dsh-code-index — DeepSeek Harness bundle entry.\r\n *\r\n * Registers four model-visible tools (code_index / code_symbols /\r\n * code_search / code_map) backed by a tree-sitter symbol index, and\r\n * injects a bounded auto-updating repo map for the default workspace\r\n * into the system prompt.\r\n */\r\n\r\ntype Disposer = void | (() => void)\r\n\r\n/** Minimal structural Context; the real @deepseek-ai/cordis type is a\r\n * runtime dependency we intentionally do not import in the bundle entry. */\r\ninterface MinimalContext {\r\n effect(fn: () => Disposer): void\r\n tools: { register(t: unknown): () => void }\r\n systemPrompt: {\r\n section(section: {\r\n name: string\r\n order: number\r\n text: string | ((context: unknown) => string)\r\n }): () => void\r\n }\r\n}\r\n\r\nexport const name = 'dsh-code-index'\r\n\r\n// Public API surface (consumable by other bundles / tests).\r\nexport { buildIndex, buildIndexWithCache, findRepoRoot } from './buildIndex.js'\r\nexport { extractSymbols, extractAll, languageForFile, parseFileToSymbols } from './extract.js'\r\nexport { scanRepo, DEFAULT_EXCLUDED_DIRS, SUPPORTED_EXTS } from './scan.js'\r\nexport { loadIndex, saveIndex, defaultCachePath, CACHE_DIR_NAME } from './store.js'\r\nexport { symbolCount } from './types.js'\r\nexport type { RepoIndex, IndexedFile, SymbolInfo, SymbolKind, IndexOptions } from './types.js'\r\nexport { searchSymbols, renderHit } from './search.js'\r\nexport { rankRepoMap, renderRepoMap, scoreFile } from './repomap.js'\r\nexport { tools } from './tools.js'\r\n\r\nimport { getIndex, invalidateIndexCache, tools } from './tools.js'\r\nimport { findRepoRoot } from './buildIndex.js'\r\nimport { rankRepoMap, renderRepoMap } from './repomap.js'\r\nimport { symbolCount } from './types.js'\r\nimport { applyConfig, getConfig, type PluginConfig } from './config.js'\r\n\r\nexport const inject = ['tools', 'systemPrompt'] as const\r\n\r\nexport function apply(ctx: MinimalContext, pluginConfig?: PluginConfig) {\r\n applyConfig(pluginConfig)\r\n invalidateIndexCache()\r\n ctx.effect(() => {\r\n const disposers: Array<() => void> = []\r\n console.log('[dsh-code-index] plugin loaded')\r\n for (const tool of tools) {\r\n disposers.push(ctx.tools.register(tool))\r\n console.log(`[dsh-code-index] registered tool: ${tool.name}`)\r\n }\r\n\r\n // Auto-inject a bounded repo map for the DEFAULT workspace (the dsh\r\n // launch directory, per the harness docs). Multi-workspace web sessions\r\n // should rely on the `code_map` tool, which resolves the per-session cwd.\r\n let cached: { root: string; at: number; text: string } | null = null\r\n\r\n async function warmMap(): Promise<void> {\r\n const now = Date.now()\r\n const cfg = getConfig()\r\n try {\r\n const root = await findRepoRoot(process.cwd())\r\n if (!root) {\r\n cached = { root: '', at: now, text: '' }\r\n return\r\n }\r\n const index = await getIndex(root)\r\n const text = renderRepoMap(\r\n rankRepoMap(index, { topFiles: cfg.mapTopFiles }),\r\n { maxChars: cfg.mapMaxChars },\r\n )\r\n const stats = symbolCount(index)\r\n cached = {\r\n root: index.root,\r\n at: Date.now(),\r\n text: text ? `${text}\\n\\n(summary: ${index.files.length} files, ${stats} symbols)` : '',\r\n }\r\n } catch {\r\n cached = { root: '', at: now, text: '' } // never let injection fail the boot\r\n }\r\n }\r\n\r\n // Warm eagerly at load so the first assembly already has the map.\r\n void warmMap()\r\n\r\n if (getConfig().autoInject) {\r\n disposers.push(ctx.systemPrompt.section({\r\n name: 'code-index:repo-map',\r\n order: 60, // before tool guidance (100–199), after persona (0)\r\n text: () => {\r\n const now = Date.now()\r\n if (cached && now - cached.at < getConfig().mapTtlMs) return cached.text\r\n void warmMap()\r\n return cached?.text ?? ''\r\n },\r\n }))\r\n }\r\n\r\n return () => {\r\n const errors: unknown[] = []\r\n for (const dispose of disposers.reverse()) {\r\n try {\r\n dispose()\r\n } catch (error) {\r\n errors.push(error)\r\n }\r\n }\r\n console.log('[dsh-code-index] plugin unloaded')\r\n if (errors.length > 0) throw new AggregateError(errors, 'failed to unload dsh-code-index')\r\n }\r\n })\r\n}\r\n"],"mappings":"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","names":["readFile","stat","path","require","name","path","readFile","path","readFile","path","stat","name","path","path","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
|
},
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
},
|
|
46
47
|
"repository": {
|
|
47
48
|
"type": "git",
|
|
48
|
-
"url": "https://github.com/lemonxiny55/dsh-code-index.git"
|
|
49
|
+
"url": "git+https://github.com/lemonxiny55/dsh-code-index.git"
|
|
49
50
|
},
|
|
50
51
|
"homepage": "https://github.com/lemonxiny55/dsh-code-index",
|
|
51
52
|
"bugs": {
|