@53ai/53ai-openclaw 1.0.8 → 1.0.9

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
 
7
+ ## [1.0.9] - 2026-03-26
8
+
9
+ ### Changed
10
+ - 更新 `homepage` 字段为 `https://www.53ai.com`。
11
+
12
+ ## [1.0.8] - 2026-03-26
13
+
14
+ ### Added
15
+ - 新增压缩前后钩子(`handleBeforeCompaction` / `handleAfterCompaction`),支持在会话消息压缩前后向用户发送状态通知。
16
+ - 新增 `compaction-hooks.ts` 模块,实现从 `sessionKey` 解析 `chatId` 的逻辑,并对非本渠道会话自动跳过处理。
17
+ - 消息发送逻辑新增思考状态(thinking)支持,压缩过程中可向用户推送"正在整理对话记忆"等提示。
18
+
19
+ ### Changed
20
+ - `message-sender.ts`:优化消息发送调用,支持传递思考状态标志。
21
+ - `monitor.ts`:增强监控逻辑以适配压缩钩子的事件上报。
22
+
7
23
  ## [1.0.7] - 2026-03-19
8
24
 
9
25
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@53ai/53ai-openclaw",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -41,7 +41,7 @@
41
41
  "bugs": {
42
42
  "url": "https://github.com/53AI/53ai-openclaw/issues"
43
43
  },
44
- "homepage": "https://github.com/53AI/53ai-openclaw#readme",
44
+ "homepage": "https://www.53ai.com",
45
45
  "dependencies": {
46
46
  "ws": "^8.16.0"
47
47
  },
@@ -57,4 +57,4 @@
57
57
  "tslib": "^2.6.2",
58
58
  "typescript": "^5.3.3"
59
59
  }
60
- }
60
+ }