@cofy-x/dsh-console 0.1.0-alpha.10 → 0.1.0-alpha.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 CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  ## Install
8
8
 
9
- DSH Console requires Node.js 24 or newer and a working DSH provider configuration. This release is verified from the npm-default DeepSeek Harness `0.1.1-rc.2` through the current source release `0.1.2-alpha.4`; install DSH normally without pinning the command to a version.
9
+ DSH Console requires Node.js 24 or newer and a working DSH provider configuration. This release is verified from the npm-default DeepSeek Harness `0.1.1-rc.2` through the current source release `0.1.3-alpha.2`; install DSH normally without pinning the command to a version.
10
10
 
11
11
  ```sh
12
12
  npm install --global @deepseek-ai/dsh @cofy-x/dsh-console
@@ -30,7 +30,6 @@ Startup continuation is scoped to persisted top-level Console Sessions in the cu
30
30
  /model Select the active DSH model
31
31
  /new Start a fresh conversation
32
32
  /sessions Browse resumable sessions for the current directory
33
- /resume Resume a session
34
33
  /tools Inspect tools exposed by the active DSH agent
35
34
  /permission Select the active DSH permission preset
36
35
  /theme Select the terminal theme
@@ -0,0 +1,162 @@
1
+ # Changelog
2
+
3
+ All notable user-facing changes to DSH Console are documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [0.1.0-alpha.12] - 2026-09-08
10
+
11
+ ### Added
12
+
13
+ - Add a DSH-native Plan mode indicator and `Shift+Tab` toggle that preserves the selected permission preset, including deployment-configured presets.
14
+
15
+ ### Changed
16
+
17
+ - Verify the Console host through DeepSeek Harness `0.1.3-alpha.2`, adapting live and durable Assistant streams across Session format v2 while retaining the npm-default `0.1.1-rc.2` development baseline.
18
+
19
+ ## [0.1.0-alpha.11] - 2026-09-04
20
+
21
+ ### Added
22
+
23
+ - Add mouse-interactive startup actions, responsive Pokémon shuffling, and a packaged, read-only `/changelog` viewer while preserving keyboard-first navigation.
24
+ - Simplify settings, theme, and editor dialogs to save user preferences directly without exposing configuration scopes.
25
+
26
+ ### Changed
27
+
28
+ - Consolidate interactive Session continuation under `/sessions`; direct startup continuation remains available through `--resume <session-id>`.
29
+ - Verify the Console host through DeepSeek Harness `0.1.2-rc.1`, including its Session persistence, projection-cache, subagent continuation, and profile-level proxy changes, while retaining the npm-default `0.1.1-rc.2` development baseline.
30
+
31
+ ### Fixed
32
+
33
+ - Make terminal hover work on the first passive mouse movement through demand-driven any-motion tracking, while preserving click handling, modal priority, native-selection guidance, and complete terminal cleanup.
34
+
35
+ ## [0.1.0-alpha.10] - 2026-09-02
36
+
37
+ ### Added
38
+
39
+ - Show canonical per-turn duration, output speed, and first-token latency beneath completed responses, with whole-session timing details available through `/stats`.
40
+
41
+ ### Changed
42
+
43
+ - Verify the Console host through DeepSeek Harness `0.1.2-alpha.4`, including its branded Session sequence and log-offset contracts, while retaining the npm-default `0.1.1-rc.2` development baseline.
44
+
45
+ ## [0.1.0-alpha.9] - 2026-09-01
46
+
47
+ ### Changed
48
+
49
+ - Verify the Console host through DeepSeek Harness `0.1.2-alpha.3` while retaining the npm-default `0.1.1-rc.2` development baseline.
50
+ - Keep the launcher-owned DSH profile package aligned with the exact installed Console version while preserving explicit source and package overrides.
51
+ - Type-check CLI tests, development scripts, and documentation through the standard workspace quality gate.
52
+
53
+ ## [0.1.0-alpha.8] - 2026-08-31
54
+
55
+ ### Changed
56
+
57
+ - Verify the Console host through DeepSeek Harness `0.1.2-alpha.2`, including its Session event compatibility, projection ownership, and runtime dependency changes.
58
+
59
+ ## [0.1.0-alpha.7] - 2026-08-30
60
+
61
+ ### Changed
62
+
63
+ - Require DeepSeek Harness `0.1.2-alpha.1` across the Console host boundary and align the canonical tool-call identity with `ToolCallId`.
64
+ - Verify npm's default dist-tag resolves to the exact released Console version.
65
+
66
+ ### Fixed
67
+
68
+ - Keep DSH, Cordis, Session, Commands, and tool services host-provided through optional peers instead of installing duplicate runtime instances.
69
+
70
+ ## [0.1.0-alpha.6] - 2026-08-29
71
+
72
+ ### Added
73
+
74
+ - Add `--continue` and `--resume <session-id>` startup continuation, including atomic resume-before-prompt behavior.
75
+ - Add a DSH-native Plan Review dialog with Markdown plan presentation, canonical approval choices, and free-text change requests.
76
+
77
+ ### Changed
78
+
79
+ - Prepare the DSH adapter for the scoped user-question waterfall while retaining compatibility with the currently published provider registration contract.
80
+ - Follow canonical `@deepseek-ai/dsh-tool-todo` ownership for todo events and projections.
81
+ - Keep Tool Card headers compact while allowing genuinely truncated titles and shell commands to expand in place for full inspection.
82
+
83
+ ### Fixed
84
+
85
+ - Discover and execute DSH slash commands such as `/plan` before the first prompt without creating an idle startup Session.
86
+
87
+ ## [0.1.0-alpha.5] - 2026-08-28
88
+
89
+ ### Added
90
+
91
+ - Add `/btw` for a temporary, multi-turn Side conversation that can run alongside the Main Agent and switch with `Ctrl+/`.
92
+ - Add deterministic startup header selection with `--pokemon <number>` and the `DSH_CONSOLE_POKEMON` environment variable.
93
+ - Add a DSH-native `/agents` catalog with nested delegation state, live running-Agent status, and canonical read-only subagent history.
94
+
95
+ ### Changed
96
+
97
+ - Keep workspace, active conversation, model, and context details legible in compact Footer layouts.
98
+ - Clarify idle Todo state by presenting canonical unfinished items without implying that work is still running.
99
+
100
+ ### Fixed
101
+
102
+ - Materialize the main DSH Agent only when the first prompt is submitted, so opening, configuring, or leaving an unused Console no longer creates persistent empty Sessions.
103
+
104
+ ## [0.1.0-alpha.4] - 2026-08-27
105
+
106
+ ### Added
107
+
108
+ - Show canonical model context capacities in the model selector and the latest prompt usage next to the active model in the footer, with compact and threshold-aware presentation.
109
+ - Expand `/stats` and the shared exit summary with canonical prompt, cache, output, reasoning, context occupancy, and session totals, including a narrow-terminal layout.
110
+ - Add DSH-native reasoning effort selection as the second step of the model dialog, preserve it across Agent creation and Session resume, and show the active choice in the footer.
111
+
112
+ ### Fixed
113
+
114
+ - Align TypeScript project boundaries so clean workspace builds and standalone editor diagnostics resolve generated declarations, Node.js types, Vitest globals, and test configuration correctly.
115
+
116
+ ### Removed
117
+
118
+ - Remove the invasive `/terminal-setup` command that modified global IDE keybindings; terminal behavior remains capability-driven.
119
+
120
+ ## [0.1.0-alpha.3] - 2026-08-25
121
+
122
+ ### Added
123
+
124
+ - Add the Pokefetch-derived Pokemon header art pack and attribution for the interactive startup experience.
125
+
126
+ ## [0.1.0-alpha.2] - 2026-08-25
127
+
128
+ ### Changed
129
+
130
+ - Refine model selection into a dialog-only workflow and remove argument completion for legacy model subcommands.
131
+ - Derive the displayed and tested CLI version from the public package manifest so release version checks cannot drift from package metadata.
132
+
133
+ ## [0.1.0-alpha.1] - 2026-08-25
134
+
135
+ ### Added
136
+
137
+ - Publish the first DSH-native public alpha with streaming multi-turn conversations, model selection, session resume, image attachments, tool and todo presentation, prompt completion, permission controls, and debug diagnostics.
138
+ - Add first-run provider credential setup backed by DSH credential services.
139
+ - Add npm publication, release checks, CodeQL analysis, and public alpha documentation.
140
+
141
+ ### Changed
142
+
143
+ - Standardize the development and release toolchain on Node.js 24, pnpm 11, ESLint 10, and the current Vite and Vitest stack.
144
+
145
+ ### Fixed
146
+
147
+ - Keep debug diagnostics aligned within the existing footer row and preserve structured logs in the debug console.
148
+ - Address initial CodeQL findings, dependency advisories, CI concurrency issues, and release build ordering.
149
+
150
+ [Unreleased]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.12...HEAD
151
+ [0.1.0-alpha.12]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.11...v0.1.0-alpha.12
152
+ [0.1.0-alpha.11]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.10...v0.1.0-alpha.11
153
+ [0.1.0-alpha.10]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.9...v0.1.0-alpha.10
154
+ [0.1.0-alpha.9]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.8...v0.1.0-alpha.9
155
+ [0.1.0-alpha.8]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.7...v0.1.0-alpha.8
156
+ [0.1.0-alpha.7]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.6...v0.1.0-alpha.7
157
+ [0.1.0-alpha.6]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.5...v0.1.0-alpha.6
158
+ [0.1.0-alpha.5]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.4...v0.1.0-alpha.5
159
+ [0.1.0-alpha.4]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.3...v0.1.0-alpha.4
160
+ [0.1.0-alpha.3]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.2...v0.1.0-alpha.3
161
+ [0.1.0-alpha.2]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.1...v0.1.0-alpha.2
162
+ [0.1.0-alpha.1]: https://github.com/cofy-x/dsh-console/releases/tag/v0.1.0-alpha.1
@@ -935,11 +935,20 @@ function initializeOutputListenersAndFlush() {
935
935
  }
936
936
 
937
937
  // ../../packages/core/dist/terminal/modes.js
938
- function enableMouseEvents() {
939
- writeToStdout("\x1B[?1002h\x1B[?1006h");
938
+ var preferredMouseTrackingMode = "button-motion";
939
+ function enableMouseEvents(mode = "button-motion") {
940
+ preferredMouseTrackingMode = mode;
941
+ writeMouseTrackingMode(mode);
942
+ }
943
+ function resumeMouseEvents() {
944
+ writeMouseTrackingMode(preferredMouseTrackingMode);
945
+ }
946
+ function writeMouseTrackingMode(mode) {
947
+ const trackingSequence = mode === "any-motion" ? "\x1B[?1002l\x1B[?1003h" : "\x1B[?1003l\x1B[?1002h";
948
+ writeToStdout(`${trackingSequence}\x1B[?1006h`);
940
949
  }
941
950
  function disableMouseEvents() {
942
- writeToStdout("\x1B[?1006l\x1B[?1002l");
951
+ writeToStdout("\x1B[?1006l\x1B[?1003l\x1B[?1002l");
943
952
  }
944
953
  function enableKittyKeyboardProtocol() {
945
954
  writeToStdout("\x1B[>1u");
@@ -5815,6 +5824,7 @@ export {
5815
5824
  createWorkingStdio,
5816
5825
  initializeOutputListenersAndFlush,
5817
5826
  enableMouseEvents,
5827
+ resumeMouseEvents,
5818
5828
  disableMouseEvents,
5819
5829
  enableKittyKeyboardProtocol,
5820
5830
  disableKittyKeyboardProtocol,
@@ -5840,14 +5850,6 @@ export {
5840
5850
  checkHasEditorType,
5841
5851
  getEditorCommand,
5842
5852
  isEditorAvailable,
5843
- resolveColor,
5844
- getSafeLowColorBackground,
5845
- interpolateColor,
5846
- getThemeTypeFromBackgroundColor,
5847
- pickDefaultThemeName,
5848
- Holiday,
5849
- DEFAULT_THEME,
5850
- themeManager,
5851
5853
  LRU_BUFFER_PERF_CACHE_LIMIT,
5852
5854
  getAsciiArtWidth,
5853
5855
  toCodePoints,
@@ -5858,6 +5860,14 @@ export {
5858
5860
  sanitizeMultilineForDisplay,
5859
5861
  getCachedStringWidth,
5860
5862
  escapeAnsiCtrlCodes,
5863
+ resolveColor,
5864
+ getSafeLowColorBackground,
5865
+ interpolateColor,
5866
+ getThemeTypeFromBackgroundColor,
5867
+ pickDefaultThemeName,
5868
+ Holiday,
5869
+ DEFAULT_THEME,
5870
+ themeManager,
5861
5871
  theme,
5862
5872
  registerExtensionContentRenderer,
5863
5873
  ExtensionContentBlock