@rezti/dsh-rez-suite 0.1.72 → 0.1.74

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
@@ -5,15 +5,23 @@
5
5
  升级:
6
6
 
7
7
  ```bash
8
- dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.72
8
+ dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.74
9
9
  ```
10
10
 
11
11
  不要用裸 `plugin update`,不要写 `latest`(新 profile 有 24 小时发布冷却,当天可能装不上)。不要装 **0.1.46**(GitHub 子依赖会被 DSH 拦住)。不要装 **0.1.51** / **0.1.69**(误用 `npm publish` 把 `workspace:` 打进包了)。
12
12
 
13
13
 
14
+ ## 0.1.74 · 2026-09-13
15
+
16
+ **修「网页有回复、微信没有」。** dsh 0.1.5 可见文字多半先走 `text-chunks`,末条 `assistant/message` 常是纯工具调用;shim 以前只读 message 的 text,等不到就一直挂着。现从 `text-chunks` 抽可见文,并用 prompt 后的 `turn/end` seq 判定本轮结束。企微长回复截断,并保证 stream `finish` 收尾。wechat `@0.1.23`。
17
+
18
+ ## 0.1.73 · 2026-09-13
19
+
20
+ **修企微首轮无回复。** `session/page` 的 `throughSeq` 必须用 `-1`(日志顶端);误传 `MAX_SAFE_INTEGER` 会一直 400,历史读空,企微停在「正在处理…」或空回复。顺带:企微新消息可打断上一轮、90s 超时收尾;卡住/超时清会话指针;企微不再走个微 unarchive。wechat `@0.1.22`。
21
+
14
22
  ## 0.1.72 · 2026-09-13
15
23
 
16
- **修企微/微信 RPC 404。** dsh 0.1.5 线格式改为 `session/create`(斜杠)且 payload 必须 `{ args: { request } }`;旧 `session.create` 认证通过后仍会 404 not found。wechat `@0.1.20`:slash endpoint + args 包装;`history`→`page`,`models`→`modelCatalog`,prompt 带 `requestId`。装 **`@0.1.72`** 后重启。
24
+ **修企微/微信 RPC 404。** dsh 0.1.5 线格式改为 `session/create`(斜杠)且 payload 必须 `{ args: { request } }`;旧 `session.create` 认证通过后仍会 404 not found。wechat `@0.1.20`:slash endpoint + args 包装;`history`→`page`,`models`→`modelCatalog`,prompt 带 `requestId`。装 **`@0.1.73`** 后重启。
17
25
 
18
26
  **微信不再自动切 Kimi。** 以前微信来消息会 `session/selectModel` 到 `kimi-for-coding`,官方会把这个写成全局默认,重启后网页就停在 Kimi。现在跟网页当前模型走(官方默认 DeepSeek-V4-Flash)。看图旁路仍用 Kimi,不受影响。若要旧行为:`REZ_WECHAT_PREFER_KIMI=1`。
19
27
 
package/cordis.patch.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  # 用户只装这一包:`dsh plugin --profile web add @rezti/dsh-rez-suite`
2
- # 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.72`
2
+ # 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.74`
3
3
  # 不要再单独 add 子包,会重复注册。
4
4
  #
5
5
  # MCP rows are started by the domain plugins after rezSso resolves secrets.
