crewx 0.8.9-rc.14 → 0.8.9-rc.16

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.
@@ -58,7 +58,7 @@ let SettingsService = class SettingsService {
58
58
  getSettings() {
59
59
  const config = this.loadConfig();
60
60
  const settings = (config.settings ?? {});
61
- const dreaming = (config.dreaming ?? {});
61
+ const dreaming = (settings.dreaming ?? {});
62
62
  const continuity = (dreaming.continuity ?? {});
63
63
  const template = (settings.template ?? {});
64
64
  const exec = (template.exec ?? {});
@@ -94,10 +94,14 @@ let SettingsService = class SettingsService {
94
94
  analyticsValue = patch.analytics;
95
95
  }
96
96
  if (patch.continuity !== undefined) {
97
- if (!config.dreaming || typeof config.dreaming !== 'object') {
98
- config.dreaming = {};
97
+ if (!config.settings || typeof config.settings !== 'object') {
98
+ config.settings = {};
99
+ }
100
+ const settings = config.settings;
101
+ if (!settings.dreaming || typeof settings.dreaming !== 'object') {
102
+ settings.dreaming = {};
99
103
  }
100
- const dreaming = config.dreaming;
104
+ const dreaming = settings.dreaming;
101
105
  if (!dreaming.continuity || typeof dreaming.continuity !== 'object') {
102
106
  dreaming.continuity = {};
103
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewx",
3
- "version": "0.8.9-rc.14",
3
+ "version": "0.8.9-rc.16",
4
4
  "description": "CrewX — AI agent team dashboard with Electron UI and CLI (Web + Electron + Global CLI)",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -80,20 +80,20 @@
80
80
  "wink-nlp-utils": "2.1.0",
81
81
  "yargs": "17.7.0",
82
82
  "zod": "3.25.76",
83
- "@crewx/cli": "0.8.9-rc.14",
84
- "@crewx/chromex": "0.1.0-rc.50",
85
- "@crewx/cron": "0.1.10-rc.48",
86
- "@crewx/dreaming": "0.1.0-rc.32",
87
- "@crewx/doc": "0.1.9-rc.12",
88
- "@crewx/knowledge-core": "0.1.17-rc.9",
89
- "@crewx/memory": "0.1.23-rc.30",
90
- "@crewx/sdk": "0.8.9-rc.14",
91
- "@crewx/search": "0.1.10-rc.13",
92
- "@crewx/shared": "0.0.6-rc.1",
83
+ "@crewx/chromex": "0.1.0-rc.52",
84
+ "@crewx/cli": "0.8.9-rc.16",
85
+ "@crewx/doc": "0.1.9-rc.14",
86
+ "@crewx/cron": "0.1.10-rc.50",
87
+ "@crewx/dreaming": "0.1.0-rc.34",
88
+ "@crewx/memory": "0.1.23-rc.32",
89
+ "@crewx/sdk": "0.8.9-rc.16",
90
+ "@crewx/knowledge-core": "0.1.17-rc.11",
91
+ "@crewx/shared": "0.0.6-rc.3",
93
92
  "@crewx/skill": "0.1.20",
94
- "@crewx/workflow": "0.3.22-rc.30",
95
- "@crewx/wi": "0.1.10-rc.14",
96
- "@crewx/wbs": "0.1.10-rc.43"
93
+ "@crewx/wi": "0.1.10-rc.16",
94
+ "@crewx/search": "0.1.10-rc.15",
95
+ "@crewx/wbs": "0.1.10-rc.45",
96
+ "@crewx/workflow": "0.3.22-rc.32"
97
97
  },
98
98
  "devDependencies": {
99
99
  "@ccusage/codex": "0.0.1",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/cli",
3
- "version": "0.8.9-rc.14",
3
+ "version": "0.8.9-rc.16",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"