crewx 0.2.1 → 0.2.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.
@@ -82,25 +82,6 @@ agents:
82
82
  - Tries providers in order until one is available
83
83
  - If model is specified, uses first provider without fallback
84
84
 
85
- ### Provider-Specific Options
86
-
87
- Configure different options for each provider:
88
-
89
- ```yaml
90
- agents:
91
- - id: "multi_provider"
92
- provider: ["cli/claude", "cli/gemini", "cli/copilot"]
93
- options:
94
- execute:
95
- cli/claude:
96
- - "--permission-mode=acceptEdits"
97
- - "--add-dir=."
98
- cli/gemini:
99
- - "--include-directories=."
100
- cli/copilot:
101
- - "--add-dir=."
102
- ```
103
-
104
85
  ## Mode-Specific Options
105
86
 
106
87
  ### Query Mode vs Execute Mode
@@ -219,12 +200,8 @@ agents:
219
200
  working_directory: "./src/backend"
220
201
  options:
221
202
  execute:
222
- cli/gemini:
223
- - "--include-directories=."
224
- - "--yolo"
225
- cli/claude:
226
- - "--add-dir=."
227
- - "--allowedTools=Edit,Bash"
203
+ - "--add-dir=."
204
+ - "--allowedTools=Edit,Bash"
228
205
  inline:
229
206
  type: "agent"
230
207
  system_prompt: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewx",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Bring Your Own AI(BYOA) team in Slack/IDE(MCP) with your existing subscriptions",
6
6
  "main": "dist/main.js",
@@ -39,7 +39,7 @@
39
39
  "build:install": "npm run build && npm install -g .",
40
40
  "start": "node dist/main.js",
41
41
  "start:mcp": "node dist/main.js mcp",
42
- "start:slack": "caffeinate -i dotenv -e .env.slack -- node dist/main.js slack --log --agent crewx_dev",
42
+ "start:slack": "caffeinate -i dotenv -e .env.slack -- node dist/main.js slack --log --agent crewx_glm_dev",
43
43
  "dev": "dotenv -e .env.test -- nest start --watch -- --log",
44
44
  "dev:install": "ts-node src/main.ts --install --log",
45
45
  "debug": "dotenv -e .env.test -- nest start --debug --watch -- --log --protocol HTTP",