@cofy-x/dsh-console 0.1.0-alpha.13 → 0.1.0-alpha.14

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.
@@ -2836,6 +2836,9 @@ var Theme = class _Theme {
2836
2836
  error: this.colors.AccentRed,
2837
2837
  success: this.colors.AccentGreen,
2838
2838
  warning: this.colors.AccentYellow
2839
+ },
2840
+ command: {
2841
+ skill: this.colors.AccentCyan
2839
2842
  }
2840
2843
  };
2841
2844
  this._colorMap = Object.freeze(this._buildColorMap(rawMappings));
@@ -3080,6 +3083,9 @@ function createCustomTheme(customTheme) {
3080
3083
  error: customTheme.status?.error ?? colors.AccentRed,
3081
3084
  success: customTheme.status?.success ?? colors.AccentGreen,
3082
3085
  warning: customTheme.status?.warning ?? colors.AccentYellow
3086
+ },
3087
+ command: {
3088
+ skill: customTheme.command?.skill ?? colors.AccentCyan
3083
3089
  }
3084
3090
  };
3085
3091
  return new Theme(
@@ -4989,6 +4995,9 @@ var lightSemanticColors = {
4989
4995
  error: lightTheme.AccentRed,
4990
4996
  success: lightTheme.AccentGreen,
4991
4997
  warning: lightTheme.AccentYellow
4998
+ },
4999
+ command: {
5000
+ skill: lightTheme.AccentCyan
4992
5001
  }
4993
5002
  };
4994
5003
  var darkSemanticColors = {
@@ -5020,6 +5029,9 @@ var darkSemanticColors = {
5020
5029
  error: darkTheme.AccentRed,
5021
5030
  success: darkTheme.AccentGreen,
5022
5031
  warning: darkTheme.AccentYellow
5032
+ },
5033
+ command: {
5034
+ skill: darkTheme.AccentCyan
5023
5035
  }
5024
5036
  };
5025
5037
  var ansiSemanticColors = {
@@ -5051,6 +5063,9 @@ var ansiSemanticColors = {
5051
5063
  error: ansiTheme.AccentRed,
5052
5064
  success: ansiTheme.AccentGreen,
5053
5065
  warning: ansiTheme.AccentYellow
5066
+ },
5067
+ command: {
5068
+ skill: ansiTheme.AccentCyan
5054
5069
  }
5055
5070
  };
5056
5071
 
@@ -5435,6 +5450,9 @@ var noColorSemanticColors = {
5435
5450
  error: "",
5436
5451
  success: "",
5437
5452
  warning: ""
5453
+ },
5454
+ command: {
5455
+ skill: ""
5438
5456
  }
5439
5457
  };
5440
5458
  var NoColorTheme = new Theme(
@@ -5767,6 +5785,9 @@ var theme = {
5767
5785
  },
5768
5786
  get status() {
5769
5787
  return themeManager.getSemanticColors().status;
5788
+ },
5789
+ get command() {
5790
+ return themeManager.getSemanticColors().command;
5770
5791
  }
5771
5792
  };
5772
5793
 
package/dist/dsh/index.js CHANGED
@@ -3,9 +3,9 @@ import {
3
3
  apply,
4
4
  inject,
5
5
  name
6
- } from "../chunk-QOXF5JRJ.js";
6
+ } from "../chunk-B4XSNHMA.js";
7
7
  import "../chunk-WTD7XY24.js";
8
- import "../chunk-3WB6AZUB.js";
8
+ import "../chunk-GNENCGXA.js";
9
9
  export {
10
10
  Config,
11
11
  apply,
package/dist/index.js CHANGED
@@ -2,9 +2,9 @@ import {
2
2
  Config,
3
3
  apply,
4
4
  name
5
- } from "./chunk-QOXF5JRJ.js";
5
+ } from "./chunk-B4XSNHMA.js";
6
6
  import "./chunk-WTD7XY24.js";
