@deepseek-ai/dsh-base 0.0.1-rc.3 → 0.1.0-rc.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/LICENSE +17 -24
- package/cordis.patch.yml +9 -12
- package/package.json +83 -85
package/LICENSE
CHANGED
|
@@ -1,28 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026
|
|
3
|
+
Copyright (c) 2026 DeepSeek
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
7
11
|
|
|
8
|
-
|
|
9
|
-
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
10
14
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/cordis.patch.yml
CHANGED
|
@@ -106,13 +106,19 @@
|
|
|
106
106
|
- id: attachment-local
|
|
107
107
|
name: '@deepseek-ai/dsh-attachment-local'
|
|
108
108
|
|
|
109
|
-
#
|
|
110
|
-
#
|
|
109
|
+
# Full-text session search is opt-in. `openAt: never` keeps
|
|
110
|
+
# ctx.sessionQuery mounted — exact reads, titles, and lineage traces
|
|
111
|
+
# (session export, subagent-fork Workspace inheritance) stay available —
|
|
112
|
+
# while search calls fail with SESSION_QUERY_SEARCH_DISABLED and SQLite is
|
|
113
|
+
# never opened; the Web sidebar search matches titles and workspace names
|
|
114
|
+
# only. Deployments enabling content search override `openAt` to
|
|
115
|
+
# `first-search` or `startup` in a later patch layer (profile
|
|
116
|
+
# cordis.patch.yml or a --patch overlay), typically with a durable `path`.
|
|
111
117
|
- id: session-query-sqlite
|
|
112
118
|
name: '@deepseek-ai/dsh-session-query-sqlite'
|
|
113
119
|
config:
|
|
114
120
|
path: ':memory:'
|
|
115
|
-
openAt:
|
|
121
|
+
openAt: never
|
|
116
122
|
|
|
117
123
|
# Shared projection registry: subagent catalog identity (mode/label) folds
|
|
118
124
|
# through its registered units, so the `list_agents` surface below fails
|
|
@@ -296,15 +302,6 @@
|
|
|
296
302
|
config:
|
|
297
303
|
providerName: fork
|
|
298
304
|
|
|
299
|
-
# Product providers stay on the host plane because the registry is a
|
|
300
|
-
# process singleton. Agent presets decide whether their own model sees the
|
|
301
|
-
# matching delegation tools; loading either provider starts no product.
|
|
302
|
-
- id: subagent-codex
|
|
303
|
-
name: '@deepseek-ai/dsh-subagent-codex'
|
|
304
|
-
|
|
305
|
-
- id: subagent-claude-code
|
|
306
|
-
name: '@deepseek-ai/dsh-subagent-claude-code'
|
|
307
|
-
|
|
308
305
|
# Continuable background children are selected per delegation tool. The
|
|
309
306
|
# separately loaded follow-up tool registers the one global `send_message`.
|
|
310
307
|
- id: tool-subagent-control
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-base",
|
|
3
3
|
"description": "The shared dsh core as a profile bundle: every profile's first patch layer, inserting the base plugin rows over the empty profile root",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0-rc.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "restricted"
|
|
7
7
|
},
|
|
@@ -32,99 +32,97 @@
|
|
|
32
32
|
"cordis.patch.yml",
|
|
33
33
|
"lib/types/**/*.d.ts"
|
|
34
34
|
],
|
|
35
|
-
"license": "
|
|
35
|
+
"license": "MIT",
|
|
36
36
|
"dsh": {
|
|
37
37
|
"bundle": {
|
|
38
38
|
"patch": "./cordis.patch.yml"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@deepseek-ai/cordis-plugin-hmr": "^1.0.16
|
|
43
|
-
"@deepseek-ai/cordis-plugin-timer": "^1.1.3
|
|
44
|
-
"@deepseek-ai/dsh-agent": "^0.0
|
|
45
|
-
"@deepseek-ai/dsh-agent-default-model": "^0.0
|
|
46
|
-
"@deepseek-ai/dsh-
|
|
47
|
-
"@deepseek-ai/dsh-
|
|
48
|
-
"@deepseek-ai/dsh-bash-sandbox": "^0.0
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-command-
|
|
51
|
-
"@deepseek-ai/dsh-
|
|
52
|
-
"@deepseek-ai/dsh-
|
|
53
|
-
"@deepseek-ai/dsh-
|
|
54
|
-
"@deepseek-ai/dsh-
|
|
55
|
-
"@deepseek-ai/dsh-
|
|
56
|
-
"@deepseek-ai/dsh-
|
|
57
|
-
"@deepseek-ai/dsh-fs-
|
|
58
|
-
"@deepseek-ai/dsh-
|
|
59
|
-
"@deepseek-ai/dsh-
|
|
60
|
-
"@deepseek-ai/dsh-
|
|
61
|
-
"@deepseek-ai/dsh-
|
|
62
|
-
"@deepseek-ai/dsh-
|
|
63
|
-
"@deepseek-ai/dsh-llm": "^0.0
|
|
64
|
-
"@deepseek-ai/dsh-llm-
|
|
65
|
-
"@deepseek-ai/dsh-
|
|
66
|
-
"@deepseek-ai/dsh-
|
|
67
|
-
"@deepseek-ai/dsh-pwsh-sandbox": "^0.0
|
|
68
|
-
"@deepseek-ai/dsh-
|
|
69
|
-
"@deepseek-ai/dsh-sandbox-
|
|
70
|
-
"@deepseek-ai/dsh-
|
|
71
|
-
"@deepseek-ai/dsh-session": "^0.0
|
|
72
|
-
"@deepseek-ai/dsh-session-
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/dsh-
|
|
75
|
-
"@deepseek-ai/dsh-session-
|
|
76
|
-
"@deepseek-ai/dsh-session-
|
|
77
|
-
"@deepseek-ai/dsh-session-
|
|
78
|
-
"@deepseek-ai/dsh-
|
|
79
|
-
"@deepseek-ai/dsh-session-
|
|
80
|
-
"@deepseek-ai/dsh-
|
|
81
|
-
"@deepseek-ai/dsh-skill": "^0.0
|
|
82
|
-
"@deepseek-ai/dsh-skill-
|
|
83
|
-
"@deepseek-ai/dsh-
|
|
84
|
-
"@deepseek-ai/dsh-
|
|
85
|
-
"@deepseek-ai/dsh-
|
|
86
|
-
"@deepseek-ai/dsh-
|
|
87
|
-
"@deepseek-ai/dsh-subagent": "^0.0
|
|
88
|
-
"@deepseek-ai/dsh-
|
|
89
|
-
"@deepseek-ai/dsh-
|
|
90
|
-
"@deepseek-ai/dsh-
|
|
91
|
-
"@deepseek-ai/dsh-
|
|
92
|
-
"@deepseek-ai/dsh-
|
|
93
|
-
"@deepseek-ai/dsh-
|
|
94
|
-
"@deepseek-ai/dsh-tool-
|
|
95
|
-
"@deepseek-ai/dsh-
|
|
96
|
-
"@deepseek-ai/dsh-tool-
|
|
97
|
-
"@deepseek-ai/dsh-tool-
|
|
98
|
-
"@deepseek-ai/dsh-tool-
|
|
99
|
-
"@deepseek-ai/dsh-tool-
|
|
100
|
-
"@deepseek-ai/dsh-tool-
|
|
101
|
-
"@deepseek-ai/dsh-
|
|
102
|
-
"@deepseek-ai/dsh-tool-
|
|
103
|
-
"@deepseek-ai/dsh-tool-
|
|
104
|
-
"@deepseek-ai/dsh-tool-subagent": "^0.0
|
|
105
|
-
"@deepseek-ai/dsh-tool-subagent-
|
|
106
|
-
"@deepseek-ai/dsh-tool-
|
|
107
|
-
"@deepseek-ai/dsh-tool-
|
|
108
|
-
"@deepseek-ai/dsh-tool-
|
|
109
|
-
"@deepseek-ai/dsh-tool-
|
|
110
|
-
"@deepseek-ai/dsh-
|
|
111
|
-
"@deepseek-ai/dsh-
|
|
112
|
-
"@deepseek-ai/dsh-typert-
|
|
113
|
-
"@deepseek-ai/dsh-
|
|
114
|
-
"@deepseek-ai/dsh-user-
|
|
115
|
-
"@deepseek-ai/dsh-
|
|
116
|
-
"@deepseek-ai/dsh-
|
|
117
|
-
"@deepseek-ai/dsh-
|
|
118
|
-
"@deepseek-ai/dsh-
|
|
119
|
-
"@deepseek-ai/dsh-agent-instructions": "^0.0.1-rc.3",
|
|
120
|
-
"@deepseek-ai/dsh-workflow-worker-thread": "^0.0.1-rc.3"
|
|
42
|
+
"@deepseek-ai/cordis-plugin-hmr": "^1.0.16",
|
|
43
|
+
"@deepseek-ai/cordis-plugin-timer": "^1.1.3",
|
|
44
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.2",
|
|
45
|
+
"@deepseek-ai/dsh-agent-default-model": "^0.1.0-rc.2",
|
|
46
|
+
"@deepseek-ai/dsh-attachment-local": "^0.1.0-rc.2",
|
|
47
|
+
"@deepseek-ai/dsh-shell-env": "^0.1.0-rc.2",
|
|
48
|
+
"@deepseek-ai/dsh-bash-sandbox": "^0.1.0-rc.2",
|
|
49
|
+
"@deepseek-ai/dsh-command-feedback": "^0.1.0-rc.2",
|
|
50
|
+
"@deepseek-ai/dsh-command-goal": "^0.1.0-rc.2",
|
|
51
|
+
"@deepseek-ai/dsh-commands": "^0.1.0-rc.2",
|
|
52
|
+
"@deepseek-ai/dsh-compaction-basic": "^0.1.0-rc.2",
|
|
53
|
+
"@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.0-rc.2",
|
|
54
|
+
"@deepseek-ai/dsh-credentials-local": "^0.1.0-rc.2",
|
|
55
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.0-rc.2",
|
|
56
|
+
"@deepseek-ai/dsh-fs-observation-policy": "^0.1.0-rc.2",
|
|
57
|
+
"@deepseek-ai/dsh-fs-sandbox": "^0.1.0-rc.2",
|
|
58
|
+
"@deepseek-ai/dsh-goal": "^0.1.0-rc.2",
|
|
59
|
+
"@deepseek-ai/dsh-goal-round-driver": "^0.1.0-rc.2",
|
|
60
|
+
"@deepseek-ai/dsh-api-gateway": "^0.1.0-rc.2",
|
|
61
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.2",
|
|
62
|
+
"@deepseek-ai/dsh-llm-deepseek": "^0.1.0-rc.2",
|
|
63
|
+
"@deepseek-ai/dsh-llm-pi-ai": "^0.1.0-rc.2",
|
|
64
|
+
"@deepseek-ai/dsh-llm-retry": "^0.1.0-rc.2",
|
|
65
|
+
"@deepseek-ai/dsh-permission-presets": "^0.1.0-rc.2",
|
|
66
|
+
"@deepseek-ai/dsh-plan-mode": "^0.1.0-rc.2",
|
|
67
|
+
"@deepseek-ai/dsh-pwsh-sandbox": "^0.1.0-rc.2",
|
|
68
|
+
"@deepseek-ai/dsh-sandbox-local": "^0.1.0-rc.2",
|
|
69
|
+
"@deepseek-ai/dsh-sandbox-policy": "^0.1.0-rc.2",
|
|
70
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.2",
|
|
71
|
+
"@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.0-rc.2",
|
|
72
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.0-rc.2",
|
|
73
|
+
"@deepseek-ai/dsh-agent-loop": "^0.1.0-rc.2",
|
|
74
|
+
"@deepseek-ai/dsh-session-query-sqlite": "^0.1.0-rc.2",
|
|
75
|
+
"@deepseek-ai/dsh-session-telemetry-otel": "^0.1.0-rc.2",
|
|
76
|
+
"@deepseek-ai/dsh-session-title": "^0.1.0-rc.2",
|
|
77
|
+
"@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.1.0-rc.2",
|
|
78
|
+
"@deepseek-ai/dsh-settings-file": "^0.1.0-rc.2",
|
|
79
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.0-rc.2",
|
|
80
|
+
"@deepseek-ai/dsh-skill": "^0.1.0-rc.2",
|
|
81
|
+
"@deepseek-ai/dsh-skill-badge": "^0.1.0-rc.2",
|
|
82
|
+
"@deepseek-ai/dsh-skill-filesystem": "^0.1.0-rc.2",
|
|
83
|
+
"@deepseek-ai/dsh-command-compact": "^0.1.0-rc.2",
|
|
84
|
+
"@deepseek-ai/dsh-spill-policy": "^0.1.0-rc.2",
|
|
85
|
+
"@deepseek-ai/dsh-subagent": "^0.1.0-rc.2",
|
|
86
|
+
"@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.0-rc.2",
|
|
87
|
+
"@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.0-rc.2",
|
|
88
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.0-rc.2",
|
|
89
|
+
"@deepseek-ai/dsh-spill-local": "^0.1.0-rc.2",
|
|
90
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.2",
|
|
91
|
+
"@deepseek-ai/dsh-jobs-local": "^0.1.0-rc.2",
|
|
92
|
+
"@deepseek-ai/dsh-token-meter": "^0.1.0-rc.2",
|
|
93
|
+
"@deepseek-ai/dsh-tool-bash": "^0.1.0-rc.2",
|
|
94
|
+
"@deepseek-ai/dsh-tool-fs": "^0.1.0-rc.2",
|
|
95
|
+
"@deepseek-ai/dsh-tool-fs-search": "^0.1.0-rc.2",
|
|
96
|
+
"@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.0-rc.2",
|
|
97
|
+
"@deepseek-ai/dsh-repeat-tool-reminder": "^0.1.0-rc.2",
|
|
98
|
+
"@deepseek-ai/dsh-tool-goal": "^0.1.0-rc.2",
|
|
99
|
+
"@deepseek-ai/dsh-tool-pwsh": "^0.1.0-rc.2",
|
|
100
|
+
"@deepseek-ai/dsh-tool-ralph": "^0.1.0-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-tool-skill": "^0.1.0-rc.2",
|
|
102
|
+
"@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.0-rc.2",
|
|
103
|
+
"@deepseek-ai/dsh-tool-subagent": "^0.1.0-rc.2",
|
|
104
|
+
"@deepseek-ai/dsh-tool-subagent-control": "^0.1.0-rc.2",
|
|
105
|
+
"@deepseek-ai/dsh-tool-subagent-report": "^0.1.0-rc.2",
|
|
106
|
+
"@deepseek-ai/dsh-tool-jobs": "^0.1.0-rc.2",
|
|
107
|
+
"@deepseek-ai/dsh-tool-todo": "^0.1.0-rc.2",
|
|
108
|
+
"@deepseek-ai/dsh-tool-web": "^0.1.0-rc.2",
|
|
109
|
+
"@deepseek-ai/dsh-tool-workflow": "^0.1.0-rc.2",
|
|
110
|
+
"@deepseek-ai/dsh-tools": "^0.1.0-rc.2",
|
|
111
|
+
"@deepseek-ai/dsh-typert-loader": "^0.1.0-rc.2",
|
|
112
|
+
"@deepseek-ai/dsh-typert-registry": "^0.1.0-rc.2",
|
|
113
|
+
"@deepseek-ai/dsh-user-approval": "^0.1.0-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-user-questions": "^0.1.0-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-web-search-deepseek": "^0.1.0-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-workflow-worker-thread": "^0.1.0-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-agent-instructions": "^0.1.0-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-web": "^0.1.0-rc.2"
|
|
121
119
|
},
|
|
122
120
|
"peerDependencies": {
|
|
123
|
-
"@deepseek-ai/
|
|
124
|
-
"@deepseek-ai/
|
|
121
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
122
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.2"
|
|
125
123
|
},
|
|
126
124
|
"devDependencies": {
|
|
127
|
-
"@deepseek-ai/dsh-invariants": "^0.0
|
|
128
|
-
"@deepseek-ai/cordis": "^4.0.1
|
|
125
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.2",
|
|
126
|
+
"@deepseek-ai/cordis": "^4.0.1"
|
|
129
127
|
}
|
|
130
128
|
}
|