@agent-webui/ai-desk-daemon 1.0.29-beta2 → 1.0.29-beta3
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/bin/cli.js +1 -1
- package/package.json +11 -11
package/bin/cli.js
CHANGED
|
@@ -81,7 +81,7 @@ program
|
|
|
81
81
|
.option('--log', 'Follow daemon logs in foreground (Ctrl+C to stop daemon)')
|
|
82
82
|
.action(async (options) => {
|
|
83
83
|
try {
|
|
84
|
-
const mode = resolveRequestedMode(options);
|
|
84
|
+
const mode = resolveRequestedMode(options) || 'native';
|
|
85
85
|
const modeResult = configureRequestedMode(mode);
|
|
86
86
|
start();
|
|
87
87
|
if (mode === 'cli-anything' && modeResult?.runtimeInfo?.cliAnythingPath) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-webui/ai-desk-daemon",
|
|
3
|
-
"version": "1.0.29-
|
|
3
|
+
"version": "1.0.29-beta3",
|
|
4
4
|
"description": "AI Desk Daemon - CLI tool for managing the AI Desk daemon service",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"packages/*"
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"chalk": "^4.1.2"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@agent-webui/ai-desk-daemon-darwin-arm64": "1.0.29-
|
|
43
|
-
"@agent-webui/ai-desk-daemon-darwin-x64": "1.0.29-
|
|
44
|
-
"@agent-webui/ai-desk-daemon-linux-arm64": "1.0.29-
|
|
45
|
-
"@agent-webui/ai-desk-daemon-linux-x64": "1.0.29-
|
|
46
|
-
"@agent-webui/ai-desk-daemon-win32-x64": "1.0.29-
|
|
47
|
-
"@agent-webui/ai-desk-python-darwin-arm64": "1.0.29-
|
|
48
|
-
"@agent-webui/ai-desk-python-darwin-x64": "1.0.29-
|
|
49
|
-
"@agent-webui/ai-desk-python-linux-arm64": "1.0.29-
|
|
50
|
-
"@agent-webui/ai-desk-python-linux-x64": "1.0.29-
|
|
51
|
-
"@agent-webui/ai-desk-python-win32-x64": "1.0.29-
|
|
42
|
+
"@agent-webui/ai-desk-daemon-darwin-arm64": "1.0.29-beta3",
|
|
43
|
+
"@agent-webui/ai-desk-daemon-darwin-x64": "1.0.29-beta3",
|
|
44
|
+
"@agent-webui/ai-desk-daemon-linux-arm64": "1.0.29-beta3",
|
|
45
|
+
"@agent-webui/ai-desk-daemon-linux-x64": "1.0.29-beta3",
|
|
46
|
+
"@agent-webui/ai-desk-daemon-win32-x64": "1.0.29-beta3",
|
|
47
|
+
"@agent-webui/ai-desk-python-darwin-arm64": "1.0.29-beta3",
|
|
48
|
+
"@agent-webui/ai-desk-python-darwin-x64": "1.0.29-beta3",
|
|
49
|
+
"@agent-webui/ai-desk-python-linux-arm64": "1.0.29-beta3",
|
|
50
|
+
"@agent-webui/ai-desk-python-linux-x64": "1.0.29-beta3",
|
|
51
|
+
"@agent-webui/ai-desk-python-win32-x64": "1.0.29-beta3"
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|