一键导入
vnc
Use start-vnc to run a virtual desktop with noVNC — share your screen over the internet so the user can watch browser activity in real time.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use start-vnc to run a virtual desktop with noVNC — share your screen over the internet so the user can watch browser activity in real time.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use Chrome Lite MCP to read and interact with web apps (Gmail, Discord, Zalo, Messenger, Slack), then push messages to am-server for persistent storage and querying.
Use wormhole CLI to expose local dev servers to the internet via HTTPS tunnel — for sharing previews, testing webhooks, and mobile testing.
Use agent-browser CLI to interact with web pages — navigate, click, fill forms, take screenshots, inspect accessibility tree, and verify UI on a headless server.
基于 SOC 职业分类
| name | vnc |
| description | Use start-vnc to run a virtual desktop with noVNC — share your screen over the internet so the user can watch browser activity in real time. |
start-vnc runs a virtual desktop (Xvfb + Fluxbox + x11vnc + noVNC) that the user can view in their browser. Use it when the user wants to see what a browser or GUI app is doing in real time.
# Start the virtual desktop (default 1280x800)
start-vnc
# Start with custom resolution
start-vnc 1920x1080
# Check if running
start-vnc
# Stop everything
start-vnc --stop
After starting VNC, expose it so the user can view from any device:
# Share over internet
wormhole http 6080
# Tell the user to open: <wormhole-url>/vnc.html
The user opens the URL in their browser and sees a live desktop — like screen sharing.
Apps must target display :99 to appear on the virtual desktop:
# Launch Chromium
DISPLAY=:99 chromium --no-sandbox http://localhost:3000 &
# Launch Chromium with specific window size
DISPLAY=:99 chromium --no-sandbox --window-size=1280,800 http://localhost:3000 &
# Launch Firefox (if installed)
DISPLAY=:99 firefox http://localhost:3000 &
# Open xterm for debugging
DISPLAY=:99 xterm &
# 1. Start the dev server
cd /workspace/my-app
npm run dev &
# 2. Start the virtual desktop
start-vnc
# 3. Open the app in a browser on the virtual desktop
DISPLAY=:99 chromium --no-sandbox http://localhost:3000 &
# 4. Share with the user
wormhole http 6080
# → Give the user the URL + /vnc.html
Now the user sees the app live in their browser. Any changes (hot reload, navigation, interactions) are visible in real time.
# 1. Start VNC
start-vnc
# 2. Run Playwright tests with headed browser on the virtual display
DISPLAY=:99 npx playwright test --headed
# 3. User watches tests run via noVNC
| Service | Port | Protocol |
|---|---|---|
| noVNC (web viewer) | 6080 | HTTP |
| VNC server | 5900 | VNC |
:99 — always use DISPLAY=:99 when launching GUI appswormhole http 6080 for internet accessstart-vnc --stop && start-vnc 1920x1080