Skip to content

Commit 1c4c1a4

Browse files
release: v0.2.9 ClawHub dist packaging hotfix
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3419d78 commit 1c4c1a4

8 files changed

Lines changed: 21 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.2.9 — 2026-06-24
4+
5+
### Fixed
6+
7+
- Emergency ClawHub packaging fix: include the generated `dist/doctor.*` and
8+
`dist/deep-history.*` modules that `dist/index.js` imports in v0.2.8.
9+
- No runtime behavior changes from v0.2.8; this release exists because ClawHub
10+
does not allow overwriting the broken 0.2.8 artifact.
11+
312
## 0.2.8 — 2026-06-22
413

514
主题:**REM 反重复 / 叙事新鲜度 + 安装自检**。解决长期运行后日报“换措辞但素材重复”(音色史、版本升级史等陈年旧事每天回炉)的问题。

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,14 @@ openclaw plugins install clawhub:memory-lancedb-dreaming
142142
### 方式 B:安装脚本
143143

144144
```bash
145-
bash scripts/install.sh memory-lancedb-dreaming-0.2.8.tgz
145+
bash scripts/install.sh memory-lancedb-dreaming-0.2.9.tgz
146146
```
147147

148148
### 方式 C:手动解压
149149

150150
```bash
151151
mkdir -p ~/.openclaw/plugins/memory-lancedb-dreaming
152-
tar -xzf memory-lancedb-dreaming-0.2.8.tgz -C /tmp
152+
tar -xzf memory-lancedb-dreaming-0.2.9.tgz -C /tmp
153153
cp -r /tmp/package/* ~/.openclaw/plugins/memory-lancedb-dreaming/
154154
cd ~/.openclaw/plugins/memory-lancedb-dreaming && npm install --omit=dev
155155
```
@@ -325,11 +325,11 @@ ls ~/.openclaw/plugins/memory-lancedb-dreaming/dist/index.js
325325
grep -r "workspace/memory-lancedb-dreaming" ~/.openclaw --include="*.json" || echo "no stale workspace path"
326326
```
327327

328-
### 1. 安装 v0.2.8 并重启 gateway
328+
### 1. 安装 v0.2.9 并重启 gateway
329329

330330
```bash
331331
openclaw plugins install clawhub:memory-lancedb-dreaming
332-
# 或: bash scripts/install.sh memory-lancedb-dreaming-0.2.8.tgz
332+
# 或: bash scripts/install.sh memory-lancedb-dreaming-0.2.9.tgz
333333
openclaw gateway stop 2>/dev/null || true
334334
openclaw gateway run
335335
```
@@ -406,7 +406,7 @@ MIT © 2026 airbing11
406406

407407
## 版本与变更
408408

409-
- 当前推荐版本:**0.2.8**REM 反重复 + `dreaming_doctor`;保留 0.2.6 日报去重与 0.2.4 插槽兼容)
409+
- 当前推荐版本:**0.2.9**0.2.8 反重复 + `dreaming_doctor` 的 ClawHub 打包热修;保留 0.2.6 日报去重与 0.2.4 插槽兼容)
410410
- 页面版式基线:**0.2.7**(README 英文在前 + `## 中文说明`
411411
- 变更记录:[CHANGELOG.md](./CHANGELOG.md)
412412
- 验收报告:[docs/v0.2.8-OPENCLAW-TEST-STEPS.md](./docs/v0.2.8-OPENCLAW-TEST-STEPS.md)

dist/constants.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export declare const DREAMING_TRIGGER_TOKEN = "__openclaw_memory_lancedb_dreaming_trigger__";
2-
export declare const PLUGIN_VERSION = "0.2.8";
2+
export declare const PLUGIN_VERSION = "0.2.9";
33
export declare const DAILY_REPORT_TRIGGER_TOKEN = "__openclaw_memory_lancedb_dreaming_daily_report__";
44
export declare const MANAGED_DREAMING_CRON_NAME = "LanceDB Memory Dreaming";
55
export declare const MANAGED_DAILY_REPORT_CRON_NAME = "Dreaming Daily Report";

dist/constants.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openclaw.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "memory-lancedb-dreaming",
33
"name": "Dreaming (LanceDB)",
44
"description": "Light/REM/Deep dreaming for memory-lancedb: narrative DREAMS.md, promotion, and daily report (zero-LLM file summary + optional push to Feishu/WeCom/etc. via dailyReport.delivery).",
5-
"version": "0.2.8",
5+
"version": "0.2.9",
66
"activation": {
77
"onStartup": true
88
},

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "memory-lancedb-dreaming",
3-
"version": "0.2.8",
3+
"version": "0.2.9",
44
"description": "Dreaming plugin for memory-lancedb — Light/REM/Deep phases, DREAMS.md, daily report with optional channel push (Feishu/WeCom/etc.).",
55
"type": "module",
66
"main": "./dist/index.js",

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const DREAMING_TRIGGER_TOKEN = "__openclaw_memory_lancedb_dreaming_trigger__";
22

3-
export const PLUGIN_VERSION = "0.2.8";
3+
export const PLUGIN_VERSION = "0.2.9";
44

55
export const DAILY_REPORT_TRIGGER_TOKEN = "__openclaw_memory_lancedb_dreaming_daily_report__";
66

0 commit comments

Comments
 (0)