@deepseek-ai/dsh-subagent-acp 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 +2 -2
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/package.json +22 -22
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/subagent/subagent-acp/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 87fb7f3101d2d329300213bed2acb4a479c83b72
|
|
6
|
+
README.zh.md: 399a262b9b6a4bba650552388b210d87f69f5687
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
|
|
|
9
9
|
|
|
10
10
|
## Summary
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Use this package to delegate a task to an ACP-compatible agent running in a fresh subprocess with its own runtime, session, model, and tools. Each run shares only the selected working directory, sends the task over ACP, and returns the child's final answer or a safe error; intermediate messages and tool traffic stay outside the parent conversation. Permission prompts are answered by configured policy without human interaction. Choose it when delegation needs process isolation or a non-Harness ACP agent, and choose an in-process backend when the child must share parent capabilities.
|
|
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
|
-
|
|
12
|
+
使用本包可将任务委派给运行在全新子进程中的 ACP 兼容 agent;子 agent 拥有独立的运行时、会话、模型和工具。每次运行只共享选定的工作目录,通过 ACP 发送任务,并返回子 agent 的最终答案或安全错误;中间消息和工具流量不会进入父级对话。权限提示由配置的策略自动应答,无需人工介入。当委派需要进程隔离或需要使用非 Harness ACP agent 时选择本包;当子 agent 必须共享父级能力时,选择进程内后端。
|
|
13
13
|
|
|
14
14
|
## 目录
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-subagent-acp",
|
|
3
3
|
"description": "Out-of-process ACP subagent backend: drives a child agent in a spawned subprocess over the Agent Client Protocol",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -27,34 +27,34 @@
|
|
|
27
27
|
],
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
|
|
31
|
-
"@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
|
|
32
30
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
33
|
-
"@deepseek-ai/dsh-
|
|
34
|
-
"@deepseek-ai/dsh-
|
|
35
|
-
"@deepseek-ai/dsh-
|
|
36
|
-
"@deepseek-ai/dsh-
|
|
31
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
|
|
32
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
|
|
33
|
+
"@deepseek-ai/dsh-subagent": "^0.1.5-alpha.2",
|
|
34
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-alpha.2",
|
|
35
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
|
|
36
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.2"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@agentclientprotocol/sdk": "1.4.0",
|
|
40
|
-
"@deepseek-ai/
|
|
41
|
-
"@deepseek-ai/
|
|
40
|
+
"@deepseek-ai/dsh-brand": "^0.1.5-alpha.2",
|
|
41
|
+
"@deepseek-ai/schemastery": "^3.18.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
45
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
|
|
45
46
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.3",
|
|
46
|
-
"@deepseek-ai/dsh-
|
|
47
|
-
"@deepseek-ai/dsh-
|
|
48
|
-
"@deepseek-ai/dsh-
|
|
49
|
-
"@deepseek-ai/dsh-loader-smoke": "^0.1.
|
|
50
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
51
|
-
"@deepseek-ai/dsh-session-
|
|
52
|
-
"@deepseek-ai/dsh-session-
|
|
53
|
-
"@deepseek-ai/dsh-
|
|
54
|
-
"@deepseek-ai/dsh-
|
|
55
|
-
"@deepseek-ai/dsh-subprocess": "^0.1.
|
|
56
|
-
"@deepseek-ai/dsh-
|
|
57
|
-
"@deepseek-ai/dsh-
|
|
58
|
-
"@deepseek-ai/dsh-tool-subagent": "^0.1.3-alpha.2"
|
|
47
|
+
"@deepseek-ai/dsh-app-boot": "^0.1.5-alpha.2",
|
|
48
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
|
|
49
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
|
|
50
|
+
"@deepseek-ai/dsh-loader-smoke": "^0.1.5-alpha.2",
|
|
51
|
+
"@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.5-alpha.2",
|
|
52
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.5-alpha.2",
|
|
53
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.5-alpha.2",
|
|
54
|
+
"@deepseek-ai/dsh-subagent": "^0.1.5-alpha.2",
|
|
55
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.2",
|
|
56
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.5-alpha.2",
|
|
57
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-alpha.2",
|
|
58
|
+
"@deepseek-ai/dsh-tool-subagent": "^0.1.5-alpha.2"
|
|
59
59
|
}
|
|
60
60
|
}
|