dsh-workspace-kit 0.1.0 → 0.1.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/README.md +14 -0
- package/README.zh-CN.md +14 -0
- package/docs/screenshots/icon-picker.png +0 -0
- package/docs/screenshots/sidebar.png +0 -0
- package/docs/screenshots/spotlight.png +0 -0
- package/lib/client.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,12 @@ Beyond archive/restore, the enhanced sidebar (when active) adds:
|
|
|
30
30
|
|
|
31
31
|
You can also say things like "use `workspace_find` to find the pms workspace" in a session, or type `/workspace-find pms`.
|
|
32
32
|
|
|
33
|
+
## Screenshots
|
|
34
|
+
|
|
35
|
+
| Enhanced workspace sidebar | Per-workspace icon & color picker | ⌘K Spotlight search |
|
|
36
|
+
| :---: | :---: | :---: |
|
|
37
|
+
| <img src="docs/screenshots/sidebar.png" width="230" alt="Enhanced workspace sidebar"> | <img src="docs/screenshots/icon-picker.png" width="230" alt="Per-workspace icon and color picker"> | <img src="docs/screenshots/spotlight.png" width="360" alt="Spotlight search palette"> |
|
|
38
|
+
|
|
33
39
|
## Languages (i18n)
|
|
34
40
|
|
|
35
41
|
All user-facing copy is bilingual (Simplified Chinese / English):
|
|
@@ -40,6 +46,14 @@ All user-facing copy is bilingual (Simplified Chinese / English):
|
|
|
40
46
|
|
|
41
47
|
## Quick install (personal dsh)
|
|
42
48
|
|
|
49
|
+
Published on npm — if you already run dsh Web, install in one line:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
dsh plugin --profile web add dsh-workspace-kit
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
The git route below is for development / running the latest source.
|
|
56
|
+
|
|
43
57
|
Prerequisites: `dsh` on PATH (`@deepseek-ai/dsh` ≥ 0.1.1-rc.2), Node 20+.
|
|
44
58
|
|
|
45
59
|
```bash
|
package/README.zh-CN.md
CHANGED
|
@@ -30,6 +30,12 @@
|
|
|
30
30
|
|
|
31
31
|
会话里可直接说「用 workspace_find 找一下 pms 工作区」,或输入 `/workspace-find pms`。
|
|
32
32
|
|
|
33
|
+
## 截图
|
|
34
|
+
|
|
35
|
+
| 增强侧栏 | 每工作区图标与颜色选择器 | ⌘K Spotlight 搜索 |
|
|
36
|
+
| :---: | :---: | :---: |
|
|
37
|
+
| <img src="docs/screenshots/sidebar.png" width="230" alt="增强侧栏"> | <img src="docs/screenshots/icon-picker.png" width="230" alt="每工作区图标与颜色选择器"> | <img src="docs/screenshots/spotlight.png" width="360" alt="Spotlight 搜索面板"> |
|
|
38
|
+
|
|
33
39
|
## 多语言(i18n)
|
|
34
40
|
|
|
35
41
|
所有面向用户的文案均为中英双语(简体中文 / English):
|
|
@@ -40,6 +46,14 @@
|
|
|
40
46
|
|
|
41
47
|
## 快速安装(本机个人 dsh)
|
|
42
48
|
|
|
49
|
+
已发布到 npm —— 如果你已在本机跑 dsh Web,一行即可安装:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
dsh plugin --profile web add dsh-workspace-kit
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
下面的 git 方式用于开发 / 尝鲜最新源码。
|
|
56
|
+
|
|
43
57
|
前置:`dsh` 在 PATH(`@deepseek-ai/dsh` ≥ 0.1.1-rc.2),Node 20+。
|
|
44
58
|
|
|
45
59
|
```bash
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/lib/client.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-workspace-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "dsh (DeepSeek Harness) workspace kit: soft workspace archive/restore, ⌘K Spotlight search, per-workspace icons/colors, and an enhanced sidebar browser with drag reorder — a standard Cordis bundle plugin (host tools/commands + bilingual browser client).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|