@deepseek-ai/dsh-base 0.1.2-alpha.2 → 0.1.2-alpha.4

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 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: 4fc828a5614245bf89867e2c52d1b2019e300921
6
- README.zh.md: 0d80938229624dd98536bf4798e1541fd84bd8e1
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 `headless` profiles already include it, and a custom profile names it as its first bundle. After that, everything works with no further configuration.
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 `headless` 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).
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
- | [`src/invariant.ts`](src/invariant.ts) | Invariant companion: no runtime invariant; each inserted row's package owns its invariants |
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
- The invariant companion registers an empty installer because the package is a static patch-list carrier: each inserted row's own package carries that row's invariants, and the bundle owns no mutable relation to check.
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` 与 `headless` profile 已包含它,自定义 profile 则把它列为第一个组合包。之后一切无需任何额外配置即可工作。
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` 与 `headless` profile 会在首次使用时为你创建。要添加更多组合包,运行 `dsh plugin --profile <name> add <package>`;内置组合包从 dsh 安装目录解析。profile 约定见 [app-boot 的 profile 章节](../../boot/app-boot/README.zh.md)。
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 搜索、subagent、任务与目标跟踪——可跨重启存活的持久会话,以及默认权限策略:把文件写入限制在工作区内,危险操作前征询许可。遥测默认关闭,除非你主动开启。
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
- | [`src/invariant.ts`](src/invariant.ts) | 不变式伴生插件:无运行时不变式;每条插入行所属的包负责自己的不变式 |
84
+ | | 不发布运行时不变式伴生入口;本包只持有静态 patch 列表,插入的各行分别负责自己的不变式。 |
85
85
  | [`tests/base.spec.ts`](tests/base.spec.ts) | manifest 声明与平台门控检查 |
86
86
 
87
87
  ### 不变式归属
88
88
 
89
- 不变式伴生插件注册一个空安装器,因为本包是静态 patch 列表载体:每条插入行由所属的包携带其不变式,组合包自身没有任何可审计的可变关系。
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. It stays one-shot
364
- # because a continuable child's `report` tool and prompt section precede that
365
- # history and invalidate the same prefix.
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
- # Every mode enables the stable model-facing web_search tool. The Web app's
441
- # per-agent presets additionally enable web_fetch; other products opt in by
442
- # overriding tool-web. DeepSeek search resolves the same DEEPSEEK_API_KEY
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: false
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.2",
4
+ "version": "0.1.2-alpha.4",
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/cordis-plugin-hmr": "^1.0.17",
43
37
  "@deepseek-ai/cordis-plugin-timer": "^1.1.4",
