@deepseek-ai/dsh-tool-lsp 0.1.2-alpha.5 → 0.1.3-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.i18n.yaml +2 -2
- package/README.md +2 -3
- package/README.zh.md +2 -3
- package/package.json +19 -19
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/lsp/tool-lsp/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: dcba3b7d974cd30ac03eb8a87bc92c1788b09b27
|
|
6
|
+
README.zh.md: f32bbf6f356815d83e45a617fa7bd85096e04bbc
|
package/README.md
CHANGED
|
@@ -84,10 +84,9 @@ This section explains the design decisions behind the tool and where the code re
|
|
|
84
84
|
<a id="further-exploration"></a>
|
|
85
85
|
## Further Exploration
|
|
86
86
|
|
|
87
|
-
Read these pages when the package-level contract is not enough. They move from the model-facing surface to the seam
|
|
87
|
+
Read these pages when the package-level contract is not enough. They move from the model-facing surface to the seam and the provider.
|
|
88
88
|
|
|
89
89
|
- [LSP navigation subsystem](../../../docs/subsystems/lsp.md) — operations, coordinates, requests and results, and `LspError` codes.
|
|
90
|
-
- [LSP capability seam Agent Note](../../../.agents/notes/implemented/architecture/2026-07-15-lsp-capability-seam.md) — design rationale, alternatives, and deliberately deferred API.
|
|
91
90
|
- [dsh-lsp](../lsp/README.md) — the seam this tool queries.
|
|
92
91
|
- [dsh-lsp-stdio](../lsp-stdio/README.md) — the stdio provider that answers these queries.
|
|
93
92
|
- [lsp group map](../README.md) — the three-package family and its related documentation.
|
|
@@ -166,7 +165,7 @@ None; UI presentation is outside the model request.
|
|
|
166
165
|
|
|
167
166
|
These limits define when the tool is a poor fit. They are current package constraints, not a task backlog.
|
|
168
167
|
|
|
169
|
-
- **UTF-16 cursor coordinates** — columns are exact for the protocol but hard for a model to count around non-BMP characters; an off-symbol position may return empty results, so the prompt explains the convention without encouraging broad LSP use
|
|
168
|
+
- **UTF-16 cursor coordinates** — columns are exact for the protocol but hard for a model to count around non-BMP characters; an off-symbol position may return empty results, so the prompt explains the convention without encouraging broad LSP use.
|
|
170
169
|
- **No cross-server completeness promise** — supported servers may return empty or partial results depending on indexing readiness; the tool promises no completeness across languages or servers.
|
|
171
170
|
|
|
172
171
|
<a id="dev-note"></a>
|
package/README.zh.md
CHANGED
|
@@ -84,10 +84,9 @@ kind: "package-reference"
|
|
|
84
84
|
<a id="further-exploration"></a>
|
|
85
85
|
## 进一步探索
|
|
86
86
|
|
|
87
|
-
当包级约定不够用时阅读以下页面。它们从面向模型的表层逐步进入 seam
|
|
87
|
+
当包级约定不够用时阅读以下页面。它们从面向模型的表层逐步进入 seam 与提供方。
|
|
88
88
|
|
|
89
89
|
- [LSP 导航子系统](../../../docs/subsystems/lsp.zh.md)——操作、坐标、请求与结果,以及 `LspError` code。
|
|
90
|
-
- [LSP 能力 seam Agent Note](../../../.agents/notes/implemented/architecture/2026-07-15-lsp-capability-seam.zh.md)——设计原理、备选方案与刻意推迟的 API。
|
|
91
90
|
- [dsh-lsp](../lsp/README.zh.md)——本工具查询的 seam。
|
|
92
91
|
- [dsh-lsp-stdio](../lsp-stdio/README.zh.md)——应答这些查询的 stdio 提供方。
|
|
93
92
|
- [lsp 组地图](../README.zh.md)——三个包的家族及其相关文档。
|
|
@@ -166,7 +165,7 @@ Use search/read for ordinary navigation. Use lsp when textual matches are ambigu
|
|
|
166
165
|
|
|
167
166
|
这些限制说明该工具何时不太合适。它们是当前包约束,不是任务积压。
|
|
168
167
|
|
|
169
|
-
- **UTF-16 光标坐标**——列坐标与协议精确一致,但模型难以在非 BMP 字符周围计数;未落在符号上的位置可能返回空结果,因此提示词解释了该约定,但不鼓励广泛使用 LSP
|
|
168
|
+
- **UTF-16 光标坐标**——列坐标与协议精确一致,但模型难以在非 BMP 字符周围计数;未落在符号上的位置可能返回空结果,因此提示词解释了该约定,但不鼓励广泛使用 LSP。
|
|
170
169
|
- **不承诺跨服务器完整性**——受支持的服务器仍可能根据索引就绪情况返回空或部分结果;该工具不承诺跨语言或服务器的完整性。
|
|
171
170
|
|
|
172
171
|
<a id="dev-note"></a>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-tool-lsp",
|
|
3
3
|
"description": "Model-facing lsp tool over the DeepSeek Harness LSP capability seam (ctx.lsp) — one read-only tool with goToDefinition/findReferences/goToImplementation/hover operations, one-based UTF-16 cursor coordinates, bounded location rendering, and hover normalization",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -28,28 +28,28 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
31
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
32
|
-
"@deepseek-ai/dsh-lsp": "^0.1.
|
|
33
|
-
"@deepseek-ai/dsh-
|
|
34
|
-
"@deepseek-ai/dsh-timeout": "^0.1.
|
|
35
|
-
"@deepseek-ai/dsh-
|
|
31
|
+
"@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
|
|
32
|
+
"@deepseek-ai/dsh-lsp": "^0.1.3-alpha.2",
|
|
33
|
+
"@deepseek-ai/dsh-tools": "^0.1.3-alpha.2",
|
|
34
|
+
"@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2",
|
|
35
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.3-alpha.2"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@deepseek-ai/
|
|
39
|
-
"@deepseek-ai/
|
|
38
|
+
"@deepseek-ai/dsh-util-values": "^0.1.3-alpha.2",
|
|
39
|
+
"@deepseek-ai/schemastery": "^3.18.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
43
|
-
"@deepseek-ai/dsh-agent": "^0.1.
|
|
44
|
-
"@deepseek-ai/dsh-fs-local": "^0.1.
|
|
45
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
46
|
-
"@deepseek-ai/dsh-lsp": "^0.1.
|
|
47
|
-
"@deepseek-ai/dsh-
|
|
48
|
-
"@deepseek-ai/dsh-subprocess-local": "^0.1.
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
51
|
-
"@deepseek-ai/dsh-timeout": "^0.1.
|
|
52
|
-
"@deepseek-ai/dsh-
|
|
53
|
-
"@deepseek-ai/dsh-
|
|
43
|
+
"@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
|
|
44
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.3-alpha.2",
|
|
45
|
+
"@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
|
|
46
|
+
"@deepseek-ai/dsh-lsp": "^0.1.3-alpha.2",
|
|
47
|
+
"@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
|
|
48
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.3-alpha.2",
|
|
49
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.3-alpha.2",
|
|
50
|
+
"@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2",
|
|
51
|
+
"@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.3-alpha.2",
|
|
52
|
+
"@deepseek-ai/dsh-tools": "^0.1.3-alpha.2",
|
|
53
|
+
"@deepseek-ai/dsh-lsp-stdio": "^0.1.3-alpha.2"
|
|
54
54
|
}
|
|
55
55
|
}
|