crewx 0.8.9-rc.20 → 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
@@ -0,0 +1,24 @@
1
+ {
2
+ "version": "1.0",
3
+ "registries": [
4
+ {
5
+ "id": "crewx-official",
6
+ "name": "crewx-templates",
7
+ "url": "https://github.com/sowonlabs/crewx-templates",
8
+ "trust": "verified",
9
+ "type": "crewx",
10
+ "default": true
11
+ },
12
+ {
13
+ "id": "anthropic-skills",
14
+ "name": "anthropic-skills",
15
+ "url": "https://github.com/anthropics/skills",
16
+ "trust": "verified",
17
+ "type": "claude",
18
+ "default": false
19
+ }
20
+ ],
21
+ "deny": [],
22
+ "forceDisabled": [],
23
+ "forceEnabled": []
24
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewx",
3
- "version": "0.8.9-rc.20",
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/chromex": "0.1.0-rc.56",
84
- "@crewx/cli": "0.8.9-rc.20",
85
- "@crewx/cron": "0.1.10-rc.54",
86
- "@crewx/doc": "0.1.9-rc.18",
87
- "@crewx/dreaming": "0.1.0-rc.38",
88
- "@crewx/knowledge-core": "0.1.17-rc.15",
89
- "@crewx/memory": "0.1.23-rc.36",
90
- "@crewx/sdk": "0.8.9-rc.20",
91
- "@crewx/search": "0.1.10-rc.19",
92
- "@crewx/shared": "0.0.6-rc.7",
93
- "@crewx/wbs": "0.1.10-rc.49",
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.36",
96
- "@crewx/wi": "0.1.10-rc.20"
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",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/cli",
3
- "version": "0.8.9-rc.20",
3
+ "version": "0.8.9-rc.22",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"