44
- "@deepseek-ai/dsh-agent": "^0.1.2-alpha.2",
45
- "@deepseek-ai/dsh-agent-default-model": "^0.1.2-alpha.2",
46
- "@deepseek-ai/dsh-agent-loop": "^0.1.2-alpha.2",
47
- "@deepseek-ai/dsh-attachment-local": "^0.1.2-alpha.2",
48
- "@deepseek-ai/dsh-command-feedback": "^0.1.2-alpha.2",
49
- "@deepseek-ai/dsh-command-goal": "^0.1.2-alpha.2",
50
- "@deepseek-ai/dsh-command-compact": "^0.1.2-alpha.2",
51
- "@deepseek-ai/dsh-commands": "^0.1.2-alpha.2",
52
- "@deepseek-ai/dsh-compaction-basic": "^0.1.2-alpha.2",
53
- "@deepseek-ai/dsh-credentials-local": "^0.1.2-alpha.2",
54
- "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.2-alpha.2",
55
- "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.2-alpha.2",
56
- "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.2-alpha.2",
57
- "@deepseek-ai/dsh-fs-observation-policy": "^0.1.2-alpha.2",
58
- "@deepseek-ai/dsh-fs-sandbox": "^0.1.2-alpha.2",
59
- "@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.2",
60
- "@deepseek-ai/dsh-goal": "^0.1.2-alpha.2",
61
- "@deepseek-ai/dsh-goal-round-driver": "^0.1.2-alpha.2",
62
- "@deepseek-ai/dsh-api-gateway": "^0.1.2-alpha.2",
63
- "@deepseek-ai/dsh-llm": "^0.1.2-alpha.2",
64
- "@deepseek-ai/dsh-llm-deepseek": "^0.1.2-alpha.2",
65
- "@deepseek-ai/dsh-llm-pi-ai": "^0.1.2-alpha.2",
66
- "@deepseek-ai/dsh-llm-retry": "^0.1.2-alpha.2",
67
- "@deepseek-ai/dsh-permission-presets": "^0.1.2-alpha.2",
68
- "@deepseek-ai/dsh-plan-mode": "^0.1.2-alpha.2",
69
- "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.2-alpha.2",
70
- "@deepseek-ai/dsh-repeat-tool-reminder": "^0.1.2-alpha.2",
71
- "@deepseek-ai/dsh-sandbox-local": "^0.1.2-alpha.2",
72
- "@deepseek-ai/dsh-sandbox-policy": "^0.1.2-alpha.2",
73
- "@deepseek-ai/dsh-session": "^0.1.2-alpha.2",
74
- "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.2-alpha.2",
75
- "@deepseek-ai/dsh-session-log-deepseek": "^0.1.2-alpha.2",
76
- "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.2-alpha.2",
77
- "@deepseek-ai/dsh-session-projection": "^0.1.2-alpha.2",
78
- "@deepseek-ai/dsh-session-projection-cache": "^0.1.2-alpha.2",
79
- "@deepseek-ai/dsh-session-query-sqlite": "^0.1.2-alpha.2",
80
- "@deepseek-ai/dsh-session-telemetry-otel": "^0.1.2-alpha.2",
81
- "@deepseek-ai/dsh-session-title": "^0.1.2-alpha.2",
82
- "@deepseek-ai/dsh-settings-file": "^0.1.2-alpha.2",
83
- "@deepseek-ai/dsh-skill": "^0.1.2-alpha.2",
84
- "@deepseek-ai/dsh-skill-badge": "^0.1.2-alpha.2",
85
- "@deepseek-ai/dsh-skill-filesystem": "^0.1.2-alpha.2",
86
- "@deepseek-ai/dsh-spill-local": "^0.1.2-alpha.2",
87
- "@deepseek-ai/dsh-spill-policy": "^0.1.2-alpha.2",
88
- "@deepseek-ai/dsh-storage": "^0.1.2-alpha.2",
89
- "@deepseek-ai/dsh-storage-domain": "^0.1.2-alpha.2",
90
- "@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.1.2-alpha.2",
91
- "@deepseek-ai/dsh-subagent": "^0.1.2-alpha.2",
92
- "@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.2-alpha.2",
93
- "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.2-alpha.2",
94
- "@deepseek-ai/dsh-subprocess-local": "^0.1.2-alpha.2",
95
- "@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.2",
96
- "@deepseek-ai/dsh-jobs-local": "^0.1.2-alpha.2",
97
- "@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.2-alpha.2",
98
- "@deepseek-ai/dsh-token-meter": "^0.1.2-alpha.2",
99
- "@deepseek-ai/dsh-storage-json": "^0.1.2-alpha.2",
100
- "@deepseek-ai/dsh-tool-fs": "^0.1.2-alpha.2",
101
- "@deepseek-ai/dsh-tool-fs-search": "^0.1.2-alpha.2",
102
- "@deepseek-ai/dsh-tool-goal": "^0.1.2-alpha.2",
103
- "@deepseek-ai/dsh-tool-pwsh": "^0.1.2-alpha.2",
104
- "@deepseek-ai/dsh-tool-ralph": "^0.1.2-alpha.2",
105
- "@deepseek-ai/dsh-tool-skill": "^0.1.2-alpha.2",
106
- "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.2",
107
- "@deepseek-ai/dsh-tool-subagent": "^0.1.2-alpha.2",
108
- "@deepseek-ai/dsh-tool-bash": "^0.1.2-alpha.2",
109
- "@deepseek-ai/dsh-tool-subagent-control": "^0.1.2-alpha.2",
110
- "@deepseek-ai/dsh-tool-subagent-report": "^0.1.2-alpha.2",
111
- "@deepseek-ai/dsh-tool-jobs": "^0.1.2-alpha.2",
112
- "@deepseek-ai/dsh-tool-todo": "^0.1.2-alpha.2",
113
- "@deepseek-ai/dsh-tool-web": "^0.1.2-alpha.2",
114
- "@deepseek-ai/dsh-tool-workflow": "^0.1.2-alpha.2",
115
- "@deepseek-ai/dsh-tools": "^0.1.2-alpha.2",
116
- "@deepseek-ai/dsh-typert-loader": "^0.1.2-alpha.2",
117
- "@deepseek-ai/dsh-typert-registry": "^0.1.2-alpha.2",
118
- "@deepseek-ai/dsh-user-approval": "^0.1.2-alpha.2",
119
- "@deepseek-ai/dsh-web": "^0.1.2-alpha.2",
120
- "@deepseek-ai/dsh-user-questions": "^0.1.2-alpha.2",
121
- "@deepseek-ai/dsh-web-fetch-http": "^0.1.2-alpha.2",
122
- "@deepseek-ai/dsh-web-search-deepseek": "^0.1.2-alpha.2",
123
- "@deepseek-ai/dsh-workflow-worker-thread": "^0.1.2-alpha.2",
124
- "@deepseek-ai/dsh-agent-instructions": "^0.1.2-alpha.2",
125
- "@deepseek-ai/dsh-bash-sandbox": "^0.1.2-alpha.2",
126
- "@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.2"
38
+ "@deepseek-ai/cordis-plugin-hmr": "^1.0.17",
39
+ "@deepseek-ai/dsh-agent": "^0.1.2-alpha.4",
40
+ "@deepseek-ai/dsh-agent-default-model": "^0.1.2-alpha.4",
41
+ "@deepseek-ai/dsh-agent-loop": "^0.1.2-alpha.4",
42
+ "@deepseek-ai/dsh-attachment-local": "^0.1.2-alpha.4",
43
+ "@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.4",
44
+ "@deepseek-ai/dsh-bash-sandbox": "^0.1.2-alpha.4",
45
+ "@deepseek-ai/dsh-command-compact": "^0.1.2-alpha.4",
46
+ "@deepseek-ai/dsh-commands": "^0.1.2-alpha.4",
47
+ "@deepseek-ai/dsh-compaction-basic": "^0.1.2-alpha.4",
48
+ "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.2-alpha.4",
49
+ "@deepseek-ai/dsh-credentials-local": "^0.1.2-alpha.4",
50
+ "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.2-alpha.4",
51
+ "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.2-alpha.4",
52
+ "@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.4",
53
+ "@deepseek-ai/dsh-fs-observation-policy": "^0.1.2-alpha.4",
54
+ "@deepseek-ai/dsh-command-feedback": "^0.1.2-alpha.4",
55
+ "@deepseek-ai/dsh-fs-sandbox": "^0.1.2-alpha.4",
56
+ "@deepseek-ai/dsh-command-goal": "^0.1.2-alpha.4",
57
+ "@deepseek-ai/dsh-goal": "^0.1.2-alpha.4",
58
+ "@deepseek-ai/dsh-goal-round-driver": "^0.1.2-alpha.4",
59
+ "@deepseek-ai/dsh-api-gateway": "^0.1.2-alpha.4",
60
+ "@deepseek-ai/dsh-llm": "^0.1.2-alpha.4",
61
+ "@deepseek-ai/dsh-llm-deepseek": "^0.1.2-alpha.4",
62
+ "@deepseek-ai/dsh-llm-pi-ai": "^0.1.2-alpha.4",
63
+ "@deepseek-ai/dsh-llm-retry": "^0.1.2-alpha.4",
64
+ "@deepseek-ai/dsh-permission-presets": "^0.1.2-alpha.4",
65
+ "@deepseek-ai/dsh-plan-mode": "^0.1.2-alpha.4",
66
+ "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.2-alpha.4",
67
+ "@deepseek-ai/dsh-repeat-tool-reminder": "^0.1.2-alpha.4",
68
+ "@deepseek-ai/dsh-sandbox-local": "^0.1.2-alpha.4",
69
+ "@deepseek-ai/dsh-sandbox-policy": "^0.1.2-alpha.4",
70
+ "@deepseek-ai/dsh-session": "^0.1.2-alpha.4",
71
+ "@deepseek-ai/dsh-session-log-deepseek": "^0.1.2-alpha.4",
72
+ "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.2-alpha.4",
73
+ "@deepseek-ai/dsh-session-projection": "^0.1.2-alpha.4",
74
+ "@deepseek-ai/dsh-session-projection-cache": "^0.1.2-alpha.4",
75
+ "@deepseek-ai/dsh-session-query-sqlite": "^0.1.2-alpha.4",
76
+ "@deepseek-ai/dsh-session-telemetry-otel": "^0.1.2-alpha.4",
77
+ "@deepseek-ai/dsh-session-title": "^0.1.2-alpha.4",
78
+ "@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.1.2-alpha.4",
79
+ "@deepseek-ai/dsh-settings-file": "^0.1.2-alpha.4",
80
+ "@deepseek-ai/dsh-skill": "^0.1.2-alpha.4",
81
+ "@deepseek-ai/dsh-skill-badge": "^0.1.2-alpha.4",
82
+ "@deepseek-ai/dsh-skill-filesystem": "^0.1.2-alpha.4",
83
+ "@deepseek-ai/dsh-spill-local": "^0.1.2-alpha.4",
84
+ "@deepseek-ai/dsh-spill-policy": "^0.1.2-alpha.4",
85
+ "@deepseek-ai/dsh-storage": "^0.1.2-alpha.4",
86
+ "@deepseek-ai/dsh-storage-domain": "^0.1.2-alpha.4",
87
+ "@deepseek-ai/dsh-storage-json": "^0.1.2-alpha.4",
88
+ "@deepseek-ai/dsh-subagent": "^0.1.2-alpha.4",
89
+ "@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.2-alpha.4",
90
+ "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.2-alpha.4",
91
+ "@deepseek-ai/dsh-subprocess-local": "^0.1.2-alpha.4",
92
+ "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.2-alpha.4",
93
+ "@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.4",
94
+ "@deepseek-ai/dsh-jobs-local": "^0.1.2-alpha.4",
95
+ "@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.2-alpha.4",
96
+ "@deepseek-ai/dsh-token-meter": "^0.1.2-alpha.4",
97
+ "@deepseek-ai/dsh-tool-bash": "^0.1.2-alpha.4",
98
+ "@deepseek-ai/dsh-tool-fs": "^0.1.2-alpha.4",
99
+ "@deepseek-ai/dsh-tool-fs-search": "^0.1.2-alpha.4",
100
+ "@deepseek-ai/dsh-tool-goal": "^0.1.2-alpha.4",
101
+ "@deepseek-ai/dsh-tool-ralph": "^0.1.2-alpha.4",
102
+ "@deepseek-ai/dsh-tool-skill": "^0.1.2-alpha.4",
103
+ "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.4",
104
+ "@deepseek-ai/dsh-tool-subagent": "^0.1.2-alpha.4",
105
+ "@deepseek-ai/dsh-tool-subagent-control": "^0.1.2-alpha.4",
106
+ "@deepseek-ai/dsh-tool-jobs": "^0.1.2-alpha.4",
107
+ "@deepseek-ai/dsh-tool-todo": "^0.1.2-alpha.4",
108
+ "@deepseek-ai/dsh-tool-web": "^0.1.2-alpha.4",
109
+ "@deepseek-ai/dsh-tools": "^0.1.2-alpha.4",
110
+ "@deepseek-ai/dsh-typert-loader": "^0.1.2-alpha.4",
111
+ "@deepseek-ai/dsh-tool-pwsh": "^0.1.2-alpha.4",
112
+ "@deepseek-ai/dsh-user-approval": "^0.1.2-alpha.4",
113
+ "@deepseek-ai/dsh-user-questions": "^0.1.2-alpha.4",
114
+ "@deepseek-ai/dsh-web": "^0.1.2-alpha.4",
115
+ "@deepseek-ai/dsh-web-fetch-http": "^0.1.2-alpha.4",
116
+ "@deepseek-ai/dsh-web-search-deepseek": "^0.1.2-alpha.4",
117
+ "@deepseek-ai/dsh-workflow-worker-thread": "^0.1.2-alpha.4",
118
+ "@deepseek-ai/dsh-typert-registry": "^0.1.2-alpha.4",
119
+ "@deepseek-ai/dsh-agent-instructions": "^0.1.2-alpha.4",
120
+ "@deepseek-ai/dsh-tool-workflow": "^0.1.2-alpha.4"
127
121
  },
128
122
  "peerDependencies": {
129
- "@deepseek-ai/cordis": "^4.0.2",
130
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2"
123
+ "@deepseek-ai/cordis": "^4.0.2"
131
124
  },
132
125
  "devDependencies": {
133
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
134
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 };
@@ -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