@deepseek-ai/dsh-base 0.1.2-alpha.3 → 0.1.2-alpha.5
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 +5 -5
- package/README.zh.md +5 -5
- package/cordis.patch.yml +8 -11
- package/package.json +85 -93
- package/lib/invariant.js +0 -19
- package/lib/types/invariant.d.ts +0 -16
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/bundle/base/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 0995f5bc69905e643a117c1f5a833be0f114cdc6
|
|
6
|
+
README.zh.md: c1d180f2dd85d6767f197b561b46f722d653d4fc
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Every base-backed `dsh --profile` surface runs on `dsh-base`, so those surfaces
|
|
|
25
25
|
<a id="use-this-package"></a>
|
|
26
26
|
## Use this package
|
|
27
27
|
|
|
28
|
-
You get the dsh core automatically: the shipped `web` and `
|
|
28
|
+
You get the dsh core automatically: the shipped `web`, `headless`, `sdk`, and `acp` profiles already include it, and a custom profile names it as its first bundle. After that, everything works with no further configuration.
|
|
29
29
|
|
|
30
30
|
### A minimal custom profile
|
|
31
31
|
|
|
@@ -43,11 +43,11 @@ To build a profile on the shared core, create a profile with a `package.json` th
|
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
Run `dsh --profile my-profile "your task"` and you get a working agent with model access, tools, persistence, and the default permission policy. The shipped `web` and `
|
|
46
|
+
Run `dsh --profile my-profile "your task"` and you get a working agent with model access, tools, persistence, and the default permission policy. The shipped `web`, `headless`, `sdk`, and `acp` profiles are created for you on first use. To add more bundles, run `dsh plugin --profile <name> add <package>`; in-box bundles resolve from the dsh installation. The profile contract is documented in the [app-boot profile section](../../boot/app-boot/README.md).
|
|
47
47
|
|
|
48
48
|
### What you get
|
|
49
49
|
|
|
50
|
-
Out of the box, every profile built on this core provides: a DeepSeek model connection (the provider and model are configurable, and you can enable extra providers from your settings), the full tool set — file editing, shell commands, web search, subagents, task and goal tracking — durable sessions that survive restarts, and the default permission policy that confines file writes to your workspace and asks before risky actions. Telemetry stays off unless you opt in.
|
|
50
|
+
Out of the box, every profile built on this core provides: a DeepSeek model connection (the provider and model are configurable, and you can enable extra providers from your settings), the full tool set — file editing, shell commands, web search, public HTTP(S) fetch, subagents, task and goal tracking — durable sessions that survive restarts, and the default permission policy that confines file writes to your workspace and asks before risky actions. Web fetch runs without per-call approval; its provider rejects non-public destinations. Telemetry stays off unless you opt in.
|
|
51
51
|
|
|
52
52
|
### Shell tools per platform
|
|
53
53
|
|
|
@@ -81,12 +81,12 @@ The patch gates the two shell stacks by platform on its own rows: `bash-sandbox`
|
|
|
81
81
|
|---|---|
|
|
82
82
|
| [`cordis.patch.yml`](cordis.patch.yml) | The bundle substance: the base plugin rows, with per-row rationale as inline comments |
|
|
83
83
|
| [`src/index.ts`](src/index.ts) | Package entry; carries no runtime API |
|
|
84
|
-
|
|
|
84
|
+
| — | No runtime invariant companion is published; the package is a static patch-list carrier (a YAML document of loader rows owned by other packages); it mounts no service, emits no events, and owns no mutable relation to check. Each inserted row's own package carries that row's invariants. |
|
|
85
85
|
| [`tests/base.spec.ts`](tests/base.spec.ts) | Manifest declaration and platform-gating checks |
|
|
86
86
|
|
|
87
87
|
### Invariant ownership
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
No invariant companion is published because the package is a static patch-list carrier: each inserted row's package owns that row's invariants, and the bundle owns no mutable relation to check.
|
|
90
90
|
|
|
91
91
|
</details>
|
|
92
92
|
|
package/README.zh.md
CHANGED
|
@@ -25,7 +25,7 @@ kind: "package-bundle"
|
|
|
25
25
|
<a id="use-this-package"></a>
|
|
26
26
|
## 使用本包
|
|
27
27
|
|
|
28
|
-
你会自动获得 dsh 核心:随发行版交付的 `web` 与 `
|
|
28
|
+
你会自动获得 dsh 核心:随发行版交付的 `web`、`headless`、`sdk` 与 `acp` profile 已包含它,自定义 profile 则把它列为第一个组合包。之后一切无需任何额外配置即可工作。
|
|
29
29
|
|
|
30
30
|
### 最小自定义 profile
|
|
31
31
|
|
|
@@ -43,11 +43,11 @@ kind: "package-bundle"
|
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
运行 `dsh --profile my-profile "your task"`,你就得到一个可用的 agent(智能体),带模型访问、工具、持久化与默认权限策略。随发行版交付的 `web` 与 `
|
|
46
|
+
运行 `dsh --profile my-profile "your task"`,你就得到一个可用的 agent(智能体),带模型访问、工具、持久化与默认权限策略。随发行版交付的 `web`、`headless`、`sdk` 与 `acp` profile 会在首次使用时为你创建。要添加更多组合包,运行 `dsh plugin --profile <name> add <package>`;内置组合包从 dsh 安装目录解析。profile 约定见 [app-boot 的 profile 章节](../../boot/app-boot/README.zh.md)。
|
|
47
47
|
|
|
48
48
|
### 你得到什么
|
|
49
49
|
|
|
50
|
-
开箱即用,基于本核心构建的每个 profile 都提供:DeepSeek 模型连接(provider 与模型可配置,你还可以在设置中启用额外 provider)、完整工具集——文件编辑、shell 命令、web
|
|
50
|
+
开箱即用,基于本核心构建的每个 profile 都提供:DeepSeek 模型连接(provider 与模型可配置,你还可以在设置中启用额外 provider)、完整工具集——文件编辑、shell 命令、web 搜索、公开 HTTP(S) 抓取、subagent、任务与目标跟踪——可跨重启存活的持久会话,以及默认权限策略:把文件写入限制在工作区内,危险操作前征询许可。Web 抓取无需逐次审批,其提供方会拒绝非公开目的地址。遥测默认关闭,除非你主动开启。
|
|
51
51
|
|
|
52
52
|
### 各平台的 shell 工具
|
|
53
53
|
|
|
@@ -81,12 +81,12 @@ patch 在自身上按平台门控两个 shell 栈:`bash-sandbox` 与 `tool-bas
|
|
|
81
81
|
|---|---|
|
|
82
82
|
| [`cordis.patch.yml`](cordis.patch.yml) | 组合包的实体:基础插件行,附以行内注释说明各行依据 |
|
|
83
83
|
| [`src/index.ts`](src/index.ts) | 包入口;不携带任何运行时 API |
|
|
84
|
-
|
|
|
84
|
+
| — | 不发布运行时不变式伴生入口;本包只持有静态 patch 列表,插入的各行分别负责自己的不变式。 |
|
|
85
85
|
| [`tests/base.spec.ts`](tests/base.spec.ts) | manifest 声明与平台门控检查 |
|
|
86
86
|
|
|
87
87
|
### 不变式归属
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
不发布不变式伴生入口,因为本包是静态 patch 列表载体:每条插入行由所属的包负责其不变式,组合包自身没有任何可审计的可变关系。
|
|
90
90
|
|
|
91
91
|
</details>
|
|
92
92
|
|
package/cordis.patch.yml
CHANGED
|
@@ -360,9 +360,9 @@
|
|
|
360
360
|
backgroundMode: continuable
|
|
361
361
|
|
|
362
362
|
# Fork omits model selection so provider/model stay equal to the parent and
|
|
363
|
-
# the inherited history remains eligible for KV Cache reuse.
|
|
364
|
-
#
|
|
365
|
-
#
|
|
363
|
+
# the inherited history remains eligible for KV Cache reuse. This base row
|
|
364
|
+
# stays one-shot; preset layers may select continuable mode without adding a
|
|
365
|
+
# child-only system-prompt section or tool schema ahead of that history.
|
|
366
366
|
# See .agents/notes/implemented/feature/2026-08-18-model-selected-subagent-routes.md
|
|
367
367
|
# and .agents/notes/implemented/architecture/2026-08-10-fork-children-stay-one-shot.md.
|
|
368
368
|
- id: tool-subagent-fork
|
|
@@ -372,10 +372,6 @@
|
|
|
372
372
|
toolName: subagent_fork
|
|
373
373
|
backgroundMode: one-shot
|
|
374
374
|
|
|
375
|
-
# Optional direct-child return channel; absent from roots and one-shot agents.
|
|
376
|
-
- id: tool-subagent-report
|
|
377
|
-
name: '@deepseek-ai/dsh-tool-subagent-report'
|
|
378
|
-
|
|
379
375
|
- id: workflow-worker-thread
|
|
380
376
|
name: '@deepseek-ai/dsh-workflow-worker-thread'
|
|
381
377
|
config:
|
|
@@ -437,9 +433,10 @@
|
|
|
437
433
|
thresholds: [3, 5, 8]
|
|
438
434
|
argumentsPreviewChars: 500
|
|
439
435
|
|
|
440
|
-
#
|
|
441
|
-
#
|
|
442
|
-
#
|
|
436
|
+
# The shared base enables the stable model-facing web_search and web_fetch
|
|
437
|
+
# tools. The Web app disables this host row and composes both tools per agent
|
|
438
|
+
# preset; products with a stricter network policy override tool-web. DeepSeek
|
|
439
|
+
# search resolves the same DEEPSEEK_API_KEY
|
|
443
440
|
# credential the Models page manages for chat, at each search; its Messages
|
|
444
441
|
# endpoint is separate from the chat-completions endpoint, so it takes its own
|
|
445
442
|
# base-URL override. Anonymous fetch accepts only public HTTP(S) destinations,
|
|
@@ -464,7 +461,7 @@
|
|
|
464
461
|
- id: tool-web
|
|
465
462
|
name: '@deepseek-ai/dsh-tool-web'
|
|
466
463
|
config:
|
|
467
|
-
fetch:
|
|
464
|
+
fetch: true
|
|
468
465
|
searchTimeoutMs: 60000
|
|
469
466
|
|
|
470
467
|
# ── rows every mode mounts, whose values each overlay may state ──────────────
|
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: the first patch layer of base-backed profiles, inserting core rows over the empty profile root",
|
|
4
|
-
"version": "0.1.2-alpha.
|
|
4
|
+
"version": "0.1.2-alpha.5",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -18,17 +18,12 @@
|
|
|
18
18
|
"types": "./lib/types/index.d.ts",
|
|
19
19
|
"default": "./lib/index.js"
|
|
20
20
|
},
|
|
21
|
-
"./invariant": {
|
|
22
|
-
"types": "./lib/types/invariant.d.ts",
|
|
23
|
-
"default": "./lib/invariant.js"
|
|
24
|
-
},
|
|
25
21
|
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
26
22
|
"./src/*": "./src/*",
|
|
27
23
|
"./package.json": "./package.json"
|
|
28
24
|
},
|
|
29
25
|
"files": [
|
|
30
26
|
"lib/index.js",
|
|
31
|
-
"lib/invariant.js",
|
|
32
27
|
"cordis.patch.yml",
|
|
33
28
|
"lib/types/**/*.d.ts"
|
|
34
29
|
],
|
|
@@ -39,98 +34,95 @@
|
|
|
39
34
|
}
|
|
40
35
|
},
|
|
41
36
|
"dependencies": {
|
|
42
|
-
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.3",
|
|
43
|
-
"@deepseek-ai/dsh-agent-default-model": "^0.1.2-alpha.3",
|
|
44
|
-
"@deepseek-ai/dsh-agent-loop": "^0.1.2-alpha.3",
|
|
45
|
-
"@deepseek-ai/dsh-attachment-local": "^0.1.2-alpha.3",
|
|
46
37
|
"@deepseek-ai/cordis-plugin-hmr": "^1.0.17",
|
|
47
38
|
"@deepseek-ai/cordis-plugin-timer": "^1.1.4",
|
|
48
|
-
"@deepseek-ai/dsh-
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
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-
|
|
58
|
-
"@deepseek-ai/dsh-
|
|
59
|
-
"@deepseek-ai/dsh-
|
|
60
|
-
"@deepseek-ai/dsh-
|
|
61
|
-
"@deepseek-ai/dsh-
|
|
62
|
-
"@deepseek-ai/dsh-
|
|
63
|
-
"@deepseek-ai/dsh-
|
|
64
|
-
"@deepseek-ai/dsh-
|
|
65
|
-
"@deepseek-ai/dsh-
|
|
66
|
-
"@deepseek-ai/dsh-
|
|
67
|
-
"@deepseek-ai/dsh-
|
|
68
|
-
"@deepseek-ai/dsh-llm
|
|
69
|
-
"@deepseek-ai/dsh-
|
|
70
|
-
"@deepseek-ai/dsh-
|
|
71
|
-
"@deepseek-ai/dsh-
|
|
72
|
-
"@deepseek-ai/dsh-
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/dsh-
|
|
75
|
-
"@deepseek-ai/dsh-
|
|
76
|
-
"@deepseek-ai/dsh-
|
|
77
|
-
"@deepseek-ai/dsh-
|
|
78
|
-
"@deepseek-ai/dsh-session-
|
|
79
|
-
"@deepseek-ai/dsh-session-
|
|
80
|
-
"@deepseek-ai/dsh-session-
|
|
81
|
-
"@deepseek-ai/dsh-session
|
|
82
|
-
"@deepseek-ai/dsh-session-
|
|
83
|
-
"@deepseek-ai/dsh-session-
|
|
84
|
-
"@deepseek-ai/dsh-
|
|
85
|
-
"@deepseek-ai/dsh-
|
|
86
|
-
"@deepseek-ai/dsh-
|
|
87
|
-
"@deepseek-ai/dsh-
|
|
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-
|
|
95
|
-
"@deepseek-ai/dsh-
|
|
96
|
-
"@deepseek-ai/dsh-
|
|
97
|
-
"@deepseek-ai/dsh-
|
|
98
|
-
"@deepseek-ai/dsh-
|
|
99
|
-
"@deepseek-ai/dsh-
|
|
100
|
-
"@deepseek-ai/dsh-
|
|
101
|
-
"@deepseek-ai/dsh-
|
|
102
|
-
"@deepseek-ai/dsh-
|
|
103
|
-
"@deepseek-ai/dsh-tool-
|
|
104
|
-
"@deepseek-ai/dsh-
|
|
105
|
-
"@deepseek-ai/dsh-tool-
|
|
106
|
-
"@deepseek-ai/dsh-
|
|
107
|
-
"@deepseek-ai/dsh-tool-
|
|
108
|
-
"@deepseek-ai/dsh-tool-
|
|
109
|
-
"@deepseek-ai/dsh-
|
|
110
|
-
"@deepseek-ai/dsh-tool-
|
|
111
|
-
"@deepseek-ai/dsh-tool-
|
|
112
|
-
"@deepseek-ai/dsh-tool-
|
|
113
|
-
"@deepseek-ai/dsh-tool-
|
|
114
|
-
"@deepseek-ai/dsh-tool-
|
|
115
|
-
"@deepseek-ai/dsh-tool-
|
|
116
|
-
"@deepseek-ai/dsh-tool-
|
|
117
|
-
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.
|
|
118
|
-
"@deepseek-ai/dsh-typert-loader": "^0.1.2-alpha.
|
|
119
|
-
"@deepseek-ai/dsh-
|
|
120
|
-
"@deepseek-ai/dsh-
|
|
121
|
-
"@deepseek-ai/dsh-
|
|
122
|
-
"@deepseek-ai/dsh-
|
|
123
|
-
"@deepseek-ai/dsh-
|
|
124
|
-
"@deepseek-ai/dsh-
|
|
125
|
-
"@deepseek-ai/dsh-
|
|
126
|
-
"@deepseek-ai/dsh-web
|
|
39
|
+
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.5",
|
|
40
|
+
"@deepseek-ai/dsh-agent-default-model": "^0.1.2-alpha.5",
|
|
41
|
+
"@deepseek-ai/dsh-agent-loop": "^0.1.2-alpha.5",
|
|
42
|
+
"@deepseek-ai/dsh-attachment-local": "^0.1.2-alpha.5",
|
|
43
|
+
"@deepseek-ai/dsh-bash-sandbox": "^0.1.2-alpha.5",
|
|
44
|
+
"@deepseek-ai/dsh-command-compact": "^0.1.2-alpha.5",
|
|
45
|
+
"@deepseek-ai/dsh-command-feedback": "^0.1.2-alpha.5",
|
|
46
|
+
"@deepseek-ai/dsh-command-goal": "^0.1.2-alpha.5",
|
|
47
|
+
"@deepseek-ai/dsh-commands": "^0.1.2-alpha.5",
|
|
48
|
+
"@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.2-alpha.5",
|
|
49
|
+
"@deepseek-ai/dsh-compaction-basic": "^0.1.2-alpha.5",
|
|
50
|
+
"@deepseek-ai/dsh-credentials-local": "^0.1.2-alpha.5",
|
|
51
|
+
"@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.2-alpha.5",
|
|
52
|
+
"@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.2-alpha.5",
|
|
53
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.5",
|
|
54
|
+
"@deepseek-ai/dsh-fs-observation-policy": "^0.1.2-alpha.5",
|
|
55
|
+
"@deepseek-ai/dsh-fs-sandbox": "^0.1.2-alpha.5",
|
|
56
|
+
"@deepseek-ai/dsh-goal-round-driver": "^0.1.2-alpha.5",
|
|
57
|
+
"@deepseek-ai/dsh-goal": "^0.1.2-alpha.5",
|
|
58
|
+
"@deepseek-ai/dsh-api-gateway": "^0.1.2-alpha.5",
|
|
59
|
+
"@deepseek-ai/dsh-llm": "^0.1.2-alpha.5",
|
|
60
|
+
"@deepseek-ai/dsh-llm-deepseek": "^0.1.2-alpha.5",
|
|
61
|
+
"@deepseek-ai/dsh-llm-retry": "^0.1.2-alpha.5",
|
|
62
|
+
"@deepseek-ai/dsh-permission-presets": "^0.1.2-alpha.5",
|
|
63
|
+
"@deepseek-ai/dsh-plan-mode": "^0.1.2-alpha.5",
|
|
64
|
+
"@deepseek-ai/dsh-llm-pi-ai": "^0.1.2-alpha.5",
|
|
65
|
+
"@deepseek-ai/dsh-pwsh-sandbox": "^0.1.2-alpha.5",
|
|
66
|
+
"@deepseek-ai/dsh-repeat-tool-reminder": "^0.1.2-alpha.5",
|
|
67
|
+
"@deepseek-ai/dsh-sandbox-local": "^0.1.2-alpha.5",
|
|
68
|
+
"@deepseek-ai/dsh-sandbox-policy": "^0.1.2-alpha.5",
|
|
69
|
+
"@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.2-alpha.5",
|
|
70
|
+
"@deepseek-ai/dsh-session-log-deepseek": "^0.1.2-alpha.5",
|
|
71
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.2-alpha.5",
|
|
72
|
+
"@deepseek-ai/dsh-session": "^0.1.2-alpha.5",
|
|
73
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.2-alpha.5",
|
|
74
|
+
"@deepseek-ai/dsh-session-projection-cache": "^0.1.2-alpha.5",
|
|
75
|
+
"@deepseek-ai/dsh-session-query-sqlite": "^0.1.2-alpha.5",
|
|
76
|
+
"@deepseek-ai/dsh-session-telemetry-otel": "^0.1.2-alpha.5",
|
|
77
|
+
"@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.1.2-alpha.5",
|
|
78
|
+
"@deepseek-ai/dsh-settings-file": "^0.1.2-alpha.5",
|
|
79
|
+
"@deepseek-ai/dsh-skill": "^0.1.2-alpha.5",
|
|
80
|
+
"@deepseek-ai/dsh-session-title": "^0.1.2-alpha.5",
|
|
81
|
+
"@deepseek-ai/dsh-skill-badge": "^0.1.2-alpha.5",
|
|
82
|
+
"@deepseek-ai/dsh-skill-filesystem": "^0.1.2-alpha.5",
|
|
83
|
+
"@deepseek-ai/dsh-spill-local": "^0.1.2-alpha.5",
|
|
84
|
+
"@deepseek-ai/dsh-spill-policy": "^0.1.2-alpha.5",
|
|
85
|
+
"@deepseek-ai/dsh-storage": "^0.1.2-alpha.5",
|
|
86
|
+
"@deepseek-ai/dsh-storage-domain": "^0.1.2-alpha.5",
|
|
87
|
+
"@deepseek-ai/dsh-storage-json": "^0.1.2-alpha.5",
|
|
88
|
+
"@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.2-alpha.5",
|
|
89
|
+
"@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.2-alpha.5",
|
|
90
|
+
"@deepseek-ai/dsh-subagent": "^0.1.2-alpha.5",
|
|
91
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.2-alpha.5",
|
|
92
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.5",
|
|
93
|
+
"@deepseek-ai/dsh-jobs-local": "^0.1.2-alpha.5",
|
|
94
|
+
"@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.2-alpha.5",
|
|
95
|
+
"@deepseek-ai/dsh-token-meter": "^0.1.2-alpha.5",
|
|
96
|
+
"@deepseek-ai/dsh-tool-fs": "^0.1.2-alpha.5",
|
|
97
|
+
"@deepseek-ai/dsh-tool-fs-search": "^0.1.2-alpha.5",
|
|
98
|
+
"@deepseek-ai/dsh-tool-bash": "^0.1.2-alpha.5",
|
|
99
|
+
"@deepseek-ai/dsh-tool-goal": "^0.1.2-alpha.5",
|
|
100
|
+
"@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.5",
|
|
101
|
+
"@deepseek-ai/dsh-tool-ralph": "^0.1.2-alpha.5",
|
|
102
|
+
"@deepseek-ai/dsh-tool-skill": "^0.1.2-alpha.5",
|
|
103
|
+
"@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.5",
|
|
104
|
+
"@deepseek-ai/dsh-tool-subagent": "^0.1.2-alpha.5",
|
|
105
|
+
"@deepseek-ai/dsh-tool-subagent-control": "^0.1.2-alpha.5",
|
|
106
|
+
"@deepseek-ai/dsh-tool-jobs": "^0.1.2-alpha.5",
|
|
107
|
+
"@deepseek-ai/dsh-tool-todo": "^0.1.2-alpha.5",
|
|
108
|
+
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.5",
|
|
109
|
+
"@deepseek-ai/dsh-typert-loader": "^0.1.2-alpha.5",
|
|
110
|
+
"@deepseek-ai/dsh-tool-web": "^0.1.2-alpha.5",
|
|
111
|
+
"@deepseek-ai/dsh-typert-registry": "^0.1.2-alpha.5",
|
|
112
|
+
"@deepseek-ai/dsh-tool-workflow": "^0.1.2-alpha.5",
|
|
113
|
+
"@deepseek-ai/dsh-user-approval": "^0.1.2-alpha.5",
|
|
114
|
+
"@deepseek-ai/dsh-user-questions": "^0.1.2-alpha.5",
|
|
115
|
+
"@deepseek-ai/dsh-web-search-deepseek": "^0.1.2-alpha.5",
|
|
116
|
+
"@deepseek-ai/dsh-workflow-worker-thread": "^0.1.2-alpha.5",
|
|
117
|
+
"@deepseek-ai/dsh-web": "^0.1.2-alpha.5",
|
|
118
|
+
"@deepseek-ai/dsh-tool-pwsh": "^0.1.2-alpha.5",
|
|
119
|
+
"@deepseek-ai/dsh-agent-instructions": "^0.1.2-alpha.5",
|
|
120
|
+
"@deepseek-ai/dsh-web-fetch-http": "^0.1.2-alpha.5"
|
|
127
121
|
},
|
|
128
122
|
"peerDependencies": {
|
|
129
|
-
"@deepseek-ai/cordis": "^4.0.2"
|
|
130
|
-
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3"
|
|
123
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
131
124
|
},
|
|
132
125
|
"devDependencies": {
|
|
133
|
-
"@deepseek-ai/cordis": "^4.0.2"
|
|
134
|
-
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3"
|
|
126
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
135
127
|
}
|
|
136
128
|
}
|
package/lib/invariant.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
//#region lib/types/invariant.js
|
|
2
|
-
/**
|
|
3
|
-
* Package-owned invariant companion for `@deepseek-ai/dsh-base`.
|
|
4
|
-
* @module @deepseek-ai/dsh-base/invariant
|
|
5
|
-
*/
|
|
6
|
-
const PACKAGE_NAME = "@deepseek-ai/dsh-base";
|
|
7
|
-
/** Cordis companion plugin name. */
|
|
8
|
-
const name = "base-bundle-invariant";
|
|
9
|
-
/** Service required before the companion can register. */
|
|
10
|
-
const inject = ["invariants"];
|
|
11
|
-
const install = () => {};
|
|
12
|
-
/**
|
|
13
|
-
* Register this package's invariant companion.
|
|
14
|
-
* @param ctx - Cordis context carrying the invariant service.
|
|
15
|
-
* @returns the installed registration's disposer after setup succeeds.
|
|
16
|
-
*/
|
|
17
|
-
const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
|
|
18
|
-
//#endregion
|
|
19
|
-
export { apply, inject, name };
|
package/lib/types/invariant.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Package-owned invariant companion for `@deepseek-ai/dsh-base`.
|
|
3
|
-
* @module @deepseek-ai/dsh-base/invariant
|
|
4
|
-
*/
|
|
5
|
-
import type { Context } from '@deepseek-ai/cordis';
|
|
6
|
-
/** Cordis companion plugin name. */
|
|
7
|
-
export declare const name = "base-bundle-invariant";
|
|
8
|
-
/** Service required before the companion can register. */
|
|
9
|
-
export declare const inject: string[];
|
|
10
|
-
/**
|
|
11
|
-
* Register this package's invariant companion.
|
|
12
|
-
* @param ctx - Cordis context carrying the invariant service.
|
|
13
|
-
* @returns the installed registration's disposer after setup succeeds.
|
|
14
|
-
*/
|
|
15
|
-
export declare const apply: (ctx: Context) => Promise<() => void>;
|
|
16
|
-
//# sourceMappingURL=invariant.d.ts.map
|