{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claude-chrome",
    "name": "Claude Chrome",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dgriffin831/claude-chrome",
    "canonicalUrl": "https://clawhub.ai/dgriffin831/claude-chrome",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/claude-chrome",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-chrome",
    "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/claude-chrome"
    },
    "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/claude-chrome",
    "agentPageUrl": "https://openagent3.xyz/skills/claude-chrome/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-chrome/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-chrome/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": "Claude Chrome — Browser Automation via Claude Code",
        "body": "Use Claude Code's Chrome integration to browse the web, interact with pages, and automate browser tasks. This is an alternative to OpenClaw's built-in browser tools (Chrome Relay, OpenClaw profile)."
      },
      {
        "title": "Prerequisites",
        "body": "Claude Code installed on the node (e.g. /opt/homebrew/bin/claude)\nClaude Code Chrome extension installed and enabled in Chrome\nChrome running on the node"
      },
      {
        "title": "How It Works",
        "body": "Claude Code can connect to Chrome via its built-in browser extension (MCP server). When enabled, Claude Code gains browser tools — it can navigate pages, click elements, fill forms, read content, and more."
      },
      {
        "title": "Step 1: Check if Chrome Extension is Active",
        "body": "Look for the native host process to confirm the Chrome extension is running:\n\nnodes.run node=<your-node-id> command='[\"bash\", \"-lc\", \"pgrep -f \\\"claude --chrome-native-host\\\"\"]'\n\nIf this returns a PID, the Chrome extension bridge is active and ready."
      },
      {
        "title": "Step 2: Run Claude Code with Chrome",
        "body": "Use nodes.run with your node to execute browser tasks:\n\nnodes.run node=<your-node-id> commandTimeoutMs=120000 command='[\"bash\", \"-lc\", \"claude --dangerously-skip-permissions --chrome -p \\\"Go to example.com and read the headline\\\"\"]'\n\nFlags:\n\n--dangerously-skip-permissions — auto-approve all actions (required for automation)\n--chrome — enable Chrome browser integration\n-p / --print — non-interactive print mode (required for automated use)\nbash -lc — login shell to ensure PATH is loaded\n\nTimeout: See benchmarks below for guidance. Recommended defaults:\n\nSimple tasks (single page read): commandTimeoutMs=30000 (30 seconds)\nMedium complexity (multi-step navigation): commandTimeoutMs=120000 (2 minutes)\nComplex workflows (multiple pages + summarization): commandTimeoutMs=180000 (3 minutes)"
      },
      {
        "title": "Performance Benchmarks",
        "body": "Task TypeExampleDurationRecommended TimeoutSimpleRead button text on Google13s30s (30000ms)MediumWikipedia search + navigate + summarize76s2min (120000ms)ComplexMulti-page navigation + external links~90s+3min (180000ms)\n\nGateway timeout note: OpenClaw's gateway has a hardcoded 10-second connection timeout. Commands will error immediately but continue running in the background. Results arrive via system messages when complete."
      },
      {
        "title": "Limitations",
        "body": "Domain permissions: Claude Code's Chrome extension may require user approval for new domains (cannot be automated)\nGateway timeout: Initial connection times out at 10s, but commands continue running\nDesktop required: Only works on nodes with a desktop environment, Chrome, and the extension active"
      },
      {
        "title": "Tips",
        "body": "Always use --dangerously-skip-permissions for automated runs\nAlways use -p / --print for non-interactive output\nAlways use bash -lc for login shell (PATH loading)\nBe aggressive with timeouts - commands complete in background even after gateway timeout\nClaude Code can combine coding and browsing in a single session\nCheck the native host process before attempting browser tasks\nFor simple data scraping, consider web_fetch instead (faster, no domain permissions needed)"
      }
    ],
    "body": "Claude Chrome — Browser Automation via Claude Code\n\nUse Claude Code's Chrome integration to browse the web, interact with pages, and automate browser tasks. This is an alternative to OpenClaw's built-in browser tools (Chrome Relay, OpenClaw profile).\n\nPrerequisites\nClaude Code installed on the node (e.g. /opt/homebrew/bin/claude)\nClaude Code Chrome extension installed and enabled in Chrome\nChrome running on the node\nHow It Works\n\nClaude Code can connect to Chrome via its built-in browser extension (MCP server). When enabled, Claude Code gains browser tools — it can navigate pages, click elements, fill forms, read content, and more.\n\nStep 1: Check if Chrome Extension is Active\n\nLook for the native host process to confirm the Chrome extension is running:\n\nnodes.run node=<your-node-id> command='[\"bash\", \"-lc\", \"pgrep -f \\\"claude --chrome-native-host\\\"\"]'\n\n\nIf this returns a PID, the Chrome extension bridge is active and ready.\n\nStep 2: Run Claude Code with Chrome\n\nUse nodes.run with your node to execute browser tasks:\n\nnodes.run node=<your-node-id> commandTimeoutMs=120000 command='[\"bash\", \"-lc\", \"claude --dangerously-skip-permissions --chrome -p \\\"Go to example.com and read the headline\\\"\"]'\n\n\nFlags:\n\n--dangerously-skip-permissions — auto-approve all actions (required for automation)\n--chrome — enable Chrome browser integration\n-p / --print — non-interactive print mode (required for automated use)\nbash -lc — login shell to ensure PATH is loaded\n\nTimeout: See benchmarks below for guidance. Recommended defaults:\n\nSimple tasks (single page read): commandTimeoutMs=30000 (30 seconds)\nMedium complexity (multi-step navigation): commandTimeoutMs=120000 (2 minutes)\nComplex workflows (multiple pages + summarization): commandTimeoutMs=180000 (3 minutes)\nPerformance Benchmarks\nTask Type\tExample\tDuration\tRecommended Timeout\nSimple\tRead button text on Google\t13s\t30s (30000ms)\nMedium\tWikipedia search + navigate + summarize\t76s\t2min (120000ms)\nComplex\tMulti-page navigation + external links\t~90s+\t3min (180000ms)\n\nGateway timeout note: OpenClaw's gateway has a hardcoded 10-second connection timeout. Commands will error immediately but continue running in the background. Results arrive via system messages when complete.\n\nLimitations\nDomain permissions: Claude Code's Chrome extension may require user approval for new domains (cannot be automated)\nGateway timeout: Initial connection times out at 10s, but commands continue running\nDesktop required: Only works on nodes with a desktop environment, Chrome, and the extension active\nTips\nAlways use --dangerously-skip-permissions for automated runs\nAlways use -p / --print for non-interactive output\nAlways use bash -lc for login shell (PATH loading)\nBe aggressive with timeouts - commands complete in background even after gateway timeout\nClaude Code can combine coding and browsing in a single session\nCheck the native host process before attempting browser tasks\nFor simple data scraping, consider web_fetch instead (faster, no domain permissions needed)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dgriffin831/claude-chrome",
    "publisherUrl": "https://clawhub.ai/dgriffin831/claude-chrome",
    "owner": "dgriffin831",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claude-chrome",
    "downloadUrl": "https://openagent3.xyz/downloads/claude-chrome",
    "agentUrl": "https://openagent3.xyz/skills/claude-chrome/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-chrome/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-chrome/agent.md"
  }
}