@mars-sea/dsh-commandcode-provider 0.10.0-alpha.6 → 0.10.0

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/CHANGELOG.md CHANGED
@@ -6,6 +6,34 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.10.0] - 2026-09-04
10
+
11
+ > **First stable release for the dsh 0.1.2 line.** This release requires **dsh 0.1.2-rc.1 or later** and is published on the `latest` npm tag. It graduates the 0.10.0-alpha.x line (command-code syncs up to 1.47.0) to stable. The previous stable line — 0.9.1 for older Harness releases (the 0.5.0 era) — is no longer under active maintenance; it stays on npm for existing users but receives no further updates.
12
+
13
+ ### Changed
14
+
15
+ - **Raised the minimum supported DeepSeek Harness version to 0.1.2-rc.1.** Every Harness peer and development package now starts at the rc.1 line — the version `@latest` installs today. Source APIs, the Remote wire, and the Web slot surfaces are unchanged between alpha.2 and rc.1, so this is a metadata-only bump with no code changes.
16
+
17
+ ## [0.10.0-alpha.8] - 2026-09-04
18
+
19
+ > **Alpha channel for dsh 0.1.2-alpha.2.** This release requires **dsh 0.1.2-alpha.2 or later** and is published under the `alpha` npm tag, so `@latest` stays on 0.9.1 for older Harness releases. Install it explicitly with `@alpha`.
20
+
21
+ ### Changed
22
+
23
+ - **Synced with the official command-code@1.47.0 CLI** (2026-09-04: marked Grok 4.6 vision-capable). `COMMAND_CODE_CLI_VERSION` is now `1.47.0`. Grok 4.6 now shows the `Image` capability marker in the picker.
24
+
25
+ ## [0.10.0-alpha.7] - 2026-09-04
26
+
27
+ > **Alpha channel for dsh 0.1.2-alpha.2.** This release requires **dsh 0.1.2-alpha.2 or later** and is published under the `alpha` npm tag, so `@latest` stays on 0.9.1 for older Harness releases. Install it explicitly with `@alpha`.
28
+
29
+ ### Added
30
+
31
+ - **Muse Spark family now offers selectable reasoning efforts.** The official command-code@1.45.0 added `low`/`medium`/`high`/`xhigh` effort levels for all Muse Spark variants (1.1, 1.2, 1.2 Contributor, 1.3, 1.3 Contributor). The picker now shows a reasoning-effort selector for these models; they are no longer listed as auto-thinking models.
32
+
33
+ ### Changed
34
+
35
+ - **Synced with the official command-code@1.46.0 CLI** (2026-09-03: 1.45.0 added Muse Spark reasoning levels, 1.46.0 added browser sign-in and `read_file` document support). `COMMAND_CODE_CLI_VERSION` is now `1.46.0`. Re-verified against the official sources: wire protocol, endpoints, auth flow, model catalog, subscription plan maps, deals, and peak/off-peak windows are all identical to 1.44.0.
36
+
9
37
  ## [0.10.0-alpha.6] - 2026-09-03
10
38
 
11
39
  > **Alpha channel for dsh 0.1.2-alpha.2.** This release requires **dsh 0.1.2-alpha.2 or later** and is published under the `alpha` npm tag, so `@latest` stays on 0.9.1 for older Harness releases. Install it explicitly with `@alpha`.