7
- import "./chunk-3WB6AZUB.js";
7
+ import "./chunk-GNENCGXA.js";
8
8
  export {
9
9
  Config,
10
10
  apply,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  registerExtensionContentRenderer
3
- } from "../chunk-3WB6AZUB.js";
3
+ } from "../chunk-GNENCGXA.js";
4
4
  export {
5
5
  registerExtensionContentRenderer
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cofy-x/dsh-console",
3
- "version": "0.1.0-alpha.13",
3
+ "version": "0.1.0-alpha.14",
4
4
  "description": "DSH-native terminal workbench (TUI) for DeepSeek Harness with durable sessions, structured tools, plans, subagents, and rotating Pokémon startup art.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "compatibility": {
61
61
  "minimum": "0.1.5-rc.1",
62
- "maximumTested": "0.1.5-rc.1"
62
+ "maximumTested": "0.1.5-rc.2"
63
63
  }
64
64
  },
65
65
  "dependencies": {
@@ -99,6 +99,7 @@
99
99
  "@deepseek-ai/dsh-cmdline": "0.1.5-rc.1",
100
100
  "@deepseek-ai/dsh-agent": "0.1.5-rc.1",
101
101
  "@deepseek-ai/dsh-agent-default-model": "0.1.5-rc.1",
102
+ "@deepseek-ai/dsh-agent-presets": "0.1.5-rc.1",
102
103
  "@deepseek-ai/dsh-attachment": "0.1.5-rc.1",
103
104
  "@deepseek-ai/dsh-commands": "0.1.5-rc.1",
104
105
  "@deepseek-ai/dsh-credentials": "0.1.5-rc.1",
@@ -108,8 +109,10 @@
108
109
  "@deepseek-ai/dsh-session": "0.1.5-rc.1",
109
110
  "@deepseek-ai/dsh-session-projection": "0.1.5-rc.1",
110
111
  "@deepseek-ai/dsh-session-query": "0.1.5-rc.1",
112
+ "@deepseek-ai/dsh-skill": "0.1.5-rc.1",
111
113
  "@deepseek-ai/dsh-settings": "0.1.5-rc.1",
112
114
  "@deepseek-ai/dsh-subagent": "0.1.5-rc.1",
115
+ "@deepseek-ai/dsh-tool-subagent": "0.1.5-rc.1",
113
116
  "@deepseek-ai/dsh-tool-todo": "0.1.5-rc.1",
114
117
  "@deepseek-ai/dsh-tools": "0.1.5-rc.1",
115
118
  "@deepseek-ai/dsh-user-approval": "0.1.5-rc.1",
@@ -129,24 +132,27 @@
129
132
  "peerDependencies": {
130
133
  "@deepseek-ai/cordis": ">=4.0.2 <5.0.0",
131
134
  "@deepseek-ai/cordis-plugin-loader": ">=1.0.3 <2.0.0",
132
- "@deepseek-ai/dsh-cmdline": "0.1.5-rc.1",
133
- "@deepseek-ai/dsh-agent": "0.1.5-rc.1",
134
- "@deepseek-ai/dsh-agent-default-model": "0.1.5-rc.1",
135
- "@deepseek-ai/dsh-attachment": "0.1.5-rc.1",
136
- "@deepseek-ai/dsh-commands": "0.1.5-rc.1",
137
- "@deepseek-ai/dsh-credentials": "0.1.5-rc.1",
138
- "@deepseek-ai/dsh-llm": "0.1.5-rc.1",
139
- "@deepseek-ai/dsh-permission-presets": "0.1.5-rc.1",
140
- "@deepseek-ai/dsh-plan-mode": "0.1.5-rc.1",
141
- "@deepseek-ai/dsh-session": "0.1.5-rc.1",
142
- "@deepseek-ai/dsh-session-projection": "0.1.5-rc.1",
143
- "@deepseek-ai/dsh-session-query": "0.1.5-rc.1",
144
- "@deepseek-ai/dsh-settings": "0.1.5-rc.1",
145
- "@deepseek-ai/dsh-subagent": "0.1.5-rc.1",
146
- "@deepseek-ai/dsh-tool-todo": "0.1.5-rc.1",
147
- "@deepseek-ai/dsh-tools": "0.1.5-rc.1",
148
- "@deepseek-ai/dsh-user-approval": "0.1.5-rc.1",
149
- "@deepseek-ai/dsh-user-questions": "0.1.5-rc.1",
135
+ "@deepseek-ai/dsh-cmdline": ">=0.1.5-rc.1 <=0.1.5-rc.2",
136
+ "@deepseek-ai/dsh-agent": ">=0.1.5-rc.1 <=0.1.5-rc.2",
137
+ "@deepseek-ai/dsh-agent-default-model": ">=0.1.5-rc.1 <=0.1.5-rc.2",
138
+ "@deepseek-ai/dsh-agent-presets": ">=0.1.5-rc.1 <=0.1.5-rc.2",
139
+ "@deepseek-ai/dsh-attachment": ">=0.1.5-rc.1 <=0.1.5-rc.2",
140
+ "@deepseek-ai/dsh-commands": ">=0.1.5-rc.1 <=0.1.5-rc.2",
141
+ "@deepseek-ai/dsh-credentials": ">=0.1.5-rc.1 <=0.1.5-rc.2",
142
+ "@deepseek-ai/dsh-llm": ">=0.1.5-rc.1 <=0.1.5-rc.2",
143
+ "@deepseek-ai/dsh-permission-presets": ">=0.1.5-rc.1 <=0.1.5-rc.2",
144
+ "@deepseek-ai/dsh-plan-mode": ">=0.1.5-rc.1 <=0.1.5-rc.2",
145
+ "@deepseek-ai/dsh-session": ">=0.1.5-rc.1 <=0.1.5-rc.2",
146
+ "@deepseek-ai/dsh-session-projection": ">=0.1.5-rc.1 <=0.1.5-rc.2",
147
+ "@deepseek-ai/dsh-session-query": ">=0.1.5-rc.1 <=0.1.5-rc.2",
148
+ "@deepseek-ai/dsh-skill": ">=0.1.5-rc.1 <=0.1.5-rc.2",
149
+ "@deepseek-ai/dsh-settings": ">=0.1.5-rc.1 <=0.1.5-rc.2",
150
+ "@deepseek-ai/dsh-subagent": ">=0.1.5-rc.1 <=0.1.5-rc.2",
151
+ "@deepseek-ai/dsh-tool-subagent": ">=0.1.5-rc.1 <=0.1.5-rc.2",
152
+ "@deepseek-ai/dsh-tool-todo": ">=0.1.5-rc.1 <=0.1.5-rc.2",
153
+ "@deepseek-ai/dsh-tools": ">=0.1.5-rc.1 <=0.1.5-rc.2",
154
+ "@deepseek-ai/dsh-user-approval": ">=0.1.5-rc.1 <=0.1.5-rc.2",
155
+ "@deepseek-ai/dsh-user-questions": ">=0.1.5-rc.1 <=0.1.5-rc.2",
150
156
  "@deepseek-ai/schemastery": ">=3.18.2 <4.0.0"
151
157
  },
152
158
  "peerDependenciesMeta": {
@@ -210,8 +216,17 @@
210
216
  "@deepseek-ai/dsh-subagent": {
211
217
  "optional": true
212
218
  },
219
+ "@deepseek-ai/dsh-tool-subagent": {
220
+ "optional": true
221
+ },
213
222
  "@deepseek-ai/schemastery": {
214
223
  "optional": true
224
+ },
225
+ "@deepseek-ai/dsh-agent-presets": {
226
+ "optional": true
227
+ },
228
+ "@deepseek-ai/dsh-skill": {
229
+ "optional": true
215
230
  }
216
231
  },
217
232
  "license": "Apache-2.0",