@deepseek-ai/dsh-tool-lsp 0.1.3-alpha.2 → 0.1.5-alpha.1
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 +1 -1
- package/README.zh.md +1 -1
- package/package.json +18 -18
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: 2a5483aabe75bbbf9ff39fa8263d97a1488d70b4
|
|
6
|
+
README.zh.md: d6f69953d3eb737f3c28283a9fb6b56ae312b7ea
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
|
|
|
9
9
|
|
|
10
10
|
## Summary
|
|
11
11
|
|
|
12
|
-
`dsh-tool-lsp`
|
|
12
|
+
`dsh-tool-lsp` lets a model navigate code through one read-only `lsp` tool: open a symbol's definition, find references and implementations, or read hover documentation. Requests use one-based UTF-16 line and character positions. Navigation results are bounded, grouped by file, and labeled when locations are omitted or text is truncated; hover results are normalized and distinguish missing information from errors. The package requires a configured LSP provider and a session workspace root. Choose it when textual search is ambiguous or a change needs precise symbol relationships; ordinary navigation should continue to use `search` and `read`.
|
|
13
13
|
|
|
14
14
|
## Table of Contents
|
|
15
15
|
|
package/README.zh.md
CHANGED
|
@@ -9,7 +9,7 @@ kind: "package-reference"
|
|
|
9
9
|
|
|
10
10
|
## 概述
|
|
11
11
|
|
|
12
|
-
`dsh-tool-lsp`
|
|
12
|
+
`dsh-tool-lsp` 让模型通过单个只读 `lsp` 工具导航代码:打开符号定义、查找引用与实现,或阅读悬停文档。请求使用从 1 开始的 UTF-16 行列位置。导航结果数量有上限、按文件分组,并在省略位置或截断文本时显示标记;悬停结果经过规范化,且会区分信息缺失与错误。该包要求配置 LSP 提供方,并要求会话具有工作区根目录。当文本搜索有歧义,或修改需要精确的符号关系时选择它;普通导航应继续使用 `search` 与 `read`。
|
|
13
13
|
|
|
14
14
|
## 目录
|
|
15
15
|
|
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.5-alpha.1",
|
|
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.5-alpha.1",
|
|
32
|
+
"@deepseek-ai/dsh-lsp": "^0.1.5-alpha.1",
|
|
33
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.5-alpha.1",
|
|
34
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-alpha.1",
|
|
35
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-alpha.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@deepseek-ai/dsh-util-values": "^0.1.
|
|
38
|
+
"@deepseek-ai/dsh-util-values": "^0.1.5-alpha.1",
|
|
39
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-
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-timeout": "^0.1.
|
|
51
|
-
"@deepseek-ai/dsh-
|
|
52
|
-
"@deepseek-ai/dsh-
|
|
53
|
-
"@deepseek-ai/dsh-lsp
|
|
43
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.1",
|
|
44
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.5-alpha.1",
|
|
45
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.1",
|
|
46
|
+
"@deepseek-ai/dsh-lsp-stdio": "^0.1.5-alpha.1",
|
|
47
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.5-alpha.1",
|
|
48
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.5-alpha.1",
|
|
49
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-alpha.1",
|
|
50
|
+
"@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.5-alpha.1",
|
|
51
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-alpha.1",
|
|
52
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.1",
|
|
53
|
+
"@deepseek-ai/dsh-lsp": "^0.1.5-alpha.1"
|
|
54
54
|
}
|
|
55
55
|
}
|