myagent-ai 1.16.19 → 1.17.0
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/core/deps_checker.py +4 -0
- package/core/vnc_manager.py +740 -0
- package/package.json +1 -1
- package/skills/chromedev_mcp.py +143 -24
- package/web/api_server.py +276 -7
- package/web/ui/chat/chat.js +1 -1
- package/web/ui/chat/chat_container.html +5 -1
- package/web/ui/chat/chat_main.js +133 -7
- package/web/ui/chat/flow_engine.js +9 -2
package/core/deps_checker.py
CHANGED
|
@@ -110,6 +110,10 @@ DEPENDENCIES: List[DepInfo] = [
|
|
|
110
110
|
note="鼠标/键盘控制 (~500KB)"),
|
|
111
111
|
DepInfo("pygetwindow", "pygetwindow", "0.0.9", "gui", "windows_macos",
|
|
112
112
|
note="窗口管理 (仅 Windows/macOS)"),
|
|
113
|
+
|
|
114
|
+
# ── 远程桌面 (VNC) [v1.17.0] ──
|
|
115
|
+
# VNC 依赖通过 apt 安装 (xvfb, x11vnc),websockify 通过 pip 安装
|
|
116
|
+
# 实际检测和安装在 VNCManager.ensure_dependencies() 中完成
|
|
113
117
|
]
|
|
114
118
|
|
|
115
119
|
|