@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.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  ## Install
8
8
 
9
- DSH Console requires Node.js 24 or newer, DeepSeek Harness `0.1.5-rc.1`, and a working DSH provider configuration. This release is verified against the published package and its audited source commit; install DSH normally without pinning the command to a version.
9
+ DSH Console requires Node.js 24 or newer, supports DeepSeek Harness `0.1.5-rc.1` through `0.1.5-rc.2`, and needs a working DSH provider configuration. This release is verified against both compatibility endpoints; 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
@@ -31,6 +31,8 @@ Startup continuation is scoped to persisted top-level Console Sessions in the cu
31
31
  /new Start a fresh conversation
32
32
  /sessions Browse resumable sessions for the current directory
33
33
  /tools Inspect tools exposed by the active DSH agent
34
+ /skills Inspect user-invocable Skills for the active DSH agent
35
+ /preset Show or change the blank Session's DSH Agent preset
34
36
  /permission Select the active DSH permission preset
35
37
  /theme Select the terminal theme
36
38
  /settings Edit Console settings
package/cordis.patch.yml CHANGED
@@ -3,6 +3,18 @@
3
3
  disabled: true
4
4
 
5
5
  - insert:
6
+ # Standard and Cordis presets sample this Host-owned setting when they
7
+ # install delegation tools for a Session.
8
+ - id: subagent-model-selection-settings
9
+ name: '@deepseek-ai/dsh-tool-subagent/model-selection-settings'
10
+
11
+ # Console owns a per-Session Agent composition, including its scoped Skills.
12
+ # dsh-base does not mount the preset roster, so the Console bundle must.
13
+ - id: agent-presets
14
+ name: '@deepseek-ai/dsh-agent-presets'
15
+ config:
16
+ default: standard
17
+
6
18
  - id: dsh-console-startup
7
19
  name: '@cofy-x/dsh-console/dsh/startup'
8
20
 
package/dist/CHANGELOG.md CHANGED
@@ -6,6 +6,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.1.0-alpha.14] - 2026-09-12
10
+
11
+ ### Added
12
+
13
+ - Add per-Session DSH Agent preset discovery, selection, restoration, and descriptive `/preset` completion with Main and Side composition inheritance.
14
+ - Add `/skills`, Skill slash completion, and user-invocable Skill routing through the ordinary DSH prompt path, with source labels that distinguish Skills from ordinary commands.
15
+ - Add image attachment submission for DSH commands that advertise attachment support.
16
+
17
+ ### Changed
18
+
19
+ - Expand audited DeepSeek Harness compatibility from `0.1.5-rc.1` through `0.1.5-rc.2`.
20
+
21
+ ### Fixed
22
+
23
+ - Keep slash-command prefix suggestions responsive while typing, then expand them with fuzzy matches when available.
24
+
9
25
  ## [0.1.0-alpha.13] - 2026-09-11
10
26
 
11
27
  ### Changed
@@ -158,7 +174,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
158
174
  - Keep debug diagnostics aligned within the existing footer row and preserve structured logs in the debug console.
159
175
  - Address initial CodeQL findings, dependency advisories, CI concurrency issues, and release build ordering.
160
176
 
161
- [Unreleased]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.13...HEAD
177
+ [Unreleased]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.14...HEAD
178
+ [0.1.0-alpha.14]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.13...v0.1.0-alpha.14
162
179
  [0.1.0-alpha.13]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.12...v0.1.0-alpha.13
163
180
  [0.1.0-alpha.12]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.11...v0.1.0-alpha.12
164
181
  [0.1.0-alpha.11]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.10...v0.1.0-alpha.11