@crewx/cli 0.8.9-rc.8 → 0.8.9
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/dist/commands/agent.js +1 -1
- package/dist/commands/doctor.js +15 -9
- package/dist/commands/init.js +5 -5
- package/package.json +7 -7
package/dist/commands/agent.js
CHANGED
|
@@ -237,7 +237,7 @@ Examples:
|
|
|
237
237
|
crewx agent
|
|
238
238
|
crewx agent ls
|
|
239
239
|
crewx agent ls --role=PM
|
|
240
|
-
crewx agent ls --team="CrewX Core
|
|
240
|
+
crewx agent ls --team="CrewX Core Team"
|
|
241
241
|
crewx agent ls --provider=claude
|
|
242
242
|
crewx agent ls --role=PM --provider=claude
|
|
243
243
|
crewx agent ls --role=PM,general
|
package/dist/commands/doctor.js
CHANGED
|
@@ -100,20 +100,26 @@ function checkLogsDir() {
|
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
102
|
* Check CLI provider availability.
|
|
103
|
+
* Providers are checked in PROVIDER_ORDER: codex → claude → opencode → antigravity → copilot.
|
|
103
104
|
*/
|
|
104
105
|
function checkCliProviders() {
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
106
|
+
// Map each provider (in PROVIDER_ORDER) to its CLI command and install hint.
|
|
107
|
+
const providerInfo = {
|
|
108
|
+
codex: { cmd: 'codex', install: 'npm install -g @openai/codex' },
|
|
109
|
+
claude: { cmd: 'claude', install: 'npm install -g @anthropic-ai/claude-code' },
|
|
110
|
+
opencode: { cmd: 'opencode', install: 'npm install -g opencode' },
|
|
111
|
+
antigravity: { cmd: 'antigravity', install: 'npm install -g antigravity' },
|
|
112
|
+
copilot: { cmd: 'gh', install: 'brew install gh # or visit cli.github.com' },
|
|
113
|
+
};
|
|
114
|
+
return sdk_1.PROVIDER_ORDER.map(provider => {
|
|
115
|
+
const info = providerInfo[provider];
|
|
116
|
+
const displayName = provider === 'copilot' ? 'copilot (gh)' : provider;
|
|
117
|
+
const available = isCommandAvailable(info.cmd);
|
|
112
118
|
return {
|
|
113
|
-
name: `${
|
|
119
|
+
name: `${displayName.toUpperCase()} CLI`,
|
|
114
120
|
status: available ? 'success' : 'warning',
|
|
115
121
|
message: available ? 'Installed and available' : 'Not installed or not on PATH',
|
|
116
|
-
details: available ? undefined : `Install: ${
|
|
122
|
+
details: available ? undefined : `Install: ${info.install}`,
|
|
117
123
|
};
|
|
118
124
|
});
|
|
119
125
|
}
|
package/dist/commands/init.js
CHANGED
|
@@ -105,7 +105,7 @@ const DEFAULT_AGENTS = [
|
|
|
105
105
|
team: 'core',
|
|
106
106
|
provider: 'acp/claude',
|
|
107
107
|
working_directory: './',
|
|
108
|
-
description: '
|
|
108
|
+
description: 'Owns requirements analysis, design, and work breakdown',
|
|
109
109
|
options: {
|
|
110
110
|
query: { effort: 'high' },
|
|
111
111
|
execute: { effort: 'high', mode: 'bypassPermissions' },
|
|
@@ -122,7 +122,7 @@ const DEFAULT_AGENTS = [
|
|
|
122
122
|
team: 'core',
|
|
123
123
|
provider: 'acp/claude',
|
|
124
124
|
working_directory: './',
|
|
125
|
-
description: '
|
|
125
|
+
description: 'Implements code changes and tests',
|
|
126
126
|
options: {
|
|
127
127
|
query: { effort: 'high' },
|
|
128
128
|
execute: { effort: 'high', mode: 'bypassPermissions' },
|
|
@@ -139,7 +139,7 @@ const DEFAULT_AGENTS = [
|
|
|
139
139
|
team: 'core',
|
|
140
140
|
provider: 'acp/claude',
|
|
141
141
|
working_directory: './',
|
|
142
|
-
description: '
|
|
142
|
+
description: 'Reviews code quality, security, and readability',
|
|
143
143
|
options: {
|
|
144
144
|
query: { effort: 'high' },
|
|
145
145
|
execute: { effort: 'high', mode: 'bypassPermissions' },
|
|
@@ -158,7 +158,7 @@ notation:
|
|
|
158
158
|
auto: "N% auto — L1 progress auto-calculated as weighted average of children"
|
|
159
159
|
---
|
|
160
160
|
|
|
161
|
-
#
|
|
161
|
+
# Goal Title
|
|
162
162
|
|
|
163
163
|
## Period
|
|
164
164
|
- Start: YYYY-MM-DD
|
|
@@ -166,7 +166,7 @@ notation:
|
|
|
166
166
|
- Status: active
|
|
167
167
|
|
|
168
168
|
## Objective
|
|
169
|
-
|
|
169
|
+
Describe the goal...
|
|
170
170
|
|
|
171
171
|
## Key Results
|
|
172
172
|
- [ ] KR1:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewx/cli",
|
|
3
|
-
"version": "0.8.9
|
|
3
|
+
"version": "0.8.9",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.19.0"
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"@crewx/adapter-slack": "0.1.4",
|
|
25
25
|
"better-sqlite3": "*",
|
|
26
26
|
"isomorphic-git": "1.37.1",
|
|
27
|
-
"@crewx/sdk": "0.8.9
|
|
27
|
+
"@crewx/sdk": "0.8.9",
|
|
28
28
|
"@crewx/memory": "0.1.23",
|
|
29
|
-
"@crewx/search": "0.1.10
|
|
29
|
+
"@crewx/search": "0.1.10",
|
|
30
|
+
"@crewx/doc": "0.1.9",
|
|
30
31
|
"@crewx/wbs": "0.1.10",
|
|
31
|
-
"@crewx/doc": "0.1.9-rc.6",
|
|
32
32
|
"@crewx/cron": "0.1.10",
|
|
33
|
-
"@crewx/skill": "0.1.20",
|
|
34
33
|
"@crewx/workflow": "0.3.22",
|
|
34
|
+
"@crewx/skill": "0.1.20",
|
|
35
35
|
"@crewx/chromex": "0.1.0",
|
|
36
|
-
"@crewx/
|
|
37
|
-
"@crewx/
|
|
36
|
+
"@crewx/wi": "0.1.10",
|
|
37
|
+
"@crewx/shared": "0.0.6"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/better-sqlite3": "*",
|