@agent-webui/ai-desk-daemon 1.0.18 → 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 +13 -1
- package/lib/platform.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
26
|
# 全局安装
|
|
27
|
-
npm install -g @
|
|
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