@deepseek-ai/dsh-lsp-stdio 0.1.5-rc.2 → 0.1.6-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 CHANGED
@@ -3,4 +3,4 @@
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/lsp/lsp-stdio/README.md
5
5
  README.md: 5f0f19255ed39432ce0bb1a59f7b9f08c02a4bf8
6
- README.zh.md: 6da17fe54b0fc107a4be36e8fb8c0c79ed778ad3
6
+ README.zh.md: 5380f2cec79a34d8f40de8e195049699857f0d99
package/README.zh.md CHANGED
@@ -9,7 +9,7 @@ kind: "package-reference"
9
9
 
10
10
  ## 概述
11
11
 
12
- 使用 `dsh-lsp-stdio` 可让 agent 从显式配置的本地语言服务器获得定义、引用、实现与悬停信息。它把文件扩展名映射为语言标识符,按需为每个工作区启动一台服务器,并在每次查询时重新读取文件,不在查询之间保留文档状态。语言服务器进程与源文件读取共享已挂载的文件系统和子进程环境。本包不安装服务器,也不提供沙箱;部署方必须提供命令、映射和所需的隔离措施。同一服务器与工作区的查询串行执行,不同工作区可并行运行。
12
+ 使用 `dsh-lsp-stdio` 可让 agent(智能体)从显式配置的本地语言服务器获得定义、引用、实现与悬停信息。它把文件扩展名映射为语言标识符,按需为每个工作区启动一台服务器,并在每次查询时重新读取文件,不在查询之间保留文档状态。语言服务器进程与源文件读取共享已挂载的文件系统和子进程环境。本包不安装服务器,也不提供沙箱;部署方必须提供命令、映射和所需的隔离措施。同一服务器与工作区的查询串行执行,不同工作区可并行运行。
13
13
 
14
14
  ## 目录
15
15
 
@@ -25,7 +25,7 @@ kind: "package-reference"
25
25
  <a id="use-this-package"></a>
26
26
  ## 使用本包
27
27
 
28
- 当部署拥有本地语言服务器——例如 `typescript-language-server`——并希望 harness 通过它们导航代码时,挂载此提供方。它需要描述同一执行世界的文件系统与子进程提供方,以及 `dsh-lsp` seam;若要向模型开放,还需要 `dsh-tool-lsp`。
28
+ 当部署拥有本地语言服务器——例如 `typescript-language-server`——并希望 harness 通过它们导航代码时,挂载此提供方。它需要位于同一执行世界的文件系统与子进程提供方,以及 `dsh-lsp` seam;若要向模型开放,还需要 `dsh-tool-lsp`。
29
29
 
30
30
  ### 最小配置
31
31
 
@@ -106,7 +106,7 @@ kind: "package-reference"
106
106
  | [`src/protocol.ts`](src/protocol.ts) | 协议类型子集:能力、位置、悬停、文本文档同步 |
107
107
  | [`src/translate.ts`](src/translate.ts) | 能力检查、UTF-16 协商、`Location`/`LocationLink`/hover 规范化 |
108
108
  | [`src/abort.ts`](src/abort.ts) | 融合调用方与释放信号的取消辅助 |
109
- | — | 不发布运行时不变式伴生入口;进程池与队列是私有状态。 |
109
+ | — | 不发布运行时不变式伴生入口;进程池与队列是私有状态,本提供方也不发布独立的生命周期事件流或可枚举快照。 |
110
110
 
111
111
  ### 协议行为
112
112
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-lsp-stdio",
3
3
  "description": "Generic stdio language-server provider for the DeepSeek Harness LSP capability seam (ctx.lsp) — spawns configured servers, translates JSON-RPC, and serves transient-open goToDefinition/findReferences/goToImplementation/hover queries in the host filesystem namespace",
4
- "version": "0.1.5-rc.2",
4
+ "version": "0.1.6-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -27,29 +27,29 @@
27
27
  ],
28
28
  "license": "MIT",
29
29
  "peerDependencies": {
30
- "@deepseek-ai/dsh-brand": "^0.1.5-rc.2",
31
- "@deepseek-ai/cordis": "^4.0.2",
32
- "@deepseek-ai/dsh-fs": "^0.1.5-rc.2",
33
- "@deepseek-ai/dsh-llm": "^0.1.5-rc.2",
34
- "@deepseek-ai/dsh-lsp": "^0.1.5-rc.2",
35
- "@deepseek-ai/dsh-subprocess": "^0.1.5-rc.2",
36
- "@deepseek-ai/dsh-timeout": "^0.1.5-rc.2"
30
+ "@deepseek-ai/dsh-fs": "^0.1.6-alpha.2",
31
+ "@deepseek-ai/dsh-llm": "^0.1.6-alpha.2",
32
+ "@deepseek-ai/dsh-brand": "^0.1.6-alpha.2",
33
+ "@deepseek-ai/dsh-lsp": "^0.1.6-alpha.2",
34
+ "@deepseek-ai/dsh-subprocess": "^0.1.6-alpha.2",
35
+ "@deepseek-ai/dsh-timeout": "^0.1.6-alpha.2",
36
+ "@deepseek-ai/cordis": "^4.0.2"
37
37
  },
38
38
  "dependencies": {
39
- "@deepseek-ai/dsh-util-values": "^0.1.5-rc.2",
39
+ "@deepseek-ai/dsh-util-values": "^0.1.6-alpha.2",
40
40
  "@deepseek-ai/schemastery": "^3.18.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "typescript": "^6.0.3",
44
44
  "typescript-language-server": "^5.0.0",
45
- "@deepseek-ai/dsh-brand": "^0.1.5-rc.2",
46
- "@deepseek-ai/dsh-fs": "^0.1.5-rc.2",
47
- "@deepseek-ai/dsh-fs-local": "^0.1.5-rc.2",
48
- "@deepseek-ai/dsh-llm": "^0.1.5-rc.2",
49
- "@deepseek-ai/dsh-lsp": "^0.1.5-rc.2",
50
- "@deepseek-ai/dsh-subprocess": "^0.1.5-rc.2",
51
- "@deepseek-ai/dsh-subprocess-local": "^0.1.5-rc.2",
52
- "@deepseek-ai/dsh-timeout": "^0.1.5-rc.2",
53
- "@deepseek-ai/cordis": "^4.0.2"
45
+ "@deepseek-ai/cordis": "^4.0.2",
46
+ "@deepseek-ai/dsh-fs": "^0.1.6-alpha.2",
47
+ "@deepseek-ai/dsh-brand": "^0.1.6-alpha.2",
48
+ "@deepseek-ai/dsh-fs-local": "^0.1.6-alpha.2",
49
+ "@deepseek-ai/dsh-llm": "^0.1.6-alpha.2",
50
+ "@deepseek-ai/dsh-lsp": "^0.1.6-alpha.2",
51
+ "@deepseek-ai/dsh-subprocess": "^0.1.6-alpha.2",
52
+ "@deepseek-ai/dsh-timeout": "^0.1.6-alpha.2",
53
+ "@deepseek-ai/dsh-subprocess-local": "^0.1.6-alpha.2"
54
54
  }
55
55
  }