arona-agent 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/pet.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arona-agent",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Terminal AI Agent with desktop pet Arona — eye-tracking pupils, voice cloning, Computer Use, TTS/STT, MCP.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/pet.ts CHANGED
@@ -16,7 +16,8 @@ const STDERR_RING_SIZE = 100; // 崩溃时 dump 的 stderr 最近行数
16
16
  // pet 桥是项目里唯一 require("electron") 的地方,这里用国内镜像在 import 之前手动预下载,
17
17
  // 避免首次启动时 CLI 卡在慢速的 GitHub Releases 下载上。
18
18
  const ELECTRON_DIR = join(PET_DIR, "..", "node_modules", "electron");
19
- const ELECTRON_MIRROR = "https://mirrors.tuna.tsinghua.edu.cn/npm/electron";
19
+ // 国内源实测:华为云 mirrors.huaweicloud.com/electron/ 可用(v<版本>/*.zip → 200);npmmirror 亦可。
20
+ const ELECTRON_MIRROR = "https://mirrors.huaweicloud.com/electron/";
20
21
 
21
22
  // --verbose 调试日志:原样转发 Electron stdout/stderr、spawn 参数、协议消息,
22
23
  // 用于锁定 Windows 白屏等"进程活着但无画面"类问题(正常模式这些日志被静默/过滤)。