@sparkelf/dsh-patch-subagent-settings-presets 0.1.0-rc.9 → 0.2.0-rc.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 +3 -1
- package/README.zh.md +3 -1
- package/package.json +22 -22
- package/patches/subagent-settings-presets.patch +20 -13
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 patches/npm/subagent-settings-presets/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 9f5b15dd4797d4d35654072d8f7eaf7d7625c875
|
|
6
|
+
README.zh.md: 04beb11e4fa88561b6f35d6f9eb02e722e75cfec
|
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ English | [中文](README.zh.md)
|
|
|
4
4
|
|
|
5
5
|
This data-only package routes the two built-in delegation rows in each official shipped Agent preset to `@sparkelf/dsh-plugin-subagent-settings`. The continuous row reads `subagent`; the one-shot fork row reads `subagent-fork`. Disabled Codex and Claude Code provider rows remain official and unchanged.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
It also sets `disabled: true` on the shipped `ralph` row in all three presets, following official 0.1.6 (`feat(presets): disable ralph in the default compositions`): the tool restricts itself to runs the human explicitly asked for, and its completion is a worker self-report rather than an independent evaluation, so a shipped composition should not offer it. A session that wants it can duplicate the preset and drop the `disabled` key.
|
|
8
|
+
|
|
9
|
+
The target is the exact official source base `fb2c4b9e698e30edb738bca4cf0618587db7d203`. The Plus apply command verifies the base ancestry and payload before applying it. This package has no JavaScript entry, Cordis lifecycle, install script, or capability implementation.
|
|
8
10
|
|
|
9
11
|
Retire this package when official Agent presets expose a deployment overlay for shipped row replacement or ship equivalent settings-backed rows.
|
package/README.zh.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
该data-only package把每个official shipped Agent preset中的两条built-in delegation rows路由到`@sparkelf/dsh-plugin-subagent-settings`。continuous row读取`subagent`,one-shot fork row读取`subagent-fork`。disabled Codex与Claude Code provider rows保持official且不变。
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
它还把三个preset中shipped的`ralph` row设为`disabled: true`,follow官方0.1.6(`feat(presets): disable ralph in the default compositions`):该tool把自身限定在人类明确要求的运行上,而它的completion是worker self-report而非independent evaluation,因此shipped composition不应提供它。需要它的session可以duplicate该preset并去掉`disabled`键。
|
|
8
|
+
|
|
9
|
+
target是exact official source base `fb2c4b9e698e30edb738bca4cf0618587db7d203`。Plus apply command在应用前验证base ancestry与payload。本package没有JavaScript entry、Cordis lifecycle、install script或capability implementation。
|
|
8
10
|
|
|
9
11
|
official Agent presets提供可替换shipped rows的deployment overlay,或直接发布等价settings-backed rows后,retire本package。
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"version": "0.1.0-rc.9",
|
|
4
|
-
"description": "Data-only exact official-source patch routing built-in shipped preset delegation rows to the Plus settings capability",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/SparkElf/deepseek-harness-plus.git",
|
|
11
|
-
"directory": "patches/npm/subagent-settings-presets"
|
|
12
|
-
},
|
|
13
|
-
"type": "module",
|
|
14
|
-
"files": [
|
|
15
|
-
"patches/*.patch"
|
|
16
|
-
],
|
|
17
|
-
"license": "MIT",
|
|
2
|
+
"description": "Data-only exact official-source patch routing built-in shipped preset delegation rows to the Plus settings capability and disabling the ralph row in the shipped compositions",
|
|
18
3
|
"dshPatch": {
|
|
19
4
|
"formatVersion": 1,
|
|
20
5
|
"variants": [
|
|
21
6
|
{
|
|
7
|
+
"dsh": ">=0.1.6-alpha.1",
|
|
8
|
+
"file": "./patches/subagent-settings-presets.patch",
|
|
22
9
|
"id": "subagent-settings-preset-routing",
|
|
23
|
-
"dsh": ">=0.1.2-alpha.1",
|
|
24
10
|
"target": {
|
|
11
|
+
"baseRevision": "0d1f50007f9bca3f52b06e1c3074fa14d5fb0720",
|
|
25
12
|
"kind": "dsh-source",
|
|
26
|
-
"baseRevision": "cd5ef8148158c3a752a658978873241fdf8e2bbc",
|
|
27
13
|
"paths": [
|
|
28
14
|
"packages/preset/agent-presets/presets/"
|
|
29
15
|
]
|
|
30
|
-
}
|
|
31
|
-
"file": "./patches/subagent-settings-presets.patch"
|
|
16
|
+
}
|
|
32
17
|
}
|
|
33
18
|
]
|
|
34
|
-
}
|
|
35
|
-
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"patches/*.patch"
|
|
22
|
+
],
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"name": "@sparkelf/dsh-patch-subagent-settings-presets",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"repository": {
|
|
29
|
+
"directory": "patches/npm/subagent-settings-presets",
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/SparkElf/deepseek-harness-plus.git"
|
|
32
|
+
},
|
|
33
|
+
"type": "module",
|
|
34
|
+
"version": "0.2.0-rc.1"
|
|
35
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
diff --git a/packages/preset/agent-presets/presets/cordis/agent.cordis.yml b/packages/preset/agent-presets/presets/cordis/agent.cordis.yml
|
|
2
|
-
index
|
|
2
|
+
index c76dc4a51b..4c8ec0661a 100644
|
|
3
3
|
--- a/packages/preset/agent-presets/presets/cordis/agent.cordis.yml
|
|
4
4
|
+++ b/packages/preset/agent-presets/presets/cordis/agent.cordis.yml
|
|
5
|
-
@@ -
|
|
5
|
+
@@ -166,23 +166,21 @@
|
|
6
6
|
name: '@deepseek-ai/dsh-tool-subagent-control/list-agents'
|
|
7
7
|
|
|
8
8
|
- id: tool-subagent
|
|
@@ -17,8 +17,8 @@ index 96cd7e6b09..8c2d176a33 100644
|
|
|
17
17
|
|
|
18
18
|
- # Fork omits model selection so provider/model stay equal to the parent and
|
|
19
19
|
- # the inherited history remains eligible for KV Cache reuse. This preset
|
|
20
|
-
- # keeps fork continuable and
|
|
21
|
-
- #
|
|
20
|
+
- # keeps fork continuable; parent and child inherit the same messaging tool,
|
|
21
|
+
- # while the parent id and return guidance follow the inherited history.
|
|
22
22
|
+ # One-shot fork preserves inherited history and reads its own settings namespace.
|
|
23
23
|
- id: tool-subagent-fork
|
|
24
24
|
- name: '@deepseek-ai/dsh-tool-subagent'
|
|
@@ -32,8 +32,10 @@ index 96cd7e6b09..8c2d176a33 100644
|
|
|
32
32
|
|
|
33
33
|
# Production dsh does not install these optional providers. Install the
|
|
34
34
|
# matching Bundle in this Profile and restart the Host, then copy this
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
index 940a7c9..286d0ac 100644
|
|
36
|
+
--- a/packages/preset/agent-presets/presets/cordis/agent.cordis.yml
|
|
37
|
+
+++ b/packages/preset/agent-presets/presets/cordis/agent.cordis.ymldiff --git a/packages/preset/agent-presets/presets/ptc/agent.cordis.yml b/packages/preset/agent-presets/presets/ptc/agent.cordis.yml
|
|
38
|
+
index a3771e6b71..5235855abd 100644
|
|
37
39
|
--- a/packages/preset/agent-presets/presets/ptc/agent.cordis.yml
|
|
38
40
|
+++ b/packages/preset/agent-presets/presets/ptc/agent.cordis.yml
|
|
39
41
|
@@ -185,23 +185,21 @@
|
|
@@ -51,8 +53,8 @@ index 3c8406f907..65c4e48bea 100644
|
|
|
51
53
|
|
|
52
54
|
- # Fork omits model selection so provider/model stay equal to the parent and
|
|
53
55
|
- # the inherited history remains eligible for KV Cache reuse. This preset
|
|
54
|
-
- # keeps fork continuable and
|
|
55
|
-
- #
|
|
56
|
+
- # keeps fork continuable; parent and child inherit the same messaging tool,
|
|
57
|
+
- # while the parent id and return guidance follow the inherited history.
|
|
56
58
|
+ # One-shot fork preserves inherited history and reads its own settings namespace.
|
|
57
59
|
- id: tool-subagent-fork
|
|
58
60
|
- name: '@deepseek-ai/dsh-tool-subagent'
|
|
@@ -66,11 +68,13 @@ index 3c8406f907..65c4e48bea 100644
|
|
|
66
68
|
|
|
67
69
|
# Production dsh does not install these optional providers. Install the
|
|
68
70
|
# matching Bundle in this Profile and restart the Host, then copy this
|
|
69
|
-
|
|
70
|
-
|
|
71
|
+
index 7773f64..25cdebf 100644
|
|
72
|
+
--- a/packages/preset/agent-presets/presets/ptc/agent.cordis.yml
|
|
73
|
+
+++ b/packages/preset/agent-presets/presets/ptc/agent.cordis.ymldiff --git a/packages/preset/agent-presets/presets/standard/agent.cordis.yml b/packages/preset/agent-presets/presets/standard/agent.cordis.yml
|
|
74
|
+
index 63b1798840..3052ac720b 100644
|
|
71
75
|
--- a/packages/preset/agent-presets/presets/standard/agent.cordis.yml
|
|
72
76
|
+++ b/packages/preset/agent-presets/presets/standard/agent.cordis.yml
|
|
73
|
-
@@ -
|
|
77
|
+
@@ -178,23 +178,21 @@
|
|
74
78
|
name: '@deepseek-ai/dsh-tool-subagent-control/list-agents'
|
|
75
79
|
|
|
76
80
|
- id: tool-subagent
|
|
@@ -85,8 +89,8 @@ index 3916d6bf3e..2943d851c9 100644
|
|
|
85
89
|
|
|
86
90
|
- # Fork omits model selection so provider/model stay equal to the parent and
|
|
87
91
|
- # the inherited history remains eligible for KV Cache reuse. This preset
|
|
88
|
-
- # keeps fork continuable and
|
|
89
|
-
- #
|
|
92
|
+
- # keeps fork continuable; parent and child inherit the same messaging tool,
|
|
93
|
+
- # while the parent id and return guidance follow the inherited history.
|
|
90
94
|
+ # One-shot fork preserves inherited history and reads its own settings namespace.
|
|
91
95
|
- id: tool-subagent-fork
|
|
92
96
|
- name: '@deepseek-ai/dsh-tool-subagent'
|
|
@@ -100,3 +104,6 @@ index 3916d6bf3e..2943d851c9 100644
|
|
|
100
104
|
|
|
101
105
|
# Production dsh does not install these optional providers. Install the
|
|
102
106
|
# matching Bundle in this Profile and restart the Host, then copy this
|
|
107
|
+
index b2c26e4..922a430 100644
|
|
108
|
+
--- a/packages/preset/agent-presets/presets/standard/agent.cordis.yml
|
|
109
|
+
+++ b/packages/preset/agent-presets/presets/standard/agent.cordis.yml
|