crewx 0.9.0-rc.14 → 0.9.0-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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crewx",
|
|
3
|
-
"version": "0.9.0-rc.
|
|
3
|
+
"version": "0.9.0-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": {
|
|
@@ -81,19 +81,19 @@
|
|
|
81
81
|
"yargs": "17.7.0",
|
|
82
82
|
"zod": "3.25.76",
|
|
83
83
|
"@crewx/chromex": "0.1.0",
|
|
84
|
-
"@crewx/cli": "0.9.0-rc.14",
|
|
85
84
|
"@crewx/cron": "0.1.10",
|
|
86
|
-
"@crewx/doc": "0.1.9",
|
|
87
85
|
"@crewx/dreaming": "0.1.0",
|
|
88
|
-
"@crewx/
|
|
86
|
+
"@crewx/doc": "0.1.9",
|
|
87
|
+
"@crewx/cli": "0.9.0-rc.16",
|
|
89
88
|
"@crewx/memory": "0.1.23",
|
|
89
|
+
"@crewx/knowledge-core": "0.1.17",
|
|
90
90
|
"@crewx/search": "0.1.10",
|
|
91
91
|
"@crewx/shared": "0.0.6",
|
|
92
|
-
"@crewx/sdk": "0.9.0-rc.
|
|
93
|
-
"@crewx/wbs": "0.1.10",
|
|
92
|
+
"@crewx/sdk": "0.9.0-rc.16",
|
|
94
93
|
"@crewx/skill": "0.1.20",
|
|
95
|
-
"@crewx/
|
|
96
|
-
"@crewx/
|
|
94
|
+
"@crewx/wbs": "0.1.10",
|
|
95
|
+
"@crewx/wi": "0.1.10-rc.36",
|
|
96
|
+
"@crewx/workflow": "0.3.22-rc.62"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
99
|
"@ccusage/codex": "0.0.1",
|
|
@@ -63,6 +63,7 @@ async function handleExecute(args) {
|
|
|
63
63
|
console.error(' --verbose Debug output mode');
|
|
64
64
|
console.error(' --config/-c <path> Config file path');
|
|
65
65
|
console.error(' --output-format <fmt> Output format (json|text|stream-json)');
|
|
66
|
+
console.error(' --out/-o <path> Save result to file (stdout suppressed)');
|
|
66
67
|
console.error(' --effort <level> Model effort (high|medium|low)');
|
|
67
68
|
console.error(' -f/--prompt-file <path> Read task body from file');
|
|
68
69
|
console.error(' --var key=value Template variable (repeatable)');
|
|
@@ -63,6 +63,7 @@ async function handleQuery(args) {
|
|
|
63
63
|
console.error(' --verbose Debug output mode');
|
|
64
64
|
console.error(' --config/-c <path> Config file path');
|
|
65
65
|
console.error(' --output-format <fmt> Output format (json|text|stream-json)');
|
|
66
|
+
console.error(' --out/-o <path> Save result to file (stdout suppressed)');
|
|
66
67
|
console.error(' --effort <level> Model effort (high|medium|low)');
|
|
67
68
|
console.error(' -f/--prompt-file <path> Read prompt body from file');
|
|
68
69
|
console.error(' --var key=value Template variable (repeatable)');
|
|
@@ -262,6 +262,7 @@ Query / Execute:
|
|
|
262
262
|
--verbose Debug output mode (default: raw response only)
|
|
263
263
|
--config/-c <path> Config file path (default: CREWX_CONFIG or crewx.yaml)
|
|
264
264
|
--output-format <fmt> Output format (json|text|stream-json)
|
|
265
|
+
--out/-o <path> Save result to file (stdout suppressed)
|
|
265
266
|
--effort <level> Model effort (high|medium|low)
|
|
266
267
|
-f/--prompt-file <path> Read task body from file (bypasses argv length limits)
|
|
267
268
|
--var key=value Template variable (repeatable). Accessible as {{key}} in agent prompt.
|