@deepseek-ai/dsh-lsp-stdio 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 +16 -16
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:
|
|
6
|
-
README.zh.md:
|
|
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`
|
|
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`
|
|
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.
|
|
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-brand": "^0.1.
|
|
32
|
-
"@deepseek-ai/dsh-fs": "^0.1.
|
|
33
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
34
|
-
"@deepseek-ai/dsh-lsp": "^0.1.
|
|
35
|
-
"@deepseek-ai/dsh-subprocess": "^0.1.
|
|
36
|
-
"@deepseek-ai/dsh-timeout": "^0.1.
|
|
31
|
+
"@deepseek-ai/dsh-brand": "^0.1.5-alpha.1",
|
|
32
|
+
"@deepseek-ai/dsh-fs": "^0.1.5-alpha.1",
|
|
33
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.1",
|
|
34
|
+
"@deepseek-ai/dsh-lsp": "^0.1.5-alpha.1",
|
|
35
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.1",
|
|
36
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-alpha.1"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@deepseek-ai/dsh-util-values": "^0.1.
|
|
39
|
+
"@deepseek-ai/dsh-util-values": "^0.1.5-alpha.1",
|
|
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
45
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
46
|
-
"@deepseek-ai/dsh-brand": "^0.1.
|
|
47
|
-
"@deepseek-ai/dsh-fs": "^0.1.
|
|
48
|
-
"@deepseek-ai/dsh-fs-local": "^0.1.
|
|
49
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
51
|
-
"@deepseek-ai/dsh-subprocess-local": "^0.1.
|
|
52
|
-
"@deepseek-ai/dsh-
|
|
53
|
-
"@deepseek-ai/dsh-
|
|
46
|
+
"@deepseek-ai/dsh-brand": "^0.1.5-alpha.1",
|
|
47
|
+
"@deepseek-ai/dsh-fs": "^0.1.5-alpha.1",
|
|
48
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.5-alpha.1",
|
|
49
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.1",
|
|
50
|
+
"@deepseek-ai/dsh-lsp": "^0.1.5-alpha.1",
|
|
51
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.5-alpha.1",
|
|
52
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-alpha.1",
|
|
53
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.1"
|
|
54
54
|
}
|
|
55
55
|
}
|