package/README.md CHANGED
@@ -34,19 +34,19 @@ See [Screenshots](#screenshots) below for what the UI looks like.
34
34
 
35
35
  Pick the release line that matches your DeepSeek Harness version:
36
36
 
37
- - **dsh 0.1.2-alpha.2 or later** (the current alpha line)use the matching alpha plugin release. Install explicitly with the `alpha` tag:
37
+ - **dsh 0.1.2-rc.1 or later** (the current 0.1.2 line — what `@latest` installs today):
38
38
 
39
39
  ```sh
40
- dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@alpha
40
+ dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@latest
41
41
  ```
42
42
 
43
- - **Older dsh releases** (the 0.5.0 line and earlier, which use the rc-era Host/browser APIs) — the 0.9.1 plugin keeps working there and stays on the `latest` tag:
43
+ - **Older dsh releases** (the 0.5.0 line and earlier, which use the rc-era Host/browser APIs) — the last plugin version supporting them is 0.9.1, installed by exact version. That line is no longer under active maintenance:
44
44
 
45
45
  ```sh
46
- dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@latest
46
+ dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@0.9.1
47
47
  ```
48
48
 
49
- > The `alpha` tag never moves `latest`: a plain `@latest` install always gets the newest stable release for older Harness versions, and upgrading to the alpha line is always an explicit opt-in.
49
+ > The `latest` tag now always points at the current 0.1.2-line plugin release, so a plain `@latest` install gets the newest stable release for dsh 0.1.2+. Users on the old 0.5.0-era Harness line must pin `@0.9.1` explicitly.
50
50
 
51
51
  Fresh pnpm 10 marketplace generations are supported directly. Do not add a separate `@deepseek-ai/dsh-invariants` dependency; the plugin declares it as a Host peer so the active dsh profile remains the owner of Harness packages.
52
52
 
@@ -55,8 +55,8 @@ Fresh pnpm 10 marketplace generations are supported directly. Do not add a separ
55
55
  Update with the same tag you installed with:
56
56
 
57
57
  ```sh
58
- dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@alpha # dsh 0.1.2-alpha.2+
59
- dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@latest # older dsh (0.5.0 line)
58
+ dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@latest # dsh 0.1.2-rc.1+
59
+ dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@0.9.1 # older dsh (0.5.0 line, unmaintained)
60
60
  ```
61
61
 
62
62
  Then restart the web app.
package/README.zh-CN.md CHANGED
@@ -32,19 +32,19 @@
32
32
 
33
33
  按你的 DeepSeek Harness 版本选择对应的发布线:
34
34
 
35
- - **dsh 0.1.2-alpha.2 或更高版本**(当前 alpha 线)——使用配套的 alpha 插件版本,显式用 `alpha` tag 安装:
35
+ - **dsh 0.1.2-rc.1 或更高版本**(当前 0.1.2 线,即 `@latest` 现在安装的版本):
36
36
 
37
37
  ```sh
38
- dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@alpha
38
+ dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@latest
39
39
  ```
40
40
 
41
- - **更早的 dsh 版本**(0.5.0 线及更早,使用 rc 时代的 Host/浏览器 API)——0.9.1 插件在这些版本上继续可用,并保持在 `latest` tag:
41
+ - **更早的 dsh 版本**(0.5.0 线及更早,使用 rc 时代的 Host/浏览器 API)——支持它们的最后一个插件版本是 0.9.1,按精确版本安装。该线不再积极维护:
42
42
 
43
43
  ```sh
44
- dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@latest
44
+ dsh plugin --profile web add @mars-sea/dsh-commandcode-provider@0.9.1
45
45
  ```
46
46
 
47
- > `alpha` tag 永远不会移动 `latest`:普通的 `@latest` 安装始终为旧版 dsh 拿到最新的稳定版,升级到 alpha 线永远是显式选择。
47
+ > `latest` tag 现在始终指向当前 0.1.2 线的插件版本,普通 `@latest` 安装即可获得 dsh 0.1.2+ 的最新稳定版。旧 0.5.0 时代的 Harness 用户必须显式钉住 `@0.9.1`。
48
48
 
49
49
  插件可直接在 pnpm 10 的全新插件市场 generation 中安装。不要另行添加 `@deepseek-ai/dsh-invariants` dependency;插件已将其声明为 Host peer,Harness 包仍由当前 dsh profile 统一管理。
50
50
 
@@ -53,8 +53,8 @@
53
53
  用与安装时相同的 tag 更新:
54
54
 
55
55
  ```sh
56
- dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@alpha # dsh 0.1.2-alpha.2 及以上
57
- dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@latest # 更早的 dsh(0.5.0 线)
56
+ dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@latest # dsh 0.1.2-rc.1 及以上
57
+ dsh plugin --profile web update @mars-sea/dsh-commandcode-provider@0.9.1 # 更早的 dsh(0.5.0 线,不再维护)
58
58
  ```
59
59
 
60
60
  然后重启 Web 应用。
package/lib/client.js CHANGED
@@ -1736,7 +1736,7 @@ window.__ModuleLoader__.load({
1736
1736
  }
1737
1737
  //#endregion
1738
1738
  //#region package.json
1739
- var version = "0.10.0-alpha.6";
1739
+ var version = "0.10.0";
1740
1740
  var repository = {
1741
1741
  "type": "git",
1742
1742
  "url": "git+https://github.com/Mars-Sea/dsh-commandcode-provider.git"