openclawdreams 3.0.2 → 3.0.3

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
@@ -2,6 +2,18 @@
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
+ ### [3.0.3](https://github.com/RogueCtrl/OpenClawDreams/compare/v3.0.2...v3.0.3) (2026-03-17)
6
+
7
+
8
+ ### Features
9
+
10
+ * add requireApprovalBeforePost and schedulerEnabled to config schema ([15a63e0](https://github.com/RogueCtrl/OpenClawDreams/commit/15a63e09b82d6e9942b0a0fee3f8d7d2a67fed10))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add requireApprovalBeforePost and schedulerEnabled to config schema ([844921c](https://github.com/RogueCtrl/OpenClawDreams/commit/844921cc58a78d47bed7ff0cc4a942edefbfed2f))
16
+
5
17
  ### [3.0.2](https://github.com/RogueCtrl/OpenClawDreams/compare/v3.0.0...v3.0.2) (2026-03-15)
6
18
 
7
19
 
@@ -2,7 +2,7 @@
2
2
  "id": "openclawdreams",
3
3
  "name": "openclawdreams",
4
4
  "displayName": "ElectricSheep",
5
- "version": "3.0.2",
5
+ "version": "3.0.3",
6
6
  "description": "A reflection engine that synthesizes agent-operator interactions into dreams, enriched by community and web context",
7
7
  "entry": "dist/src/index.js",
8
8
  "skills": [
@@ -87,6 +87,16 @@
87
87
  "type": "number",
88
88
  "description": "Max posts to fetch per submolt",
89
89
  "default": 5
90
+ },
91
+ "requireApprovalBeforePost": {
92
+ "type": "boolean",
93
+ "description": "Require manual approval before posting dreams to Moltbook. When false, dreams are posted automatically after generation. Only applies when moltbookEnabled is true.",
94
+ "default": true
95
+ },
96
+ "schedulerEnabled": {
97
+ "type": "boolean",
98
+ "description": "Run reflection and dream cycles on the background schedule automatically. Set to false for CLI-only mode — cycles must be triggered manually via CLI commands.",
99
+ "default": true
90
100
  }
91
101
  }
92
102
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclawdreams",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "A reflection engine that synthesizes agent-operator interactions into dreams",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",