@agent-webui/ai-desk-daemon 1.0.17 → 1.0.19

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/README.md CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  ```bash
26
26
  # 全局安装
27
- npm install -g @eden_qu/ai-desk-daemon
27
+ npm install -g @agent-webui/ai-desk-daemon
28
28
 
29
29
  # 启动 daemon
30
30
  aidesk start
@@ -33,6 +33,18 @@ aidesk start
33
33
  aidesk status
34
34
  ```
35
35
 
36
+ **⚠️ 如果遇到 E401 错误**:
37
+
38
+ 如果你看到类似 `401 Unauthorized - GET https://npm.pkg.github.com/@agent-webui%2fai-desk-daemon` 的错误,说明你的 npm 配置指向了 GitHub Packages。请运行:
39
+
40
+ ```bash
41
+ # 临时解决(仅本次安装)
42
+ npm install -g @agent-webui/ai-desk-daemon --registry=https://registry.npmjs.org/
43
+
44
+ # 永久解决(推荐)
45
+ npm config set @agent-webui:registry https://registry.npmjs.org/
46
+ ```
47
+
36
48
  **包含内容**:
37
49
  - ✅ AI Desk Daemon 后台服务
38
50
  - ✅ CLI 命令行管理工具
package/lib/platform.js CHANGED
@@ -5,7 +5,7 @@
5
5
  const os = require('os');
6
6
  const path = require('path');
7
7
 
8
- const VERSION = '1.0.17';
8
+ const VERSION = '1.0.19';
9
9
 
10
10
  /**
11
11
  * Detect current platform and architecture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-webui/ai-desk-daemon",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "AI Desk Daemon - CLI tool for managing the AI Desk daemon service",
5
5
  "main": "lib/daemon-manager.js",
6
6
  "bin": {
@@ -25,7 +25,8 @@
25
25
  "bin/",
26
26
  "lib/",
27
27
  "scripts/postinstall.js",
28
- "README.md"
28
+ "README.md",
29
+ ".npmrc"
29
30
  ],
30
31
  "dependencies": {
31
32
  "commander": "^11.0.0",