crewx 0.8.9-rc.21 → 0.8.9-rc.22
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.
|
@@ -100,6 +100,7 @@ let AgentService = class AgentService {
|
|
|
100
100
|
agents.push(newAgent);
|
|
101
101
|
config.agents = agents;
|
|
102
102
|
this.saveConfig(configPath, config, raw);
|
|
103
|
+
this.agentsCache.delete(configPath);
|
|
103
104
|
this.crewxPool.invalidate((0, workspace_context_store_js_1.getWorkspacePath)());
|
|
104
105
|
return this.toAgentInfo(newAgent);
|
|
105
106
|
}
|
|
@@ -179,6 +180,7 @@ let AgentService = class AgentService {
|
|
|
179
180
|
agents[idx] = existing;
|
|
180
181
|
config.agents = agents;
|
|
181
182
|
this.saveConfig(configPath, config, raw);
|
|
183
|
+
this.agentsCache.delete(configPath);
|
|
182
184
|
this.crewxPool.invalidate((0, workspace_context_store_js_1.getWorkspacePath)());
|
|
183
185
|
return this.toAgentInfo(existing);
|
|
184
186
|
}
|
|
@@ -198,6 +200,7 @@ let AgentService = class AgentService {
|
|
|
198
200
|
agents.splice(idx, 1);
|
|
199
201
|
config.agents = agents;
|
|
200
202
|
this.saveConfig(configPath, config, raw);
|
|
203
|
+
this.agentsCache.delete(configPath);
|
|
201
204
|
this.crewxPool.invalidate((0, workspace_context_store_js_1.getWorkspacePath)());
|
|
202
205
|
}
|
|
203
206
|
// Preview prompt — POST /api/v1/agents/prompt/preview
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crewx",
|
|
3
|
-
"version": "0.8.9-rc.
|
|
3
|
+
"version": "0.8.9-rc.22",
|
|
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.
|
|
84
|
-
"@crewx/cron": "0.1.10-rc.
|
|
85
|
-
"@crewx/chromex": "0.1.0-rc.
|
|
86
|
-
"@crewx/
|
|
87
|
-
"@crewx/
|
|
88
|
-
"@crewx/knowledge-core": "0.1.17-rc.
|
|
89
|
-
"@crewx/
|
|
90
|
-
"@crewx/
|
|
91
|
-
"@crewx/
|
|
92
|
-
"@crewx/shared": "0.0.6-rc.8",
|
|
93
|
-
"@crewx/wbs": "0.1.10-rc.50",
|
|
83
|
+
"@crewx/cli": "0.8.9-rc.22",
|
|
84
|
+
"@crewx/cron": "0.1.10-rc.56",
|
|
85
|
+
"@crewx/chromex": "0.1.0-rc.58",
|
|
86
|
+
"@crewx/doc": "0.1.9-rc.20",
|
|
87
|
+
"@crewx/dreaming": "0.1.0-rc.40",
|
|
88
|
+
"@crewx/knowledge-core": "0.1.17-rc.17",
|
|
89
|
+
"@crewx/memory": "0.1.23-rc.38",
|
|
90
|
+
"@crewx/search": "0.1.10-rc.21",
|
|
91
|
+
"@crewx/shared": "0.0.6-rc.9",
|
|
94
92
|
"@crewx/skill": "0.1.20",
|
|
95
|
-
"@crewx/workflow": "0.3.22-rc.
|
|
96
|
-
"@crewx/wi": "0.1.10-rc.
|
|
93
|
+
"@crewx/workflow": "0.3.22-rc.38",
|
|
94
|
+
"@crewx/wi": "0.1.10-rc.22",
|
|
95
|
+
"@crewx/wbs": "0.1.10-rc.51",
|
|
96
|
+
"@crewx/sdk": "0.8.9-rc.22"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
99
|
"@ccusage/codex": "0.0.1",
|