{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-browser-auto",
    "name": "OpenClaw浏览器自动化配置",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/HappyFee/openclaw-browser-auto",
    "canonicalUrl": "https://clawhub.ai/HappyFee/openclaw-browser-auto",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-browser-auto",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-browser-auto",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "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/openclaw-browser-auto"
    },
    "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/openclaw-browser-auto",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-browser-auto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-browser-auto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-browser-auto/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": "OpenClaw 浏览器自动化配置",
        "body": "配置OpenClaw连接远程Chrome/CDP浏览器进行自动化操作。"
      },
      {
        "title": "适用场景",
        "body": "连接远程服务器的Chrome浏览器\n使用Docker容器运行的无头浏览器\n连接browserless.io云服务"
      },
      {
        "title": "1. 启动CDP浏览器容器",
        "body": "推荐使用 chromedp/headless-shell（轻量且保持会话）：\n\ndocker run -d --name browser-auto -p 9222:9222 --shm-size=512m chromedp/headless-shell:latest\n\n验证CDP可用：\n\ncurl http://127.0.0.1:9222/json/version"
      },
      {
        "title": "2. 配置OpenClaw",
        "body": "在 ~/.openclaw/openclaw.json 中添加browser配置：\n\n{\n  \"browser\": {\n    \"enabled\": true,\n    \"defaultProfile\": \"remote-chrome\",\n    \"attachOnly\": true,\n    \"profiles\": {\n      \"remote-chrome\": {\n        \"cdpUrl\": \"http://127.0.0.1:9222\",\n        \"color\": \"#00AA00\"\n      }\n    }\n  }\n}"
      },
      {
        "title": "3. 重启Gateway",
        "body": "systemctl --user restart openclaw-gateway"
      },
      {
        "title": "4. 验证",
        "body": "openclaw browser status"
      },
      {
        "title": "关键配置项",
        "body": "配置项说明browser.enabled启用浏览器browser.defaultProfile默认使用的浏览器配置名browser.attachOnlytrue=不尝试启动本地浏览器，只连接远程profiles.<name>.cdpUrl远程CDP地址"
      },
      {
        "title": "Browserless.io（付费）",
        "body": "{\n  \"browser\": {\n    \"defaultProfile\": \"browserless\",\n    \"profiles\": {\n      \"browserless\": {\n        \"cdpUrl\": \"https://production-sfo.browserless.io?token=<API_KEY>\"\n      }\n    }\n  }\n}"
      },
      {
        "title": "常见问题",
        "body": "端口被占用 - 设置 attachOnly: true\n标签页丢失 - 使用 chromedp/headless-shell 而非 browserless/chrome\n环境变量不生效 - 需要修改systemd服务配置"
      }
    ],
    "body": "OpenClaw 浏览器自动化配置\n\n配置OpenClaw连接远程Chrome/CDP浏览器进行自动化操作。\n\n适用场景\n连接远程服务器的Chrome浏览器\n使用Docker容器运行的无头浏览器\n连接browserless.io云服务\n配置步骤\n1. 启动CDP浏览器容器\n\n推荐使用 chromedp/headless-shell（轻量且保持会话）：\n\ndocker run -d --name browser-auto -p 9222:9222 --shm-size=512m chromedp/headless-shell:latest\n\n\n验证CDP可用：\n\ncurl http://127.0.0.1:9222/json/version\n\n2. 配置OpenClaw\n\n在 ~/.openclaw/openclaw.json 中添加browser配置：\n\n{\n  \"browser\": {\n    \"enabled\": true,\n    \"defaultProfile\": \"remote-chrome\",\n    \"attachOnly\": true,\n    \"profiles\": {\n      \"remote-chrome\": {\n        \"cdpUrl\": \"http://127.0.0.1:9222\",\n        \"color\": \"#00AA00\"\n      }\n    }\n  }\n}\n\n3. 重启Gateway\nsystemctl --user restart openclaw-gateway\n\n4. 验证\nopenclaw browser status\n\n关键配置项\n配置项\t说明\nbrowser.enabled\t启用浏览器\nbrowser.defaultProfile\t默认使用的浏览器配置名\nbrowser.attachOnly\ttrue=不尝试启动本地浏览器，只连接远程\nprofiles.<name>.cdpUrl\t远程CDP地址\n云服务方案\nBrowserless.io（付费）\n{\n  \"browser\": {\n    \"defaultProfile\": \"browserless\",\n    \"profiles\": {\n      \"browserless\": {\n        \"cdpUrl\": \"https://production-sfo.browserless.io?token=<API_KEY>\"\n      }\n    }\n  }\n}\n\n常见问题\n端口被占用 - 设置 attachOnly: true\n标签页丢失 - 使用 chromedp/headless-shell 而非 browserless/chrome\n环境变量不生效 - 需要修改systemd服务配置"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/HappyFee/openclaw-browser-auto",
    "publisherUrl": "https://clawhub.ai/HappyFee/openclaw-browser-auto",
    "owner": "HappyFee",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-browser-auto",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-browser-auto",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-browser-auto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-browser-auto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-browser-auto/agent.md"
  }
}