@deepseek-ai/dsh-lsp-stdio 0.1.3-alpha.2 → 0.1.5-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
@@ -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/lsp-stdio/README.md
5
- README.md: 61137e544ea7c9ba0d2458fc99a43eaa1c03aafb
6
- README.zh.md: 39c327346c90d7efeee895035e35a76b17354cf5
5
+ README.md: 5f0f19255ed39432ce0bb1a59f7b9f08c02a4bf8
6
+ README.zh.md: 6da17fe54b0fc107a4be36e8fb8c0c79ed778ad3
package/README.md CHANGED
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
9
9
 
10
10
  ## Summary
11
11
 
12
- `dsh-lsp-stdio` turns configured local language-server commands into providers on `ctx.lsp`: give it a table of server commands and extension-to-language mappings, and agents get semantic code navigation over the files in those languages — definitions, references, implementations, and hover served by real language servers. One plugin instance registers one isolated provider per configured server; each provider lazily starts one server process per workspace and opens the queried document transiently, so no document state accumulates between queries. Servers and sources always live in the mounted filesystem and subprocess execution world. It is a generic host, not a language-server catalog or installer deployments configure commands explicitly. This package trusts its configured servers and adds no sandbox of its own.
12
+ Use `dsh-lsp-stdio` to give agents definitions, references, implementations, and hover from explicitly configured local language servers. It maps file extensions to language identifiers, starts one server per workspace on demand, and reads each queried file afresh without retaining document state between queries. Language-server processes and source reads share the mounted filesystem and subprocess environment. The package does not install servers or provide a sandbox: deployments supply commands, mappings, and any required confinement. Queries are serialized per server and workspace, while different workspaces can run in parallel.
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-lsp-stdio` 把配置好的本地语言服务器命令变成 `ctx.lsp` 上的提供方:给它一张服务器命令与扩展名到语言的映射表,agent 就能针对这些语言的文件获得由真实语言服务器服务的语义代码导航——定义、引用、实现与悬停。一个插件实例针对每个配置的服务器注册一个隔离的提供方;每个提供方按工作区惰性启动一个服务器进程,并在查询时临时打开文档,因此查询之间不会累积任何文档状态。服务器与源文件始终位于已挂载的文件系统与子进程执行世界中。它是通用主机,而不是语言服务器目录或安装器——部署需要显式配置命令。本包信任所配置的服务器,自身不提供任何沙箱。
12
+ 使用 `dsh-lsp-stdio` 可让 agent 从显式配置的本地语言服务器获得定义、引用、实现与悬停信息。它把文件扩展名映射为语言标识符,按需为每个工作区启动一台服务器,并在每次查询时重新读取文件,不在查询之间保留文档状态。语言服务器进程与源文件读取共享已挂载的文件系统和子进程环境。本包不安装服务器,也不提供沙箱;部署方必须提供命令、映射和所需的隔离措施。同一服务器与工作区的查询串行执行,不同工作区可并行运行。
13
13
 
14
14
  ## 目录
15
15
 
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.3-alpha.2",
4
+ "version": "0.1.5-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-fs": "^0.1.5-alpha.2",
31
+ "@deepseek-ai/dsh-brand": "^0.1.5-alpha.2",
32
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
30
33
  "@deepseek-ai/cordis": "^4.0.2",
31
- "@deepseek-ai/dsh-brand": "^0.1.3-alpha.2",
32
- "@deepseek-ai/dsh-fs": "^0.1.3-alpha.2",
33
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
34
- "@deepseek-ai/dsh-lsp": "^0.1.3-alpha.2",
35
- "@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
36
- "@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2"
34
+ "@deepseek-ai/dsh-lsp": "^0.1.5-alpha.2",
35
+ "@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.2",
36
+ "@deepseek-ai/dsh-timeout": "^0.1.5-alpha.2"
37
37
  },
38
38
  "dependencies": {
39
- "@deepseek-ai/dsh-util-values": "^0.1.3-alpha.2",
39
+ "@deepseek-ai/dsh-util-values": "^0.1.5-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-alpha.2",
46
+ "@deepseek-ai/dsh-fs": "^0.1.5-alpha.2",
47
+ "@deepseek-ai/dsh-fs-local": "^0.1.5-alpha.2",
45
48
  "@deepseek-ai/cordis": "^4.0.2",
46
- "@deepseek-ai/dsh-brand": "^0.1.3-alpha.2",
47
- "@deepseek-ai/dsh-fs": "^0.1.3-alpha.2",
48
- "@deepseek-ai/dsh-fs-local": "^0.1.3-alpha.2",
49
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
50
- "@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
51
- "@deepseek-ai/dsh-subprocess-local": "^0.1.3-alpha.2",
52
- "@deepseek-ai/dsh-lsp": "^0.1.3-alpha.2",
53
- "@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2"
49
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
50
+ "@deepseek-ai/dsh-lsp": "^0.1.5-alpha.2",
51
+ "@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.2",
52
+ "@deepseek-ai/dsh-subprocess-local": "^0.1.5-alpha.2",
53
+ "@deepseek-ai/dsh-timeout": "^0.1.5-alpha.2"
54
54
  }
55
55
  }