@dsh-enhanced/lark-channel 0.1.19 → 0.1.20

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
@@ -11,6 +11,8 @@ revision 投递一条内容无关的状态更新;两种路径的重试、fence
11
11
 
12
12
  插件默认 `enabled: false`,安装后不会立即读取凭据或联网。启用后,合法新消息落盘时可添加 `Get`,最终答复发送成功后可添加 `DONE`;reaction 与原生执行进度都是 best-effort 展示,最终答复仍由 Delivery Outbox 保证。
13
13
 
14
+ 模型回答被输出上限截断、返回空正文或超过 Delivery 的 `maxTextBytes` 时,Delivery 默认会在后台自动续写、重新生成或压缩,并在恢复完成后只向飞书发送一条完整答复;正常情况不需要用户再回复“继续”。模型恢复次数耗尽或安全调度边界不可用时才展示明确的未完成提示,也不再要求用户发送“继续”这类协议词;持久化无法确认时则不投递结果,任何情况都不会把半句标成“任务已完成”。Delivery 与本插件的 `maxTextBytes` 默认都为 `65536`,手工覆盖时应保持一致。
15
+
14
16
  默认进度策略为 `progressDetails: direct`:经 Delivery 授权的私聊可显示限长、常见凭据已脱敏的工具参数和结果;默认向导只授权 owner。群聊只显示工具名、状态、步骤与待办。`progressDetails: off` 可在所有会话隐藏参数和结果。任何 reasoning/thinking 内容都不外发;飞书 `message_cot` 不可用时只降级展示,不影响任务或最终回复。
15
17
 
16
18
  ## 文档
package/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const version = "0.1.19";
1
+ export declare const version = "0.1.20";
2
2
  //# sourceMappingURL=version.d.ts.map
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
- export const version = '0.1.19';
1
+ export const version = '0.1.20';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsh-enhanced/lark-channel",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "A thin Feishu/Lark WebSocket adapter for the durable DSH assistant-delivery core.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -113,17 +113,17 @@
113
113
  "@types/qrcode": "1.5.6",
114
114
  "typescript": "6.0.3",
115
115
  "vitest": "4.1.8",
116
- "@dsh-enhanced/assistant-automations": "0.1.19",
117
- "@dsh-enhanced/assistant-delivery": "0.1.19",
118
- "@dsh-enhanced/assistant-evaluation": "0.1.19",
119
- "@dsh-enhanced/assistant-evolution": "0.1.19",
120
- "@dsh-enhanced/assistant-growth-experiments": "0.1.19",
121
- "@dsh-enhanced/assistant-health": "0.1.19",
122
- "@dsh-enhanced/assistant-recovery": "0.1.19",
123
- "@dsh-enhanced/assistant-heartbeat": "0.1.19",
124
- "@dsh-enhanced/credentials-keychain": "0.1.19",
125
- "@dsh-enhanced/personal-assistant": "0.1.19",
126
- "@dsh-enhanced/preference-learning": "0.1.19"
116
+ "@dsh-enhanced/assistant-automations": "0.1.20",
117
+ "@dsh-enhanced/assistant-delivery": "0.1.20",
118
+ "@dsh-enhanced/assistant-evaluation": "0.1.20",
119
+ "@dsh-enhanced/assistant-evolution": "0.1.20",
120
+ "@dsh-enhanced/assistant-growth-experiments": "0.1.20",
121
+ "@dsh-enhanced/assistant-health": "0.1.20",
122
+ "@dsh-enhanced/credentials-keychain": "0.1.20",
123
+ "@dsh-enhanced/assistant-heartbeat": "0.1.20",
124
+ "@dsh-enhanced/assistant-recovery": "0.1.20",
125
+ "@dsh-enhanced/preference-learning": "0.1.20",
126
+ "@dsh-enhanced/personal-assistant": "0.1.20"
127
127
  },
128
128
  "scripts": {
129
129
  "build": "tsc -p tsconfig.build.json",