@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 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: 62b20bd1b35a80682dbacbe1e9ff4c0b1b7c3d63
6
- README.zh.md: fa1b1c8897cee115de25240fa543ac0d496d8f22
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
- `dsh-subagent-acp` runs each delegated child in a fresh subprocess and drives it as an Agent Client Protocol client: the child gets its own runtime, session, model configuration, and tools, and it can be any ACP-compatible agent, not just Harness. It is the out-of-process alternative to the in-process spawn and fork backends, sharing only the parent session's working directory with the child. Each run spawns a fresh process, initializes an ACP session, sends the task, and collects the streamed final answer; permission prompts are auto-answered by configuration, so no human is needed. The parent receives only the child's final answer or a safe error no intermediate messages or tool traffic crosses the boundary. Choose it when the child must be fully isolated from the parent harness and can speak ACP.
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
- `dsh-subagent-acp` 在全新的子进程中运行每个被委派的子 agent,并作为 Agent Client Protocol 客户端驱动它:子 agent(智能体)拥有自己的运行时、会话、模型配置和工具,可以是任何兼容 ACP 的 agent,而不只是 Harness。它是进程内 spawn fork 后端的进程外替代方案,只与子 agent 共享父会话的工作目录。每次运行都会 spawn 全新进程、初始化 ACP 会话、发送任务并收集流式最终答案;权限提示由配置自动应答,因此无需人工参与。父级只收到子 agent 的最终答案或安全错误——中间消息与工具流量不会跨越边界。当子 agent 必须与父 harness 完全隔离且能说 ACP 时,选择它。
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.3-alpha.2",
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-subprocess": "^0.1.3-alpha.2",
34
- "@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2",
35
- "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
36
- "@deepseek-ai/dsh-subagent": "^0.1.3-alpha.2"
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/schemastery": "^3.18.2",
41
- "@deepseek-ai/dsh-brand": "^0.1.3-alpha.2"
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-agent": "^0.1.3-alpha.2",
47
- "@deepseek-ai/dsh-app-boot": "^0.1.3-alpha.2",
48
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
49
- "@deepseek-ai/dsh-loader-smoke": "^0.1.3-alpha.2",
50
- "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
51
- "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.3-alpha.2",
52
- "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.3-alpha.2",
53
- "@deepseek-ai/dsh-session-projection": "^0.1.3-alpha.2",
54
- "@deepseek-ai/dsh-subagent": "^0.1.3-alpha.2",
55
- "@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
56
- "@deepseek-ai/dsh-subprocess-local": "^0.1.3-alpha.2",
57
- "@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2",
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
  }