@rooode/dsh-suite 0.1.11 → 0.1.12
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 +1 -1
- package/bin/cli.js +1 -1
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
| 插件名称 | 说明 | 核心能力 |
|
|
15
15
|
| :--- | :--- | :--- |
|
|
16
16
|
| **[`@rooode/dsh-plugin-automation`](https://www.npmjs.com/package/@rooode/dsh-plugin-automation)** | 自动化任务与调度中心 | ⚡ 24/7 Node.js 服务端常驻后台周期/定时调度、Headless 会话执行引擎、模型/模式选择器、全量审计历史 |
|
|
17
|
-
| **[`@rooode/dsh-plugin-git`](https://www.npmjs.com/package/@rooode/dsh-plugin-git)** | WebStorm 风格 Git 提交插件 |
|
|
17
|
+
| **[`@rooode/dsh-plugin-git`](https://www.npmjs.com/package/@rooode/dsh-plugin-git)** | WebStorm 风格 Git 提交插件 | 🌿 变更文件分层目录树、三态复选框、双栏 (Side-by-Side) 与单栏 (Unified) Diff 视窗、Conventional Commits 智能生成 |
|
|
18
18
|
| **[`@rooode/dsh-plugin-preview`](https://www.npmjs.com/package/@rooode/dsh-plugin-preview)** | 代码与文档多标签预览插件 | 📝 参考 WorkBuddy FileTabs 的右侧抽屉、工作空间文件树、多语言代码高亮与符号大纲、JSON 交互树、GFM 渲染 |
|
|
19
19
|
| **[`@rooode/dsh-plugin-quickbar`](https://www.npmjs.com/package/@rooode/dsh-plugin-quickbar)** | 对话输入框快捷指令栏 | 📌 常驻输入框正上方 Dock 栏、工作空间隔离绑定、自定义提示词创建/编辑、一键触发对话 |
|
|
20
20
|
|
package/bin/cli.js
CHANGED
|
@@ -66,7 +66,7 @@ function formatPluginLine(icon, name, desc, colorCode) {
|
|
|
66
66
|
|
|
67
67
|
function printBanner() {
|
|
68
68
|
const lineAuto = formatPluginLine('⚡', '@rooode/dsh-plugin-automation', '24/7 Node 服务端常驻自动化与调度中心', '33m');
|
|
69
|
-
const lineGit = formatPluginLine('
|
|
69
|
+
const lineGit = formatPluginLine('🌿', '@rooode/dsh-plugin-git', 'WebStorm 风格 Git 提交与双栏 Diff 对比', '35m');
|
|
70
70
|
const linePrev = formatPluginLine('📝', '@rooode/dsh-plugin-preview', '多标签代码/文档预览与工作空间文件树', '34m');
|
|
71
71
|
const lineQk = formatPluginLine('📌', '@rooode/dsh-plugin-quickbar', '输入框上方工作空间快捷指令栏', '32m');
|
|
72
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rooode/dsh-suite",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "DeepSeek Harness 一键全功能增强套件 (自动化调度 + WebStorm Git 提交对比 + 代码文档多标签预览 + 对话快捷栏)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -41,12 +41,19 @@
|
|
|
41
41
|
"author": "rooode",
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@deepseek-ai/dsh": "^0.1.1-rc.2",
|
|
45
44
|
"@rooode/dsh-plugin-automation": "^0.2.4",
|
|
46
45
|
"@rooode/dsh-plugin-git": "^0.1.6",
|
|
47
|
-
"@rooode/dsh-plugin-preview": "^0.1.
|
|
46
|
+
"@rooode/dsh-plugin-preview": "^0.1.17",
|
|
48
47
|
"@rooode/dsh-plugin-quickbar": "^0.1.6"
|
|
49
48
|
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@deepseek-ai/dsh": ">=0.1.0"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"@deepseek-ai/dsh": {
|
|
54
|
+
"optional": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
50
57
|
"dsh": {
|
|
51
58
|
"bundle": {
|
|
52
59
|
"patch": "./cordis.patch.yml"
|