dsh-multi-folder 0.1.6 → 0.2.0

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.md CHANGED
@@ -34,6 +34,15 @@ dsh plugin --profile web add dsh-multi-folder
34
34
 
35
35
  Then **restart the DSH backend** (host composition loads at process start) and **refresh the browser page** (the client bundle is served `no-cache`).
36
36
 
37
+ ## Compatibility
38
+
39
+ Choose the plugin version that matches your DeepSeek Harness release:
40
+
41
+ | DeepSeek Harness | Install |
42
+ | --- | --- |
43
+ | 0.1.1 or earlier | `dsh-multi-folder@0.1.7` |
44
+ | 0.1.2-alpha or later | the latest `dsh-multi-folder` |
45
+
37
46
  ## Usage
38
47
 
39
48
  A Multi-folder button appears in the session header, and a second entry appears on the **session-creation page**: a chip row directly above the composer card (the same band the git-branch chip uses), aligned with the workspace/preset chips of the new-session screen. Clicking it opens the panel as a popover anchored to the chip. Exactly one session-creation entry is ever shown — the plugin registers three candidate seats and elects the best available one (upstream `conversation.hero.workspaceExtras` chip > `conversation.input.dock` row > fixed bottom-right launcher for shells declaring neither). The panel lets you:
package/README.zh.md CHANGED
@@ -34,6 +34,15 @@ dsh plugin --profile web add dsh-multi-folder
34
34
 
35
35
  然后**重启 DSH 后端**(宿主组合在进程启动时装载)并**刷新浏览器页面**(客户端 bundle 以 `no-cache` 提供)。
36
36
 
37
+ ## 兼容性
38
+
39
+ 请选择与你的 DeepSeek Harness 版本匹配的插件版本:
40
+
41
+ | DeepSeek Harness | 安装 |
42
+ | --- | --- |
43
+ | 0.1.1 及更早 | `dsh-multi-folder@0.1.7` |
44
+ | 0.1.2-alpha 及更新 | 最新版 `dsh-multi-folder` |
45
+
37
46
  ## 使用
38
47
 
39
48
  会话头部出现「多工作目录」按钮(英文界面显示 "Multi-folder");**会话创建页**的入口位于**输入框上方**——与 git 分支胶囊同一条 dock 带,左边缘对齐新会话界面的工作区/预设胶囊,点击后面板以锚定在该胶囊上的浮层展开。会话创建页始终只显示**一个**入口:插件注册三个候选座位并选用当前可用的最佳者(上游 `conversation.hero.workspaceExtras` chip > `conversation.input.dock` 行 > 两者皆未声明时的右下角浮动按钮)。打开面板即可:
package/docs/design.md CHANGED
@@ -154,8 +154,7 @@ window.__ModuleLoader__.load({
154
154
  - `inject: ['remote', 'remote.commands', 'slots', 'workspaces', 'connection', 'sessions', 'locale']`; the package's
155
155
  `dsh.client.inject` lists the packages providing them
156
156
  (`@deepseek-ai/dsh-api-gateway`, `@deepseek-ai/dsh-api-remotes`,
157
- `@deepseek-ai/dsh-client-connection`, `@deepseek-ai/dsh-client-locale`,
158
- `@deepseek-ai/dsh-client-runtime`).
157
+ `@deepseek-ai/dsh-client-connection`, `@deepseek-ai/dsh-client-locale`).
159
158
  - UI registrations: `conversation.session.header.actions` (session-scoped button),
160
159
  `shell.overlay` panel, `conversation.input.dock` chip row (session-scoped
161
160
  list entry above the composer card — the session-creation page's shipped
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-multi-folder",
3
- "version": "0.1.6",
3
+ "version": "0.2.0",
4
4
  "description": "DeepSeek Harness plugin: secondary working directories for a project. The agent keeps the primary workspace as cwd, gains equal write/exec permissions on configured secondary directories under workspace-write mode, and is notified of configuration changes at the next message boundary. Configurable from the session header AND from the session-creation page (before the first message) through a sessionless multiFolder remote API.",
5
5
  "keywords": [
6
6
  "dsh-plugin",
@@ -39,6 +39,13 @@
39
39
  "docs"
40
40
  ],
41
41
  "dsh": {
42
+ "compatibility": {
43
+ "node": ">=20",
44
+ "dshReleases": {
45
+ "0.1.1-rc.2": "incompatible",
46
+ "0.1.2-alpha.1": "compatible"
47
+ }
48
+ },
42
49
  "bundle": {
43
50
  "patch": "./cordis.patch.yml"
44
51
  },
@@ -48,8 +55,7 @@
48
55
  "@deepseek-ai/dsh-api-gateway",
49
56
  "@deepseek-ai/dsh-api-remotes",
50
57
  "@deepseek-ai/dsh-client-connection",
51
- "@deepseek-ai/dsh-client-locale",
52
- "@deepseek-ai/dsh-client-runtime"
58
+ "@deepseek-ai/dsh-client-locale"
53
59
  ]
54
60
  }
55
61
  },