{
  "schemaVersion": "1.0",
  "item": {
    "slug": "browser-vps-setup-skill",
    "name": "Browser Vps Setup Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/osipov-anton/browser-vps-setup-skill",
    "canonicalUrl": "https://clawhub.ai/osipov-anton/browser-vps-setup-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/browser-vps-setup-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-vps-setup-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/browser-vps-setup-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/browser-vps-setup-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Browser on VPS — Setup",
        "body": "Set up Chrome on a Linux VPS so:\n\nThe agent can control it (open pages, click, fill forms, take screenshots) via OpenClaw browser tool\nThe user can watch and interact via noVNC in their local browser (over SSH tunnel)\nOptionally: all traffic routes through an authenticated HTTP proxy (for anti-captcha)"
      },
      {
        "title": "Step 1: Install dependencies",
        "body": "apt-get install -y xvfb x11vnc novnc\n\n# Install real Google Chrome (NOT snap — snap breaks automation)\nwget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/chrome.deb\napt-get install -y /tmp/chrome.deb || apt --fix-broken install -y"
      },
      {
        "title": "Step 2: Start the browser stack",
        "body": "# Clean stale locks\nrm -f /tmp/.X99-lock ~/.openclaw/browser/openclaw/user-data/SingletonLock 2>/dev/null\n\n# Virtual display\nXvfb :99 -screen 0 1280x800x24 &\nsleep 2\n\n# VNC server (localhost only, no password)\nx11vnc -display :99 -forever -nopw -localhost -quiet &\nsleep 1\n\n# noVNC web UI on port 6080 (localhost only)\nwebsockify --web /usr/share/novnc 6080 localhost:5900 &\nsleep 1\n\n# Chrome with CDP on port 18800\nDISPLAY=:99 google-chrome-stable --no-sandbox --disable-gpu \\\n  --remote-debugging-port=18800 \\\n  --user-data-dir=~/.openclaw/browser/openclaw/user-data \\\n  --window-size=1280,800 &"
      },
      {
        "title": "Step 3: Connect visually from your laptop",
        "body": "ssh -L 6080:localhost:6080 root@YOUR_VPS_IP\n\nThen open http://localhost:6080/vnc.html → click Connect.\n\nYou'll see the Chrome window live. You and the agent control it simultaneously."
      },
      {
        "title": "Step 4: Configure OpenClaw",
        "body": "In ~/.openclaw/openclaw.json add:\n\n{\n  \"browser\": {\n    \"enabled\": true,\n    \"executablePath\": \"/usr/bin/google-chrome-stable\",\n    \"attachOnly\": true,\n    \"headless\": false,\n    \"noSandbox\": true\n  }\n}\n\nThen restart: openclaw gateway restart\n\nThe agent can now use the browser tool to navigate, click, type, screenshot, etc."
      },
      {
        "title": "Step 5 (Optional): Authenticated HTTP proxy",
        "body": "If you need a proxy (e.g. mobile proxy for anti-captcha), Chrome can't pass username/password in --proxy-server. Solution: run a local Python bridge that forwards with auth injected automatically.\n\npython3 -c \"\nimport socket, threading, base64, select\n\nUPSTREAM_HOST = 'PROXY_IP'      # e.g. 87.236.22.82\nUPSTREAM_PORT = PROXY_PORT       # e.g. 19423\nUSERNAME = 'PROXY_USER'\nPASSWORD = 'PROXY_PASS'\nLOCAL_PORT = 18801\n\nauth = base64.b64encode(f'{USERNAME}:{PASSWORD}'.encode()).decode()\n\ndef handle(client):\n    try:\n        data = b''\n        while b'\\r\\n\\r\\n' not in data:\n            data += client.recv(4096)\n        upstream = socket.create_connection((UPSTREAM_HOST, UPSTREAM_PORT))\n        if b'Proxy-Authorization' not in data:\n            data = data.replace(b'\\r\\n\\r\\n', f'\\r\\nProxy-Authorization: Basic {auth}\\r\\n\\r\\n'.encode(), 1)\n        upstream.sendall(data)\n        while True:\n            r, _, _ = select.select([client, upstream], [], [], 30)\n            if not r: break\n            for s in r:\n                d = s.recv(65536)\n                if not d: return\n                (upstream if s is client else client).sendall(d)\n    except: pass\n    finally:\n        try: client.close()\n        except: pass\n        try: upstream.close()\n        except: pass\n\nsrv = socket.socket()\nsrv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\nsrv.bind(('127.0.0.1', LOCAL_PORT))\nsrv.listen(50)\nprint('Local proxy on 127.0.0.1:18801')\nwhile True:\n    c, _ = srv.accept()\n    threading.Thread(target=handle, args=(c,), daemon=True).start()\n\" &\n\nThen restart Chrome with proxy:\n\npkill -9 chrome\nrm -f ~/.openclaw/browser/openclaw/user-data/SingletonLock\nDISPLAY=:99 google-chrome-stable --no-sandbox --disable-gpu \\\n  --remote-debugging-port=18800 \\\n  --user-data-dir=~/.openclaw/browser/openclaw/user-data \\\n  --window-size=1280,800 \\\n  --proxy-server=\"http://127.0.0.1:18801\" &\n\nVerify: ask the agent to open https://api.ipify.org — it should show the proxy IP, not the VPS IP."
      },
      {
        "title": "Firewall (recommended)",
        "body": "ufw default deny incoming\nufw default allow outgoing\nufw allow 22/tcp\nufw allow 80/tcp\nufw allow 443/tcp\nufw --force enable\n\nnoVNC (6080), VNC (5900), and CDP (18800) are all localhost-only — never exposed publicly."
      },
      {
        "title": "After reboot",
        "body": "All processes (Xvfb, x11vnc, websockify, Chrome) must be restarted. Ask the agent:\n\n\"Start the browser stack on the VPS\"\n\nThe agent should run Step 2 commands from this skill."
      }
    ],
    "body": "Browser on VPS — Setup\n\nSet up Chrome on a Linux VPS so:\n\nThe agent can control it (open pages, click, fill forms, take screenshots) via OpenClaw browser tool\nThe user can watch and interact via noVNC in their local browser (over SSH tunnel)\nOptionally: all traffic routes through an authenticated HTTP proxy (for anti-captcha)\nStep 1: Install dependencies\napt-get install -y xvfb x11vnc novnc\n\n# Install real Google Chrome (NOT snap — snap breaks automation)\nwget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/chrome.deb\napt-get install -y /tmp/chrome.deb || apt --fix-broken install -y\n\nStep 2: Start the browser stack\n# Clean stale locks\nrm -f /tmp/.X99-lock ~/.openclaw/browser/openclaw/user-data/SingletonLock 2>/dev/null\n\n# Virtual display\nXvfb :99 -screen 0 1280x800x24 &\nsleep 2\n\n# VNC server (localhost only, no password)\nx11vnc -display :99 -forever -nopw -localhost -quiet &\nsleep 1\n\n# noVNC web UI on port 6080 (localhost only)\nwebsockify --web /usr/share/novnc 6080 localhost:5900 &\nsleep 1\n\n# Chrome with CDP on port 18800\nDISPLAY=:99 google-chrome-stable --no-sandbox --disable-gpu \\\n  --remote-debugging-port=18800 \\\n  --user-data-dir=~/.openclaw/browser/openclaw/user-data \\\n  --window-size=1280,800 &\n\nStep 3: Connect visually from your laptop\nssh -L 6080:localhost:6080 root@YOUR_VPS_IP\n\n\nThen open http://localhost:6080/vnc.html → click Connect.\n\nYou'll see the Chrome window live. You and the agent control it simultaneously.\n\nStep 4: Configure OpenClaw\n\nIn ~/.openclaw/openclaw.json add:\n\n{\n  \"browser\": {\n    \"enabled\": true,\n    \"executablePath\": \"/usr/bin/google-chrome-stable\",\n    \"attachOnly\": true,\n    \"headless\": false,\n    \"noSandbox\": true\n  }\n}\n\n\nThen restart: openclaw gateway restart\n\nThe agent can now use the browser tool to navigate, click, type, screenshot, etc.\n\nStep 5 (Optional): Authenticated HTTP proxy\n\nIf you need a proxy (e.g. mobile proxy for anti-captcha), Chrome can't pass username/password in --proxy-server. Solution: run a local Python bridge that forwards with auth injected automatically.\n\npython3 -c \"\nimport socket, threading, base64, select\n\nUPSTREAM_HOST = 'PROXY_IP'      # e.g. 87.236.22.82\nUPSTREAM_PORT = PROXY_PORT       # e.g. 19423\nUSERNAME = 'PROXY_USER'\nPASSWORD = 'PROXY_PASS'\nLOCAL_PORT = 18801\n\nauth = base64.b64encode(f'{USERNAME}:{PASSWORD}'.encode()).decode()\n\ndef handle(client):\n    try:\n        data = b''\n        while b'\\r\\n\\r\\n' not in data:\n            data += client.recv(4096)\n        upstream = socket.create_connection((UPSTREAM_HOST, UPSTREAM_PORT))\n        if b'Proxy-Authorization' not in data:\n            data = data.replace(b'\\r\\n\\r\\n', f'\\r\\nProxy-Authorization: Basic {auth}\\r\\n\\r\\n'.encode(), 1)\n        upstream.sendall(data)\n        while True:\n            r, _, _ = select.select([client, upstream], [], [], 30)\n            if not r: break\n            for s in r:\n                d = s.recv(65536)\n                if not d: return\n                (upstream if s is client else client).sendall(d)\n    except: pass\n    finally:\n        try: client.close()\n        except: pass\n        try: upstream.close()\n        except: pass\n\nsrv = socket.socket()\nsrv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\nsrv.bind(('127.0.0.1', LOCAL_PORT))\nsrv.listen(50)\nprint('Local proxy on 127.0.0.1:18801')\nwhile True:\n    c, _ = srv.accept()\n    threading.Thread(target=handle, args=(c,), daemon=True).start()\n\" &\n\n\nThen restart Chrome with proxy:\n\npkill -9 chrome\nrm -f ~/.openclaw/browser/openclaw/user-data/SingletonLock\nDISPLAY=:99 google-chrome-stable --no-sandbox --disable-gpu \\\n  --remote-debugging-port=18800 \\\n  --user-data-dir=~/.openclaw/browser/openclaw/user-data \\\n  --window-size=1280,800 \\\n  --proxy-server=\"http://127.0.0.1:18801\" &\n\n\nVerify: ask the agent to open https://api.ipify.org — it should show the proxy IP, not the VPS IP.\n\nFirewall (recommended)\nufw default deny incoming\nufw default allow outgoing\nufw allow 22/tcp\nufw allow 80/tcp\nufw allow 443/tcp\nufw --force enable\n\n\nnoVNC (6080), VNC (5900), and CDP (18800) are all localhost-only — never exposed publicly.\n\nAfter reboot\n\nAll processes (Xvfb, x11vnc, websockify, Chrome) must be restarted. Ask the agent:\n\n\"Start the browser stack on the VPS\"\n\nThe agent should run Step 2 commands from this skill."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/osipov-anton/browser-vps-setup-skill",
    "publisherUrl": "https://clawhub.ai/osipov-anton/browser-vps-setup-skill",
    "owner": "osipov-anton",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/browser-vps-setup-skill",
    "agentUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-vps-setup-skill/agent.md"
  }
}