package/lib/client.js CHANGED
@@ -1011,7 +1011,21 @@ function ChannelTable({ kind, lang }) {
1011
1011
  //#region src/changelog.ts
1012
1012
  const SUITE_CHANGELOG = [
1013
1013
  {
1014
- version: "0.1.72",
1014
+ version: "0.1.74",
1015
+ date: "2026-09-13",
1016
+ sections: [{
1017
+ title: {
1018
+ zh: "修网页有回复微信没有",
1019
+ en: "Fix Harness reply missing on WeChat"
1020
+ },
1021
+ items: [{
1022
+ zh: "从 text-chunks 抽取可见文字(末条 assistant/message 常是纯工具);按 turn/end seq 判定结束。企微截断长回复并保证 finish。wechat@0.1.23。请装 @0.1.74 并重启。",
1023
+ en: "Read visible text from text-chunks (final assistant/message is often tool-only); settle on turn/end seq. WeCom clips long replies and always finishes the stream. wechat@0.1.23. Install @0.1.74 and restart."
1024
+ }]
1025
+ }]
1026
+ },
1027
+ {
1028
+ version: "0.1.73",
1015
1029
  date: "2026-09-13",
1016
1030
  sections: [{
1017
1031
  title: {
@@ -1020,8 +1034,8 @@ const SUITE_CHANGELOG = [
1020
1034
  },
1021
1035
  items: [
1022
1036
  {
1023
- zh: "dsh 0.1.5 改为 session/create + {args:{request}};wechat@0.1.20。请装 @0.1.71 并重启。",
1024
- en: "dsh 0.1.5 uses session/create + {args:{request}}; wechat@0.1.20. Install @0.1.71 and restart."
1037
+ zh: "session/page throughSeq=-1(修企微首轮无回复);新消息可打断卡住轮;wechat@0.1.22。请装 @0.1.73 并重启。",
1038
+ en: "dsh 0.1.5 uses session/create + {args:{request}}; shim process.exit after reply (fixes 2nd-message stall). wechat@0.1.21. Install @0.1.72 and restart."
1025
1039
  },
1026
1040
  {
1027
1041
  zh: "个人微信不再自动把网页默认模型切到 Kimi。官方默认仍是 DeepSeek-V4-Flash。若要旧行为,设 REZ_WECHAT_PREFER_KIMI=1。",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rezti/dsh-rez-suite",
3
- "description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.72",
4
- "version": "0.1.72",
3
+ "description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.74",
4
+ "version": "0.1.74",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": "^22.19.0 || >=24.0.0"
@@ -48,7 +48,7 @@
48
48
  "@rezti/dsh-rez-tapd": "^0.1.2",
49
49
  "@rezti/dsh-rez-token-manager": "^0.1.5",
50
50
  "@rezti/dsh-rez-vision": "^0.1.4",
51
- "@rezti/dsh-rez-wechat": "^0.1.21",
51
+ "@rezti/dsh-rez-wechat": "^0.1.23",
52
52
  "@rezti/dsh-web-file-uploader": "0.2.3",
53
53
  "@wecom/cli": "1.1.0",
54
54
  "zod": "^4.4.3"
package/src/changelog.ts CHANGED
@@ -21,15 +21,30 @@ export interface ChangelogRelease {
21
21
 
22
22
  export const SUITE_CHANGELOG: readonly ChangelogRelease[] = [
23
23
  {
24
- version: '0.1.72',
24
+ version: '0.1.74',
25
+ date: '2026-09-13',
26
+ sections: [
27
+ {
28
+ title: { zh: '修网页有回复微信没有', en: 'Fix Harness reply missing on WeChat' },
29
+ items: [
30
+ {
31
+ zh: '从 text-chunks 抽取可见文字(末条 assistant/message 常是纯工具);按 turn/end seq 判定结束。企微截断长回复并保证 finish。wechat@0.1.23。请装 @0.1.74 并重启。',
32
+ en: 'Read visible text from text-chunks (final assistant/message is often tool-only); settle on turn/end seq. WeCom clips long replies and always finishes the stream. wechat@0.1.23. Install @0.1.74 and restart.',
33
+ },
34
+ ],
35
+ },
36
+ ],
37
+ },
38
+ {
39
+ version: '0.1.73',
25
40
  date: '2026-09-13',
26
41
  sections: [
27
42
  {
28
43
  title: { zh: '修企微/微信 RPC 404', en: 'Fix WeCom/WeChat RPC 404' },
29
44
  items: [
30
45
  {
31
- zh: 'dsh 0.1.5 改为 session/create + {args:{request}};wechat@0.1.20。请装 @0.1.71 并重启。',
32
- en: 'dsh 0.1.5 uses session/create + {args:{request}}; wechat@0.1.20. Install @0.1.71 and restart.',
46
+ zh: 'session/page throughSeq=-1(修企微首轮无回复);新消息可打断卡住轮;wechat@0.1.22。请装 @0.1.73 并重启。',
47
+ en: 'dsh 0.1.5 uses session/create + {args:{request}}; shim process.exit after reply (fixes 2nd-message stall). wechat@0.1.21. Install @0.1.72 and restart.',
33
48
  },
34
49
  {
35
50
  zh: '个人微信不再自动把网页默认模型切到 Kimi。官方默认仍是 DeepSeek-V4-Flash。若要旧行为,设 REZ_WECHAT_PREFER_KIMI=1。',