@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.
Files changed (3) hide show
  1. package/LICENSE +17 -24
  2. package/cordis.patch.yml +9 -12
  3. package/package.json +83 -85
package/LICENSE CHANGED
@@ -1,28 +1,21 @@
1
- BSD 3-Clause License
1
+ MIT License
2
2
 
3
- Copyright (c) 2026, DeepSeek
3
+ Copyright (c) 2026 DeepSeek
4
4
 
5
- Redistribution and use in source and binary forms, with or without
6
- modification, are permitted provided that the following conditions are met:
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
- 1. Redistributions of source code must retain the above copyright notice, this
9
- list of conditions and the following disclaimer.
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
- 2. Redistributions in binary form must reproduce the above copyright notice,
12
- this list of conditions and the following disclaimer in the documentation
13
- and/or other materials provided with the distribution.
14
-
15
- 3. Neither the name of the copyright holder nor the names of its
16
- contributors may be used to endorse or promote products derived from
17
- this software without specific prior written permission.
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
- # Raw configs can supply a process-local path or disable this shared session
110
- # capability. The neutral default is process-local and opens only when used.
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: first-search
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.1-rc.3",
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": "BSD-3-Clause",
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-rc.1",
43
- "@deepseek-ai/cordis-plugin-timer": "^1.1.3-rc.1",
44
- "@deepseek-ai/dsh-agent": "^0.0.1-rc.3",
45
- "@deepseek-ai/dsh-agent-default-model": "^0.0.1-rc.3",
46
- "@deepseek-ai/dsh-agent-loop": "^0.0.1-rc.3",
47
- "@deepseek-ai/dsh-attachment-local": "^0.0.1-rc.3",
48
- "@deepseek-ai/dsh-bash-sandbox": "^0.0.1-rc.3",
49
- "@deepseek-ai/dsh-shell-env": "^0.0.1-rc.3",
50
- "@deepseek-ai/dsh-command-compact": "^0.0.1-rc.3",
51
- "@deepseek-ai/dsh-command-feedback": "^0.0.1-rc.3",
52
- "@deepseek-ai/dsh-command-goal": "^0.0.1-rc.3",
53
- "@deepseek-ai/dsh-commands": "^0.0.1-rc.3",
54
- "@deepseek-ai/dsh-compaction-basic": "^0.0.1-rc.3",
55
- "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.0.1-rc.3",
56
- "@deepseek-ai/dsh-credentials-local": "^0.0.1-rc.3",
57
- "@deepseek-ai/dsh-fs-local": "^0.0.1-rc.3",
58
- "@deepseek-ai/dsh-fs-observation-policy": "^0.0.1-rc.3",
59
- "@deepseek-ai/dsh-fs-sandbox": "^0.0.1-rc.3",
60
- "@deepseek-ai/dsh-goal": "^0.0.1-rc.3",
61
- "@deepseek-ai/dsh-goal-round-driver": "^0.0.1-rc.3",
62
- "@deepseek-ai/dsh-api-gateway": "^0.0.1-rc.3",
63
- "@deepseek-ai/dsh-llm": "^0.0.1-rc.3",
64
- "@deepseek-ai/dsh-llm-deepseek": "^0.0.1-rc.3",
65
- "@deepseek-ai/dsh-llm-pi-ai": "^0.0.1-rc.3",
66
- "@deepseek-ai/dsh-llm-retry": "^0.0.1-rc.3",
67
- "@deepseek-ai/dsh-pwsh-sandbox": "^0.0.1-rc.3",
68
- "@deepseek-ai/dsh-repeat-tool-reminder": "^0.0.1-rc.3",
69
- "@deepseek-ai/dsh-sandbox-local": "^0.0.1-rc.3",
70
- "@deepseek-ai/dsh-sandbox-policy": "^0.0.1-rc.3",
71
- "@deepseek-ai/dsh-session": "^0.0.1-rc.3",
72
- "@deepseek-ai/dsh-session-checkpoint-policy": "^0.0.1-rc.3",
73
- "@deepseek-ai/dsh-permission-presets": "^0.0.1-rc.3",
74
- "@deepseek-ai/dsh-plan-mode": "^0.0.1-rc.3",
75
- "@deepseek-ai/dsh-session-persistence-jsonl": "^0.0.1-rc.3",
76
- "@deepseek-ai/dsh-session-projection": "^0.0.1-rc.3",
77
- "@deepseek-ai/dsh-session-query-sqlite": "^0.0.1-rc.3",
78
- "@deepseek-ai/dsh-session-telemetry-otel": "^0.0.1-rc.3",
79
- "@deepseek-ai/dsh-session-title": "^0.0.1-rc.3",
80
- "@deepseek-ai/dsh-settings-file": "^0.0.1-rc.3",
81
- "@deepseek-ai/dsh-skill": "^0.0.1-rc.3",
82
- "@deepseek-ai/dsh-skill-badge": "^0.0.1-rc.3",
83
- "@deepseek-ai/dsh-skill-filesystem": "^0.0.1-rc.3",
84
- "@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.0.1-rc.3",
85
- "@deepseek-ai/dsh-spill-local": "^0.0.1-rc.3",
86
- "@deepseek-ai/dsh-spill-policy": "^0.0.1-rc.3",
87
- "@deepseek-ai/dsh-subagent": "^0.0.1-rc.3",
88
- "@deepseek-ai/dsh-subagent-claude-code": "^0.0.1-rc.3",
89
- "@deepseek-ai/dsh-subagent-codex": "^0.0.1-rc.3",
90
- "@deepseek-ai/dsh-subagent-fork-in-process": "^0.0.1-rc.3",
91
- "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.0.1-rc.3",
92
- "@deepseek-ai/dsh-subprocess-local": "^0.0.1-rc.3",
93
- "@deepseek-ai/dsh-jobs-local": "^0.0.1-rc.3",
94
- "@deepseek-ai/dsh-tool-call-timeout-policy": "^0.0.1-rc.3",
95
- "@deepseek-ai/dsh-token-meter": "^0.0.1-rc.3",
96
- "@deepseek-ai/dsh-tool-bash": "^0.0.1-rc.3",
97
- "@deepseek-ai/dsh-tool-fs": "^0.0.1-rc.3",
98
- "@deepseek-ai/dsh-tool-fs-search": "^0.0.1-rc.3",
99
- "@deepseek-ai/dsh-tool-goal": "^0.0.1-rc.3",
100
- "@deepseek-ai/dsh-tool-pwsh": "^0.0.1-rc.3",
101
- "@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.3",
102
- "@deepseek-ai/dsh-tool-skill": "^0.0.1-rc.3",
103
- "@deepseek-ai/dsh-tool-str-replace-editor": "^0.0.1-rc.3",
104
- "@deepseek-ai/dsh-tool-subagent": "^0.0.1-rc.3",
105
- "@deepseek-ai/dsh-tool-subagent-control": "^0.0.1-rc.3",
106
- "@deepseek-ai/dsh-tool-subagent-report": "^0.0.1-rc.3",
107
- "@deepseek-ai/dsh-tool-jobs": "^0.0.1-rc.3",
108
- "@deepseek-ai/dsh-tool-todo": "^0.0.1-rc.3",
109
- "@deepseek-ai/dsh-tool-ralph": "^0.0.1-rc.3",
110
- "@deepseek-ai/dsh-tool-web": "^0.0.1-rc.3",
111
- "@deepseek-ai/dsh-tools": "^0.0.1-rc.3",
112
- "@deepseek-ai/dsh-typert-loader": "^0.0.1-rc.3",
113
- "@deepseek-ai/dsh-typert-registry": "^0.0.1-rc.3",
114
- "@deepseek-ai/dsh-user-approval": "^0.0.1-rc.3",
115
- "@deepseek-ai/dsh-user-questions": "^0.0.1-rc.3",
116
- "@deepseek-ai/dsh-web": "^0.0.1-rc.3",
117
- "@deepseek-ai/dsh-web-search-deepseek": "^0.0.1-rc.3",
118
- "@deepseek-ai/dsh-tool-workflow": "^0.0.1-rc.3",
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/dsh-invariants": "^0.0.1-rc.3",
124
- "@deepseek-ai/cordis": "^4.0.1-rc.1"
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.1-rc.3",
128
- "@deepseek-ai/cordis": "^4.0.1-rc.1"
125
+ "@deepseek-ai/dsh-invariants": "^0.1.0-rc.2",
126
+ "@deepseek-ai/cordis": "^4.0.1"
129
127
  }
130
128
  }