dsh-custom-mode 1.4.0 → 1.4.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/client.js CHANGED
@@ -194,6 +194,8 @@ try {
194
194
  "row.tool-subagent-claude-code.label": "Claude Code 子代理",
195
195
  "row.tool-subagent-claude-code.note": "默认关闭:需要先安装对应 Bundle",
196
196
  "row.workflow-ptc.label": "工作流引擎",
197
+ "row.workflow-worker-thread.label": "工作流 Worker 线程",
198
+ "row.workflow-worker-thread.note": "把工作流跑在独立的 worker 线程里",
197
199
  "row.tool-workflow.label": "工作流工具",
198
200
  "row.tool-ralph.label": "Ralph 工作流",
199
201
  "row.tool-ralph.note": "默认关闭",
@@ -362,6 +364,8 @@ try {
362
364
  "row.tool-subagent-claude-code.label": "Claude Code subagent",
363
365
  "row.tool-subagent-claude-code.note": "Off by default: install the matching Bundle first",
364
366
  "row.workflow-ptc.label": "Workflow engine",
367
+ "row.workflow-worker-thread.label": "Workflow worker thread",
368
+ "row.workflow-worker-thread.note": "Runs workflows on a separate worker thread",
365
369
  "row.tool-workflow.label": "Workflow tool",
366
370
  "row.tool-ralph.label": "Ralph workflow",
367
371
  "row.tool-ralph.note": "Off by default",
package/composition.mjs CHANGED
@@ -112,6 +112,9 @@ export const ROW_META = {
112
112
  'tool-subagent-codex': { label: 'Codex 子代理', note: '默认关闭:需要先安装对应 Bundle' },
113
113
  'tool-subagent-claude-code': { label: 'Claude Code 子代理', note: '默认关闭:需要先安装对应 Bundle' },
114
114
  'workflow-ptc': { label: '工作流引擎' },
115
+ // 只出现在**稳定线**(0.1.5-rc.2)的委派分组里;预览线没有这一行。CI 的稳定线任务抓到了它
116
+ // 缺标签("每个出厂行都能查到标签"),这正是双线矩阵的价值。
117
+ 'workflow-worker-thread': { label: '工作流 Worker 线程', note: '把工作流跑在独立的 worker 线程里' },
115
118
  'tool-workflow': { label: '工作流工具' },
116
119
  'tool-ralph': { label: 'Ralph 工作流', note: '默认关闭' },
117
120
  'tool-web': { label: '网页检索与抓取' },
package/locales.mjs CHANGED
@@ -165,6 +165,8 @@ export const zh = {
165
165
  'row.tool-subagent-claude-code.label': 'Claude Code 子代理',
166
166
  'row.tool-subagent-claude-code.note': '默认关闭:需要先安装对应 Bundle',
167
167
  'row.workflow-ptc.label': '工作流引擎',
168
+ 'row.workflow-worker-thread.label': '工作流 Worker 线程',
169
+ 'row.workflow-worker-thread.note': '把工作流跑在独立的 worker 线程里',
168
170
  'row.tool-workflow.label': '工作流工具',
169
171
  'row.tool-ralph.label': 'Ralph 工作流',
170
172
  'row.tool-ralph.note': '默认关闭',
@@ -353,6 +355,8 @@ export const en = {
353
355
  'row.tool-subagent-claude-code.label': 'Claude Code subagent',
354
356
  'row.tool-subagent-claude-code.note': 'Off by default: install the matching Bundle first',
355
357
  'row.workflow-ptc.label': 'Workflow engine',
358
+ 'row.workflow-worker-thread.label': 'Workflow worker thread',
359
+ 'row.workflow-worker-thread.note': 'Runs workflows on a separate worker thread',
356
360
  'row.tool-workflow.label': 'Workflow tool',
357
361
  'row.tool-ralph.label': 'Ralph workflow',
358
362
  'row.tool-ralph.note': 'Off by default',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-custom-mode",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Custom modes and custom prompts for DeepSeek Harness (dsh): edit a mode's system prompt on the settings page (it takes effect on the next model step), choose its base mode, switch plugins row by row, and keep several assistants side by side.",
5
5
  "license": "MIT",
6
6
  "type": "module",