openclawdreams 1.6.0 → 2.0.1
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 +37 -443
- package/README.md +41 -24
- package/dist/bin/openclawdreams.js +0 -0
- package/dist/src/backfill.d.ts +2 -0
- package/dist/src/backfill.js +63 -0
- package/dist/src/cli.js +75 -17
- package/dist/src/config.d.ts +16 -4
- package/dist/src/config.js +36 -18
- package/dist/src/crypto.js +5 -5
- package/dist/src/dreamer.d.ts +16 -2
- package/dist/src/dreamer.js +150 -31
- package/dist/src/index.js +18 -9
- package/dist/src/logger.js +2 -2
- package/dist/src/memory.d.ts +41 -5
- package/dist/src/memory.js +224 -22
- package/dist/src/moltbook.js +11 -11
- package/dist/src/nightmare.d.ts +3 -1
- package/dist/src/nightmare.js +23 -7
- package/dist/src/persona.d.ts +1 -0
- package/dist/src/persona.js +29 -0
- package/dist/src/state.js +6 -6
- package/dist/src/topics.js +5 -4
- package/dist/src/types.d.ts +28 -4
- package/dist/test/credentials_fallback.test.js +7 -7
- package/dist/test/crypto.test.js +2 -2
- package/dist/test/dream-remembrance.test.d.ts +2 -0
- package/dist/test/dream-remembrance.test.js +192 -0
- package/dist/test/dreamer.test.js +4 -3
- package/dist/test/memory.test.js +11 -15
- package/dist/test/moltbook.test.js +6 -6
- package/dist/test/nightmare.test.js +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,115 +2,75 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
### [2.0.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.7.0...v2.0.1) (2026-03-09)
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
###
|
|
9
|
-
|
|
10
|
-
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
11
|
-
* insight continuity — thread explored territory into dream/reflect prompts ([#65](https://github.com/RogueCtrl/OpenClawDreams/issues/65)) ([c7bdee1](https://github.com/RogueCtrl/OpenClawDreams/commit/c7bdee151e908e2c10d541a245f846e0ecb91706))
|
|
12
|
-
* nightmare cycle — 5% chance + forced CLI command ([#64](https://github.com/RogueCtrl/OpenClawDreams/issues/64)) ([50c261c](https://github.com/RogueCtrl/OpenClawDreams/commit/50c261c2dbfa86e4dfede669a51b0deb60666136))
|
|
13
|
-
* reflect --dry-run — print synthesis output without storing ([#73](https://github.com/RogueCtrl/OpenClawDreams/issues/73)) ([ed5acd5](https://github.com/RogueCtrl/OpenClawDreams/commit/ed5acd5a4b07d1fbcfcd0d6c24dddb64171f65d7))
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
### Bug Fixes
|
|
17
|
-
|
|
18
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
19
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
20
|
-
* resolve MoltbookClient credentials from stable fallback path when DATA_DIR unset (fixes [#70](https://github.com/RogueCtrl/OpenClawDreams/issues/70)) ([48d3019](https://github.com/RogueCtrl/OpenClawDreams/commit/48d30191faa457a5dca9171816844758dfd7844a))
|
|
21
|
-
* run tests sequentially to prevent env var race condition ([#67](https://github.com/RogueCtrl/OpenClawDreams/issues/67)) ([22f0002](https://github.com/RogueCtrl/OpenClawDreams/commit/22f00022b4224422fa7fe0cd1b9c8dde6f8c5b2c))
|
|
22
|
-
* run tests with --test-isolation=process to prevent ESM module cache contamination between test files ([f53a222](https://github.com/RogueCtrl/OpenClawDreams/commit/f53a222a31588d4477bd034cc3764b1011801993))
|
|
23
|
-
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
### Documentation
|
|
27
|
-
|
|
28
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
29
|
-
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
30
|
-
|
|
31
|
-
### [1.5.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.5.1) (2026-03-08)
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
32
9
|
|
|
10
|
+
* Dream Remembrance System — SQLite tracking, 1% cycle, weighted selection, pruning
|
|
11
|
+
* v2.0.0 — dry-run flags, encrypted deep memory, backward-compat migrations
|
|
33
12
|
|
|
34
13
|
### Features
|
|
35
14
|
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
15
|
+
* add --dry-run to all mutations and listing commands ([3f4af5b](https://github.com/RogueCtrl/OpenClawDreams/commit/3f4af5b0e038de794e43f3011c8c9b190436c596))
|
|
16
|
+
* Dream Remembrance System — SQLite tracking, 1% cycle, weighted selection, pruning ([9c45f19](https://github.com/RogueCtrl/OpenClawDreams/commit/9c45f1999622d8d3c02f037259e2fbe50a8ab0be))
|
|
17
|
+
* enhance dream remembrance with meta-synthesis and independent nightmares ([1618317](https://github.com/RogueCtrl/OpenClawDreams/commit/1618317944fce9b3403e2aea9677070c0bb90a44))
|
|
18
|
+
* finalize dream remembrance with simulation commands and full test isolation ([9af434a](https://github.com/RogueCtrl/OpenClawDreams/commit/9af434a05e620f857ce30de8a5953694bbae21ff))
|
|
19
|
+
* implement Dream Remembrance System using SQLite ([7100e57](https://github.com/RogueCtrl/OpenClawDreams/commit/7100e579287aa43665dccff47632031db291e850))
|
|
20
|
+
* schema migration + getDeepMemoryById for dream remembrance columns ([8d78aba](https://github.com/RogueCtrl/OpenClawDreams/commit/8d78aba0be0a7550a87c93449cb5f14812357f54))
|
|
21
|
+
* v2.0.0 — dry-run flags, encrypted deep memory, backward-compat migrations ([ebb1bc9](https://github.com/RogueCtrl/OpenClawDreams/commit/ebb1bc97668ab252d4265810e1f040abbacac4f7))
|
|
39
22
|
|
|
40
23
|
|
|
41
24
|
### Bug Fixes
|
|
42
25
|
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
* resolve MoltbookClient credentials from stable fallback path when DATA_DIR unset (fixes [#70](https://github.com/RogueCtrl/OpenClawDreams/issues/70)) ([48d3019](https://github.com/RogueCtrl/OpenClawDreams/commit/48d30191faa457a5dca9171816844758dfd7844a))
|
|
46
|
-
* run tests sequentially to prevent env var race condition ([#67](https://github.com/RogueCtrl/OpenClawDreams/issues/67)) ([22f0002](https://github.com/RogueCtrl/OpenClawDreams/commit/22f00022b4224422fa7fe0cd1b9c8dde6f8c5b2c))
|
|
47
|
-
* run tests with --test-isolation=process to prevent ESM module cache contamination between test files ([f53a222](https://github.com/RogueCtrl/OpenClawDreams/commit/f53a222a31588d4477bd034cc3764b1011801993))
|
|
48
|
-
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
26
|
+
* resolve TS errors and simplify backfill to disk-only ([edc2905](https://github.com/RogueCtrl/OpenClawDreams/commit/edc29055e86d43d3d1dd8b9c6675e0825cb2ae22))
|
|
27
|
+
* resolve type errors from dream remembrance backfill implementation ([0b5ab4f](https://github.com/RogueCtrl/OpenClawDreams/commit/0b5ab4fb84e2b0acb341e7ce765e54c9e2f370c6))
|
|
49
28
|
|
|
50
29
|
|
|
51
30
|
### Documentation
|
|
52
31
|
|
|
53
|
-
*
|
|
54
|
-
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
55
|
-
|
|
56
|
-
## [1.5.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.5.0) (2026-03-08)
|
|
32
|
+
* update README with nightmare cycle, insight continuity, reflect dry-run, rich MemoryEntry ([1013914](https://github.com/RogueCtrl/OpenClawDreams/commit/1013914954fb8a37353933eb605a82e5617a6165))
|
|
57
33
|
|
|
34
|
+
## [2.0.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.7.0...v2.0.0) (2026-03-08)
|
|
58
35
|
|
|
59
|
-
###
|
|
60
|
-
|
|
61
|
-
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
62
|
-
* insight continuity — thread explored territory into dream/reflect prompts ([#65](https://github.com/RogueCtrl/OpenClawDreams/issues/65)) ([c7bdee1](https://github.com/RogueCtrl/OpenClawDreams/commit/c7bdee151e908e2c10d541a245f846e0ecb91706))
|
|
63
|
-
* nightmare cycle — 5% chance + forced CLI command ([#64](https://github.com/RogueCtrl/OpenClawDreams/issues/64)) ([50c261c](https://github.com/RogueCtrl/OpenClawDreams/commit/50c261c2dbfa86e4dfede669a51b0deb60666136))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
### Bug Fixes
|
|
67
|
-
|
|
68
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
69
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
70
|
-
* run tests sequentially to prevent env var race condition ([#67](https://github.com/RogueCtrl/OpenClawDreams/issues/67)) ([22f0002](https://github.com/RogueCtrl/OpenClawDreams/commit/22f00022b4224422fa7fe0cd1b9c8dde6f8c5b2c))
|
|
71
|
-
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### Documentation
|
|
75
|
-
|
|
76
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
77
|
-
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
78
|
-
|
|
79
|
-
### [1.4.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.4.1) (2026-03-08)
|
|
36
|
+
### ⚠ BREAKING CHANGES
|
|
80
37
|
|
|
38
|
+
* **memory:** New columns added to `dream_remembrances` (`is_nightmare`, `is_meta_synthesis`, `source_filenames`, `deep_memory_id`). Existing databases are automatically migrated on first run via `getDb()`. No manual action is needed.
|
|
39
|
+
* **storage:** Dreams and nightmares are now stored encrypted in the SQLite `deep_memories` table instead of relying solely on markdown files. A backfill process will run automatically to migrate existing markdown files and Moltbook posts into the database.
|
|
40
|
+
* **file pruning:** Only the single most recent dream/nightmare `.md` file is kept on disk as a live view. All older markdown files are pruned.
|
|
41
|
+
* **schema:** The `dream_remembrances` table and `DeepMemoryRow` types have been updated to support the new metadata and relationships.
|
|
81
42
|
|
|
82
43
|
### Features
|
|
83
44
|
|
|
84
|
-
*
|
|
85
|
-
*
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
*
|
|
91
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
92
|
-
* run tests sequentially to prevent env var race condition ([#67](https://github.com/RogueCtrl/OpenClawDreams/issues/67)) ([22f0002](https://github.com/RogueCtrl/OpenClawDreams/commit/22f00022b4224422fa7fe0cd1b9c8dde6f8c5b2c))
|
|
93
|
-
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
94
|
-
|
|
45
|
+
* **dreamer:** Introduce Dream Remembrance System with weighted selection (1% chance to remember a past dream).
|
|
46
|
+
* **dreamer:** Meta-dream synthesis combines a remembered dream with a new dream.
|
|
47
|
+
* **dreamer:** Independent nightmare probability (5%) that can combine with remembrances to form meta-nightmares.
|
|
48
|
+
* **cli:** Add `--sim-remembered` and `--sim-remembered-nightmare` flags to simulate the new mechanics.
|
|
49
|
+
* **cli:** Add `--dry-run` flag support to all state-modifying commands (`dream`, `nightmare`, `reflect`, `post`, `register`) to allow testing without side effects.
|
|
50
|
+
* **memory:** Implement automatic, backward-compatible SQLite schema migrations.
|
|
51
|
+
* **backfill:** Automatically backfill existing dream files and Moltbook posts into the encrypted deep memory store on first run.
|
|
95
52
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
99
|
-
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
100
|
-
|
|
101
|
-
## [1.4.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.4.0) (2026-03-08)
|
|
53
|
+
## [1.7.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.6.1...v1.7.0) (2026-03-09)
|
|
102
54
|
|
|
103
55
|
|
|
104
56
|
### Features
|
|
105
57
|
|
|
58
|
+
* add midnight (0h) reflection cycle ([0f1703c](https://github.com/RogueCtrl/OpenClawDreams/commit/0f1703c00acc0e2197969a941f3fc818ff128e25))
|
|
106
59
|
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
60
|
+
* insight continuity — thread explored territory into dream/reflect prompts ([#65](https://github.com/RogueCtrl/OpenClawDreams/issues/65)) ([c7bdee1](https://github.com/RogueCtrl/OpenClawDreams/commit/c7bdee151e908e2c10d541a245f846e0ecb91706))
|
|
107
61
|
* nightmare cycle — 5% chance + forced CLI command ([#64](https://github.com/RogueCtrl/OpenClawDreams/issues/64)) ([50c261c](https://github.com/RogueCtrl/OpenClawDreams/commit/50c261c2dbfa86e4dfede669a51b0deb60666136))
|
|
62
|
+
* reflect --dry-run — print synthesis output without storing ([#73](https://github.com/RogueCtrl/OpenClawDreams/issues/73)) ([ed5acd5](https://github.com/RogueCtrl/OpenClawDreams/commit/ed5acd5a4b07d1fbcfcd0d6c24dddb64171f65d7))
|
|
63
|
+
* rich MemoryEntry types + fix idempotencyKey for OpenClaw v2026.3.7 ([b4424c1](https://github.com/RogueCtrl/OpenClawDreams/commit/b4424c1855686f939503d81e01de04dfed00821e))
|
|
108
64
|
|
|
109
65
|
|
|
110
66
|
### Bug Fixes
|
|
111
67
|
|
|
112
68
|
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
69
|
+
* make NIGHTMARE_CHANCE configurable to eliminate dreamer test flakiness ([8682ef8](https://github.com/RogueCtrl/OpenClawDreams/commit/8682ef86cb3647dd6490918360d73e54633570e3))
|
|
113
70
|
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
71
|
+
* resolve MoltbookClient credentials from stable fallback path when DATA_DIR unset (fixes [#70](https://github.com/RogueCtrl/OpenClawDreams/issues/70)) ([48d3019](https://github.com/RogueCtrl/OpenClawDreams/commit/48d30191faa457a5dca9171816844758dfd7844a))
|
|
72
|
+
* run tests sequentially to prevent env var race condition ([#67](https://github.com/RogueCtrl/OpenClawDreams/issues/67)) ([22f0002](https://github.com/RogueCtrl/OpenClawDreams/commit/22f00022b4224422fa7fe0cd1b9c8dde6f8c5b2c))
|
|
73
|
+
* run tests with --test-isolation=process to prevent ESM module cache contamination between test files ([f53a222](https://github.com/RogueCtrl/OpenClawDreams/commit/f53a222a31588d4477bd034cc3764b1011801993))
|
|
114
74
|
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
115
75
|
|
|
116
76
|
|
|
@@ -119,370 +79,4 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
119
79
|
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
120
80
|
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
121
81
|
|
|
122
|
-
### [1.
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
### Bug Fixes
|
|
126
|
-
|
|
127
|
-
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
128
|
-
* add .npmignore to exclude private data and src from npm publish ([044c758](https://github.com/RogueCtrl/OpenClawDreams/commit/044c758))
|
|
129
|
-
|
|
130
|
-
### [1.3.3](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.3.2...v1.3.3) (2026-03-08)
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
### Features
|
|
134
|
-
|
|
135
|
-
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
### Bug Fixes
|
|
139
|
-
|
|
140
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
141
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
142
|
-
* skip workspace diff on iCloud/sensitive paths; add workspaceDiffEnabled config ([dfe6b51](https://github.com/RogueCtrl/OpenClawDreams/commit/dfe6b51ac0ded5ba4ee9609089053cddb774221c))
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
### Documentation
|
|
146
|
-
|
|
147
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
148
|
-
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
149
|
-
|
|
150
|
-
### [1.3.2](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.3.2) (2026-03-08)
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
### Features
|
|
154
|
-
|
|
155
|
-
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
### Bug Fixes
|
|
159
|
-
|
|
160
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
161
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
### Documentation
|
|
165
|
-
|
|
166
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
167
|
-
* update AGENTS.md and README for v1.3.0 — workspace diffs, groundDream(), notification fallback ([0a5b19a](https://github.com/RogueCtrl/OpenClawDreams/commit/0a5b19ab4a7a1e84b59ad5e4216be4b335eb767f))
|
|
168
|
-
|
|
169
|
-
### [1.3.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.3.1) (2026-03-08)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
### Features
|
|
173
|
-
|
|
174
|
-
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
### Bug Fixes
|
|
178
|
-
|
|
179
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
180
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
### Documentation
|
|
184
|
-
|
|
185
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
186
|
-
|
|
187
|
-
## [1.3.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.3.0) (2026-03-08)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
### Features
|
|
191
|
-
|
|
192
|
-
* dream pipeline v1.3 — workspace diff context, groundDream(), and notification fallback ([#58](https://github.com/RogueCtrl/OpenClawDreams/issues/58)) ([c683fb6](https://github.com/RogueCtrl/OpenClawDreams/commit/c683fb6fa2ce96e5c0e88e9c671e832aa44be69a))
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
### Bug Fixes
|
|
196
|
-
|
|
197
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
198
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
### Documentation
|
|
202
|
-
|
|
203
|
-
* remove roadmap from README and ROADMAP.md (tracked externally) ([9e8620d](https://github.com/RogueCtrl/OpenClawDreams/commit/9e8620dcc2e9bb176cef624a5c7bdfae026d2ced))
|
|
204
|
-
|
|
205
|
-
### [1.2.4](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.2.4) (2026-03-08)
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
### Bug Fixes
|
|
209
|
-
|
|
210
|
-
* DST-safe scheduler with catch-up window ([#54](https://github.com/RogueCtrl/OpenClawDreams/issues/54)) ([230a943](https://github.com/RogueCtrl/OpenClawDreams/commit/230a9436eadf4e374595a772d2b2de3ee910b6f6))
|
|
211
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
212
|
-
|
|
213
|
-
### [1.2.3](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.2.3) (2026-03-07)
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
### Bug Fixes
|
|
217
|
-
|
|
218
|
-
* prettier formatting — cli.ts and index.ts ([#52](https://github.com/RogueCtrl/OpenClawDreams/issues/52)) ([93df3d8](https://github.com/RogueCtrl/OpenClawDreams/commit/93df3d8e44a62ae79135eef765604786815d4f91))
|
|
219
|
-
|
|
220
|
-
### [1.2.3](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.2.3) (2026-03-07)
|
|
221
|
-
|
|
222
|
-
### Features
|
|
223
|
-
|
|
224
|
-
* **cli:** add `--dry-run` flag to `post` command ([#7](https://github.com/RogueCtrl/OpenClawDreams/pull/7))
|
|
225
|
-
* **config:** add `requireApprovalBeforePost` option (default: `true`) to gate automatic posts ([#7](https://github.com/RogueCtrl/OpenClawDreams/pull/7))
|
|
226
|
-
* **config:** add `dreamSubmolt` option (default: `"dreams"`) to configure target submolt ([#7](https://github.com/RogueCtrl/OpenClawDreams/pull/7))
|
|
227
|
-
* **scheduler:** implement operator approval gate for morning dream posts via system events ([#7](https://github.com/RogueCtrl/OpenClawDreams/pull/7))
|
|
228
|
-
|
|
229
|
-
### [1.2.2](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.1...v1.2.2) (2026-03-07)
|
|
230
|
-
|
|
231
|
-
### [1.2.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.1.0...v1.2.1) (2026-03-07)
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
### Features
|
|
235
|
-
|
|
236
|
-
* runtime-overridable plugin config via applyPluginConfig() ([b89962a](https://github.com/RogueCtrl/OpenClawDreams/commit/b89962ac26298e29fca0cd73d52678950c4b9ddf))
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
### Documentation
|
|
240
|
-
|
|
241
|
-
* add day/night cycle screenshots to README ([d4d3cea](https://github.com/RogueCtrl/OpenClawDreams/commit/d4d3ceaa115c26033952e7b736e238fdcb7035e3))
|
|
242
|
-
* add ROADMAP.md with multi-modal memory as v2.0 focus ([b208812](https://github.com/RogueCtrl/OpenClawDreams/commit/b208812c25379ebb425b5f6464807eb9175e75b6))
|
|
243
|
-
|
|
244
|
-
## [1.2.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.1.0...v1.2.0) (2026-03-07)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
### Features
|
|
248
|
-
|
|
249
|
-
* runtime-overridable plugin config via applyPluginConfig() ([b89962a](https://github.com/RogueCtrl/OpenClawDreams/commit/b89962ac26298e29fca0cd73d52678950c4b9ddf))
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
### Documentation
|
|
253
|
-
|
|
254
|
-
* add day/night cycle screenshots to README ([d4d3cea](https://github.com/RogueCtrl/OpenClawDreams/commit/d4d3ceaa115c26033952e7b736e238fdcb7035e3))
|
|
255
|
-
* add ROADMAP.md with multi-modal memory as v2.0 focus ([b208812](https://github.com/RogueCtrl/OpenClawDreams/commit/b208812c25379ebb425b5f6464807eb9175e75b6))
|
|
256
|
-
|
|
257
|
-
## [1.1.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.0.0...v1.1.0) (2026-03-07)
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
### Features
|
|
261
|
-
|
|
262
|
-
* add dreamscape footer to dream posts and Moltbook publications ([1dfe299](https://github.com/RogueCtrl/OpenClawDreams/commit/1dfe2990bbea8cfe32d482fe832d761529073bff))
|
|
263
|
-
|
|
264
|
-
## [1.0.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v0.6.0...v1.0.0) (2026-03-07)
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
### ⚠ BREAKING CHANGES
|
|
268
|
-
|
|
269
|
-
* Plugin ID, tool names, gateway methods, service IDs,
|
|
270
|
-
CLI binary, and environment variables have all changed from electricsheep
|
|
271
|
-
to openclawdreams. Existing cron jobs, scripts, or configs referencing
|
|
272
|
-
the old names will need updating.
|
|
273
|
-
* Plugin ID, tool names, gateway methods, service IDs,
|
|
274
|
-
CLI binary, and environment variables have all changed from electricsheep
|
|
275
|
-
to openclawdreams. Existing cron jobs, scripts, or configs referencing
|
|
276
|
-
the old names will need updating.
|
|
277
|
-
* Plugin ID, tool names, gateway methods, service IDs,
|
|
278
|
-
CLI binary, and environment variables have all changed from electricsheep
|
|
279
|
-
to openclawdreams. Existing cron jobs, scripts, or configs referencing
|
|
280
|
-
the old names will need updating.
|
|
281
|
-
|
|
282
|
-
### Features
|
|
283
|
-
|
|
284
|
-
* append attribution footer to all generated dreams ([d89915e](https://github.com/RogueCtrl/OpenClawDreams/commit/d89915e31ebbe5a21df556906453fa9626bfc8a4))
|
|
285
|
-
* **cli:** add dream command and extract shared createDirectClient helper ([6032258](https://github.com/RogueCtrl/OpenClawDreams/commit/603225887ff382fa86c6e4b072de9585710bc1c6))
|
|
286
|
-
* **cli:** add dream preview summary to post command output ([777c7b0](https://github.com/RogueCtrl/OpenClawDreams/commit/777c7b071795247d088a480a19b2328702a01607))
|
|
287
|
-
* **cli:** add post command for manual Moltbook posting ([52dfe78](https://github.com/RogueCtrl/OpenClawDreams/commit/52dfe7879ac946f7d929578bb530fc4cd1ee6632))
|
|
288
|
-
* rename internal plugin ID from electricsheep to openclawdreams ([5cc7932](https://github.com/RogueCtrl/OpenClawDreams/commit/5cc7932b6fa245893e322a2ae05257be2c30117f))
|
|
289
|
-
* rename internal plugin ID from electricsheep to openclawdreams ([f7e01df](https://github.com/RogueCtrl/OpenClawDreams/commit/f7e01df6313d9023ce53daf078b3e54367403dd2))
|
|
290
|
-
* rename internal plugin ID from electricsheep to openclawdreams ([57ed40c](https://github.com/RogueCtrl/OpenClawDreams/commit/57ed40c811395d44e8dc87c27f91607eaff7ba94))
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
### Bug Fixes
|
|
294
|
-
|
|
295
|
-
* align plugin id to openclawdreams in openclaw.plugin.json ([2f8eb9b](https://github.com/RogueCtrl/OpenClawDreams/commit/2f8eb9bf41963eed75f90b2d7cbba9c76ce4ca85))
|
|
296
|
-
* **cli:** force Moltbook post from CLI by bypassing MOLTBOOK_ENABLED const ([4354bd5](https://github.com/RogueCtrl/OpenClawDreams/commit/4354bd508da47db3e7015e41157fc80b76943517))
|
|
297
|
-
* **cli:** use direct Anthropic API for reflect command instead of nonexistent tools call ([016bc48](https://github.com/RogueCtrl/OpenClawDreams/commit/016bc48bfa70f7ffb25565f5988a49c667ebec0a))
|
|
298
|
-
* **lint:** replace all any types with proper typed alternatives ([3698cc4](https://github.com/RogueCtrl/OpenClawDreams/commit/3698cc4b4a37594b7efdc6e4dc3f01c1cb8cade1))
|
|
299
|
-
* **moltbook:** remove title filter that inflated title, cap at 300 chars ([8d746fc](https://github.com/RogueCtrl/OpenClawDreams/commit/8d746fcd4093cd8a118128f9a877da110670d8e8))
|
|
300
|
-
* **openclaw:** upgrade plugin to use subagent runtime for reflection ([027679d](https://github.com/RogueCtrl/OpenClawDreams/commit/027679d3566d3a2d5ff410acc7c4e6459c204fd2))
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
### Documentation
|
|
304
|
-
|
|
305
|
-
* Add Claude Code GitHub Workflow ([a5147da](https://github.com/RogueCtrl/OpenClawDreams/commit/a5147daf6fcb9904769db66c4fc8b955dfe9f9cd))
|
|
306
|
-
* update CLI section with reflect, dream, status commands ([89b9a76](https://github.com/RogueCtrl/OpenClawDreams/commit/89b9a7634c270b00a59da1d358b951e6bd0fd8cc))
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
### Refactoring
|
|
310
|
-
|
|
311
|
-
* improve readability by reformatting long lines in `index.ts`. ([20f16ec](https://github.com/RogueCtrl/OpenClawDreams/commit/20f16ec1cdec0a1306e3f55902cd9cf611c25464))
|
|
312
|
-
|
|
313
|
-
### [0.7.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v0.6.0...v0.7.1) (2026-03-06)
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
### Features
|
|
317
|
-
|
|
318
|
-
* **cli:** add dream command and extract shared createDirectClient helper ([6032258](https://github.com/RogueCtrl/OpenClawDreams/commit/603225887ff382fa86c6e4b072de9585710bc1c6))
|
|
319
|
-
* **cli:** add dream preview summary to post command output ([777c7b0](https://github.com/RogueCtrl/OpenClawDreams/commit/777c7b071795247d088a480a19b2328702a01607))
|
|
320
|
-
* **cli:** add post command for manual Moltbook posting ([52dfe78](https://github.com/RogueCtrl/OpenClawDreams/commit/52dfe7879ac946f7d929578bb530fc4cd1ee6632))
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
### Bug Fixes
|
|
324
|
-
|
|
325
|
-
* **cli:** force Moltbook post from CLI by bypassing MOLTBOOK_ENABLED const ([4354bd5](https://github.com/RogueCtrl/OpenClawDreams/commit/4354bd508da47db3e7015e41157fc80b76943517))
|
|
326
|
-
* **cli:** use direct Anthropic API for reflect command instead of nonexistent tools call ([016bc48](https://github.com/RogueCtrl/OpenClawDreams/commit/016bc48bfa70f7ffb25565f5988a49c667ebec0a))
|
|
327
|
-
* **lint:** replace all any types with proper typed alternatives ([3698cc4](https://github.com/RogueCtrl/OpenClawDreams/commit/3698cc4b4a37594b7efdc6e4dc3f01c1cb8cade1))
|
|
328
|
-
* **moltbook:** remove title filter that inflated title, cap at 300 chars ([8d746fc](https://github.com/RogueCtrl/OpenClawDreams/commit/8d746fcd4093cd8a118128f9a877da110670d8e8))
|
|
329
|
-
* **openclaw:** upgrade plugin to use subagent runtime for reflection ([027679d](https://github.com/RogueCtrl/OpenClawDreams/commit/027679d3566d3a2d5ff410acc7c4e6459c204fd2))
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
### Documentation
|
|
333
|
-
|
|
334
|
-
* update CLI section with reflect, dream, status commands ([89b9a76](https://github.com/RogueCtrl/OpenClawDreams/commit/89b9a7634c270b00a59da1d358b951e6bd0fd8cc))
|
|
335
|
-
|
|
336
|
-
## [0.7.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v0.6.0...v0.7.0) (2026-03-06)
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
### Features
|
|
340
|
-
|
|
341
|
-
* **cli:** add dream command and extract shared createDirectClient helper ([6032258](https://github.com/RogueCtrl/OpenClawDreams/commit/603225887ff382fa86c6e4b072de9585710bc1c6))
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
### Bug Fixes
|
|
345
|
-
|
|
346
|
-
* **cli:** use direct Anthropic API for reflect command instead of nonexistent tools call ([016bc48](https://github.com/RogueCtrl/OpenClawDreams/commit/016bc48bfa70f7ffb25565f5988a49c667ebec0a))
|
|
347
|
-
* **lint:** replace all any types with proper typed alternatives ([3698cc4](https://github.com/RogueCtrl/OpenClawDreams/commit/3698cc4b4a37594b7efdc6e4dc3f01c1cb8cade1))
|
|
348
|
-
* **openclaw:** upgrade plugin to use subagent runtime for reflection ([027679d](https://github.com/RogueCtrl/OpenClawDreams/commit/027679d3566d3a2d5ff410acc7c4e6459c204fd2))
|
|
349
|
-
|
|
350
|
-
## [0.6.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v0.5.0...v0.6.0) (2026-03-06)
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
### Features
|
|
354
|
-
|
|
355
|
-
* **cli:** add reflect command to manually trigger reflection/synthesis ([a021650](https://github.com/RogueCtrl/OpenClawDreams/commit/a02165022bb0313683893fe2e0ff0c7d426db993))
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
### Bug Fixes
|
|
359
|
-
|
|
360
|
-
* **agent_end:** manually synthesize summary and track LLM usage ([76c85cb](https://github.com/RogueCtrl/OpenClawDreams/commit/76c85cb068edd4420169557103091bf8634e36b8))
|
|
361
|
-
* correct agent_end hook registration signature to match OpenClaw API ([d323b5a](https://github.com/RogueCtrl/OpenClawDreams/commit/d323b5a12356010806f32a917adb59ce8f39f4a6))
|
|
362
|
-
* correct registerHook signature to (event, {name, handler}) ([2f67c71](https://github.com/RogueCtrl/OpenClawDreams/commit/2f67c7152178c1977c83d65f8ed719ac177e0acf))
|
|
363
|
-
* use correct OpenClaw API registerHook(events, handler, opts) signature ([8493c4b](https://github.com/RogueCtrl/OpenClawDreams/commit/8493c4bca3d29c0ab7f17e666a3dd50d93fda89e))
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
### Tests
|
|
367
|
-
|
|
368
|
-
* fix ENOTEMPTY failures in rmSync due to lingering Winston logger streams ([84f9152](https://github.com/RogueCtrl/OpenClawDreams/commit/84f9152441b8c4299b57475567c2767601e05145))
|
|
369
|
-
* remove temporary environment test files ([fbe76af](https://github.com/RogueCtrl/OpenClawDreams/commit/fbe76af8157f27e0afedb2ce13c841c67a477939))
|
|
370
|
-
|
|
371
|
-
### [0.5.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v0.5.0...v0.5.1) (2026-03-06)
|
|
372
|
-
|
|
373
|
-
## [0.5.0](https://github.com/RogueCtrl/OpenClawDreams/compare/v0.4.0...v0.5.0) (2026-03-06)
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
### Features
|
|
377
|
-
|
|
378
|
-
* Add plugin ID, refactor CLI commands to use parent, and apply minor formatting fixes. ([55ee458](https://github.com/RogueCtrl/OpenClawDreams/commit/55ee458d92cabe8f7f1b80bd0789d957ed9d64f9))
|
|
379
|
-
* Introduce plugin ID in package configuration and export plugin object from index.ts. ([5085020](https://github.com/RogueCtrl/OpenClawDreams/commit/5085020d87b5fb6f85bdbb3c43d67370cb7ce5a7))
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
### Documentation
|
|
383
|
-
|
|
384
|
-
* clarify hot-reloading mechanism for plugin activation ([6cfda73](https://github.com/RogueCtrl/OpenClawDreams/commit/6cfda73540be85155a730c2734156350ca5b2742))
|
|
385
|
-
* clarify internal scheduler and daemon uptime dependency ([dc0e6a6](https://github.com/RogueCtrl/OpenClawDreams/commit/dc0e6a6a7a160575bd395b133b983e841de78358))
|
|
386
|
-
* remove references to cron in favor of internal node scheduler ([8496605](https://github.com/RogueCtrl/OpenClawDreams/commit/84966051c700d74256ebb05f7a4ba6d88261ecc2))
|
|
387
|
-
|
|
388
|
-
## [0.4.0](https://github.com/RogueCtrl/ElectricSheep/compare/v0.3.1...v0.4.0) (2026-03-06)
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
### Bug Fixes
|
|
392
|
-
|
|
393
|
-
* correct registerCli signature to use callback form ([c25fe36](https://github.com/RogueCtrl/ElectricSheep/commit/c25fe3635f76396b04c02a34575190863a1deaf4))
|
|
394
|
-
* **plugin:** specify openclaw.extensions exports ([6a3e545](https://github.com/RogueCtrl/ElectricSheep/commit/6a3e5454c4d102740dfaed38147a33229c3fd9b8))
|
|
395
|
-
* replace registerCron with registerService for OpenClaw API compatibility ([f3b50c7](https://github.com/RogueCtrl/ElectricSheep/commit/f3b50c75763a3ba9d593e42c44434e2f96fa591b))
|
|
396
|
-
* resolve @typescript-eslint/no-misused-promises in src/index.ts ([377a109](https://github.com/RogueCtrl/ElectricSheep/commit/377a109ec63266ea0a09562b7d00eaf3d9640858))
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
### Documentation
|
|
400
|
-
|
|
401
|
-
* add agent instructions for linting and formatting before commits ([f261654](https://github.com/RogueCtrl/ElectricSheep/commit/f26165409fed5cbd65a6faf870208a015b1b4e91))
|
|
402
|
-
* rename project to OpenClawDreams in all documentation ([a260255](https://github.com/RogueCtrl/ElectricSheep/commit/a26025515fb22ef228e2c914175d75c6f149f7a8))
|
|
403
|
-
|
|
404
|
-
### [0.3.1](https://github.com/RogueCtrl/ElectricSheep/compare/v0.3.0...v0.3.1) (2026-02-04)
|
|
405
|
-
|
|
406
|
-
## 0.3.0 (2026-02-04)
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
### Features
|
|
410
|
-
|
|
411
|
-
* Add comprehensive test suite for core components and introduce API cost warnings to documentation. ([98d3130](https://github.com/RogueCtrl/ElectricSheep/commit/98d3130784e903f14f5016d5e1246f9697124015))
|
|
412
|
-
* Add dream reflection pipeline, post filter, and documentation updates ([920d939](https://github.com/RogueCtrl/ElectricSheep/commit/920d9390314a56dd5e3ab3b908697096c36a3bc9))
|
|
413
|
-
* Add new `setup-guide` skill and register it in `openclaw.plugin.json`. ([485670c](https://github.com/RogueCtrl/ElectricSheep/commit/485670c04745a69ddbcbf6e51714eee4a5b059f2))
|
|
414
|
-
* add project governance, contribution guidelines, security policy, issue/PR templates, and CI build workflow. ([ddb3832](https://github.com/RogueCtrl/ElectricSheep/commit/ddb383238b9d29346c92b9f1e5316e9d222467f8))
|
|
415
|
-
* Implement dynamic agent identity loading from workspace files and update memory system documentation. ([c5a2c2b](https://github.com/RogueCtrl/ElectricSheep/commit/c5a2c2bf77cecc49f037b16828d53adc8d370d3c))
|
|
416
|
-
* Implement scheduled agent operations with `node-cron` and add retry logic to LLM API calls for increased robustness. ([12c6885](https://github.com/RogueCtrl/ElectricSheep/commit/12c6885b810ed6439faf6969d3f6cbcb2fca439f))
|
|
417
|
-
* Introduce a daily token budget for LLM calls, update the LLM client interface to include token usage, and upgrade Node.js to v24 with updated dependencies. ([fcf4f2c](https://github.com/RogueCtrl/ElectricSheep/commit/fcf4f2c19dc7730c2c777d7b394083832f43a500))
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
### Bug Fixes
|
|
421
|
-
|
|
422
|
-
* Atomic state writes and SQLite connection singleton ([f5e1fe4](https://github.com/RogueCtrl/ElectricSheep/commit/f5e1fe439eda94e64f7707dcbf30a9cfcb36ea86))
|
|
423
|
-
* clean up stale tags before running standard-version in release workflow ([fd87548](https://github.com/RogueCtrl/ElectricSheep/commit/fd8754897515bc5508f7fdae31ac714a3459a6f6))
|
|
424
|
-
* Close logger before temp dir cleanup in state tests ([25478b3](https://github.com/RogueCtrl/ElectricSheep/commit/25478b3d2de4661ed4e7297fedcf45b0e400b169))
|
|
425
|
-
* Fail-closed filter, title filtering, and robust LLM output parsing ([b5c0b10](https://github.com/RogueCtrl/ElectricSheep/commit/b5c0b10334b866eaa8ca4bcebaa58ea11ef4a664))
|
|
426
|
-
* Mock file writes in state tests for CI reliability ([a6062ff](https://github.com/RogueCtrl/ElectricSheep/commit/a6062fffc335fcb1d078c135af61c4a8c9bb8585))
|
|
427
|
-
* use release PR instead of direct push to protected main branch ([a7b3c5d](https://github.com/RogueCtrl/ElectricSheep/commit/a7b3c5d5acd77aac09a7c108406d2b6412d63443))
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
### Documentation
|
|
431
|
-
|
|
432
|
-
* Add uninstall section to setup guide skill ([e5b76d8](https://github.com/RogueCtrl/ElectricSheep/commit/e5b76d88ec9f15df1c7b1151d4c8a5cefa875c96))
|
|
433
|
-
* Clarify that ElectricSheep does not modify OpenClaw's memory ([9a060e1](https://github.com/RogueCtrl/ElectricSheep/commit/9a060e1bd0655e825f6aea7572d1ac108170fce1))
|
|
434
|
-
* clarify the daily token budget as best-effort and detail its limitations in both AGENTS.md and README.md. ([10eba97](https://github.com/RogueCtrl/ElectricSheep/commit/10eba97e87a334ca647b279d1fadc0b036a588b4))
|
|
435
|
-
* reframe README intro as a reflection engine with optional Moltbook ([a2e8543](https://github.com/RogueCtrl/ElectricSheep/commit/a2e8543375d9555261c67087b7c1b519a3090af8))
|
|
436
|
-
* Update CLAUDE.md for markdown blob pipeline and fail-closed filter ([c2f6865](https://github.com/RogueCtrl/ElectricSheep/commit/c2f68650e239fe205d14d59608bd286f8716f848))
|
|
437
|
-
* Update documentation to prioritize OpenClaw extension installation and usage, and refine standalone CLI instructions. ([d26dbfc](https://github.com/RogueCtrl/ElectricSheep/commit/d26dbfc6e23e02d4e542f38e090d005ef83ee8e8))
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
### Refactoring
|
|
441
|
-
|
|
442
|
-
* Dream is a markdown blob, not a parsed structure ([52a86f0](https://github.com/RogueCtrl/ElectricSheep/commit/52a86f05054fc736d0be47fdbef9895f028fc15d))
|
|
443
|
-
* Filter produces post-ready content with default rules ([5ff898f](https://github.com/RogueCtrl/ElectricSheep/commit/5ff898f8dc2329b1c0abe1860d797b867a005e2f))
|
|
444
|
-
* Reimplement memory with encrypted SQLite, introduce LLM token budgeting, and update documentation and OpenClaw integration. ([b7887c3](https://github.com/RogueCtrl/ElectricSheep/commit/b7887c32ea6e80806bcd9a73031d8edfe137bbb5))
|
|
445
|
-
* Remove standalone mode, improve security, add tests for waking/moltbook ([#6](https://github.com/RogueCtrl/ElectricSheep/issues/6)) ([d191dca](https://github.com/RogueCtrl/ElectricSheep/commit/d191dca8a29f55ee2c8c9ba00a58e461eaa4dbca))
|
|
446
|
-
* rewrite ElectricSheep agent from Python to TypeScript and package as an OpenClaw plugin. ([c119a7a](https://github.com/RogueCtrl/ElectricSheep/commit/c119a7adfd995dcebb4c17a507e4b9e7da1c84e8))
|
|
447
|
-
|
|
448
|
-
## 0.2.0 (2026-02-03)
|
|
449
|
-
|
|
450
|
-
### Features
|
|
451
|
-
|
|
452
|
-
* **reflection-engine**: Pivot from Moltbook-centric to operator-focused architecture
|
|
453
|
-
* **synthesis**: New context synthesis combining operator conversations, web search, and optional Moltbook content
|
|
454
|
-
* **notifications**: Operator notification system via configured channels (telegram, discord, slack, etc.)
|
|
455
|
-
* **web-search**: Web search integration via OpenClaw API for broader context gathering
|
|
456
|
-
* **openclaw-memory**: Store dreams and reflections in OpenClaw's persistent memory
|
|
457
|
-
* **identity**: Dynamic agent identity loading from workspace SOUL.md/IDENTITY.md files
|
|
458
|
-
* **dream-reflection**: Dream reflection pipeline for decomposing themes and synthesizing insights
|
|
459
|
-
* **post-filter**: Content filter for outbound Moltbook posts (fail-closed design)
|
|
460
|
-
* **setup-guide**: New skill for guided plugin configuration
|
|
461
|
-
|
|
462
|
-
### Refactoring
|
|
463
|
-
|
|
464
|
-
* **waking**: Reflection cycle now analyzes operator conversations instead of random Moltbook feed
|
|
465
|
-
* **dreamer**: Dreams stored in OpenClaw memory, Moltbook posting now optional
|
|
466
|
-
* **filter**: Filter produces post-ready content with configurable rules
|
|
467
|
-
* **dream-format**: Dream is now a markdown blob, not a parsed structure
|
|
468
|
-
|
|
469
|
-
### Bug Fixes
|
|
470
|
-
|
|
471
|
-
* **filter**: Fail-closed filter behavior, title filtering, and robust LLM output parsing
|
|
472
|
-
|
|
473
|
-
### Documentation
|
|
474
|
-
|
|
475
|
-
* Updated README.md and CLAUDE.md for new operator-focused architecture
|
|
476
|
-
* Added architecture diagrams showing daytime reflection and nighttime dream cycles
|
|
477
|
-
* Documented all configuration options and their defaults
|
|
478
|
-
|
|
479
|
-
## 0.1.0 (2026-01-15)
|
|
480
|
-
|
|
481
|
-
Initial release with:
|
|
482
|
-
|
|
483
|
-
* Dual memory system (working memory + encrypted deep memory)
|
|
484
|
-
* Moltbook integration for community interaction
|
|
485
|
-
* Dream cycle with AES-256-GCM encryption
|
|
486
|
-
* OpenClaw plugin architecture (tools, hooks, cron jobs)
|
|
487
|
-
* Daily token budget tracking
|
|
488
|
-
* CLI utilities for status and memory inspection
|
|
82
|
+
### [1.6.1](https://github.com/RogueCtrl/OpenClawDreams/compare/v1.2.2...v1.6.1) (2026-03-08)
|