@deepseek-ai/dsh-workflow-worker-thread 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 +23 -23
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/workflow/workflow-worker-thread/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: c0581a40e9ecf1e8614d35a9f7c07d28cefb484b
|
|
6
|
+
README.zh.md: 8516972e1f5334a2fa6d4ba7f4009d2b7e9e2573
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
|
|
|
9
9
|
|
|
10
10
|
## Summary
|
|
11
11
|
|
|
12
|
-
`dsh-workflow-worker-thread`
|
|
12
|
+
Use `dsh-workflow-worker-thread` to run model-written workflow scripts away from the host event loop. Each run receives its own worker thread, so synchronous loops do not stall the harness and scripts that ignore cancellation can be terminated. The engine supports the `workflow` and `ralph` tools in shipped compositions and can be paired with `dsh-tool-workflow` to expose `workflow` in another composition. This isolation limits availability failures but is not a security boundary; genuinely untrusted scripts require a separate process or container.
|
|
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-workflow-worker-thread`
|
|
12
|
+
使用 `dsh-workflow-worker-thread` 可让模型编写的工作流脚本在宿主事件循环之外运行。每次运行使用独立的 worker thread,因此同步循环不会阻塞 harness,忽略取消的脚本也可以被终止。本引擎支持已发布组合中的 `workflow` 与 `ralph` 工具,也可与 `dsh-tool-workflow` 配合,在其他组合中公开 `workflow`。这种隔离可以限制可用性故障,但不是安全边界;真正不可信的脚本需要独立进程或容器。
|
|
13
13
|
|
|
14
14
|
## 目录
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-workflow-worker-thread",
|
|
3
3
|
"description": "worker-thread workflow engine: executes model-written orchestration scripts off the host event loop, bridging agent() calls back to ctx.subagents",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -32,34 +32,34 @@
|
|
|
32
32
|
],
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
|
|
35
36
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
36
|
-
"@deepseek-ai/dsh-
|
|
37
|
-
"@deepseek-ai/dsh-
|
|
38
|
-
"@deepseek-ai/dsh-
|
|
39
|
-
"@deepseek-ai/dsh-
|
|
40
|
-
"@deepseek-ai/dsh-
|
|
41
|
-
"@deepseek-ai/dsh-workflow": "^0.1.3-alpha.2"
|
|
37
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
|
|
38
|
+
"@deepseek-ai/dsh-subagent": "^0.1.5-alpha.2",
|
|
39
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-alpha.2",
|
|
40
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
|
|
41
|
+
"@deepseek-ai/dsh-workflow": "^0.1.5-alpha.2"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@deepseek-ai/dsh-
|
|
45
|
-
"@deepseek-ai/
|
|
46
|
-
"@deepseek-ai/
|
|
44
|
+
"@deepseek-ai/dsh-util-values": "^0.1.5-alpha.2",
|
|
45
|
+
"@deepseek-ai/schemastery": "^3.18.2",
|
|
46
|
+
"@deepseek-ai/dsh-brand": "^0.1.5-alpha.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"tsx": "^4.19.2",
|
|
50
50
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
51
|
-
"@deepseek-ai/dsh-agent": "^0.1.
|
|
52
|
-
"@deepseek-ai/dsh-agent-loop": "^0.1.
|
|
53
|
-
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.
|
|
54
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
55
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
56
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
57
|
-
"@deepseek-ai/dsh-session-projection": "^0.1.
|
|
58
|
-
"@deepseek-ai/dsh-subagent": "^0.1.
|
|
59
|
-
"@deepseek-ai/dsh-
|
|
60
|
-
"@deepseek-ai/dsh-
|
|
61
|
-
"@deepseek-ai/dsh-tools": "^0.1.
|
|
62
|
-
"@deepseek-ai/dsh-
|
|
63
|
-
"@deepseek-ai/dsh-http-proxy": "^0.1.
|
|
51
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
|
|
52
|
+
"@deepseek-ai/dsh-agent-loop": "^0.1.5-alpha.2",
|
|
53
|
+
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.5-alpha.2",
|
|
54
|
+
"@deepseek-ai/dsh-invariants": "^0.1.5-alpha.2",
|
|
55
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
|
|
56
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
|
|
57
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.5-alpha.2",
|
|
58
|
+
"@deepseek-ai/dsh-subagent": "^0.1.5-alpha.2",
|
|
59
|
+
"@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.5-alpha.2",
|
|
60
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.5-alpha.2",
|
|
61
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-alpha.2",
|
|
62
|
+
"@deepseek-ai/dsh-workflow": "^0.1.5-alpha.2",
|
|
63
|
+
"@deepseek-ai/dsh-http-proxy": "^0.1.5-alpha.2"
|
|
64
64
|
}
|
|
65
65
|
}
|