{
  "schemaVersion": "1.0",
  "item": {
    "slug": "chrome-devtools",
    "name": "Chrome Devtools",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/podcasting101/chrome-devtools",
    "canonicalUrl": "https://clawhub.ai/podcasting101/chrome-devtools",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/chrome-devtools",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chrome-devtools",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "skill.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",
      "slug": "chrome-devtools",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T10:08:46.634Z",
      "expiresAt": "2026-05-08T10:08:46.634Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chrome-devtools",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chrome-devtools",
        "contentDisposition": "attachment; filename=\"chrome-devtools-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "chrome-devtools"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/chrome-devtools"
    },
    "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/chrome-devtools",
    "agentPageUrl": "https://openagent3.xyz/skills/chrome-devtools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chrome-devtools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chrome-devtools/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": "Core Concepts",
        "body": "Browser lifecycle: Browser starts automatically on first tool call using a persistent Chrome profile. Configure via CLI args in the MCP server configuration: npx chrome-devtools-mcp@latest --help.\n\nPage selection: Tools operate on the currently selected page. Use list_pages to see available pages, then select_page to switch context.\n\nElement interaction: Use take_snapshot to get page structure with element uids. Each element has a unique uid for interaction. If an element isn't found, take a fresh snapshot - the element may have been removed or the page changed."
      },
      {
        "title": "Before interacting with a page",
        "body": "Navigate: navigate_page or new_page\nWait: wait_for to ensure content is loaded if you know what you look for.\nSnapshot: take_snapshot to understand page structure\nInteract: Use element uids from snapshot for click, fill, etc."
      },
      {
        "title": "Efficient data retrieval",
        "body": "Use filePath parameter for large outputs (screenshots, snapshots, traces)\nUse pagination (pageIdx, pageSize) and filtering (types) to minimize data\nSet includeSnapshot: false on input actions unless you need updated page state"
      },
      {
        "title": "Tool selection",
        "body": "Automation/interaction: take_snapshot (text-based, faster, better for automation)\nVisual inspection: take_screenshot (when user needs to see visual state)\nAdditional details: evaluate_script for data not in accessibility tree"
      },
      {
        "title": "Parallel execution",
        "body": "You can send multiple tool calls in parallel, but maintain correct order: navigate → wait → snapshot → interact."
      },
      {
        "title": "Troubleshooting",
        "body": "If chrome-devtools-mcp is insufficient, guide users to use Chrome DevTools UI:\n\nhttps://developer.chrome.com/docs/devtools\nhttps://developer.chrome.com/docs/devtools/ai-assistance\n\nIf there are errors launching chrome-devtools-mcp or Chrome, refer to https://github.com/ChromeDevTools/chrome-devtools-mcp/blob/main/docs/troubleshooting.md."
      }
    ],
    "body": "Core Concepts\n\nBrowser lifecycle: Browser starts automatically on first tool call using a persistent Chrome profile. Configure via CLI args in the MCP server configuration: npx chrome-devtools-mcp@latest --help.\n\nPage selection: Tools operate on the currently selected page. Use list_pages to see available pages, then select_page to switch context.\n\nElement interaction: Use take_snapshot to get page structure with element uids. Each element has a unique uid for interaction. If an element isn't found, take a fresh snapshot - the element may have been removed or the page changed.\n\nWorkflow Patterns\nBefore interacting with a page\nNavigate: navigate_page or new_page\nWait: wait_for to ensure content is loaded if you know what you look for.\nSnapshot: take_snapshot to understand page structure\nInteract: Use element uids from snapshot for click, fill, etc.\nEfficient data retrieval\nUse filePath parameter for large outputs (screenshots, snapshots, traces)\nUse pagination (pageIdx, pageSize) and filtering (types) to minimize data\nSet includeSnapshot: false on input actions unless you need updated page state\nTool selection\nAutomation/interaction: take_snapshot (text-based, faster, better for automation)\nVisual inspection: take_screenshot (when user needs to see visual state)\nAdditional details: evaluate_script for data not in accessibility tree\nParallel execution\n\nYou can send multiple tool calls in parallel, but maintain correct order: navigate → wait → snapshot → interact.\n\nTroubleshooting\n\nIf chrome-devtools-mcp is insufficient, guide users to use Chrome DevTools UI:\n\nhttps://developer.chrome.com/docs/devtools\nhttps://developer.chrome.com/docs/devtools/ai-assistance\n\nIf there are errors launching chrome-devtools-mcp or Chrome, refer to https://github.com/ChromeDevTools/chrome-devtools-mcp/blob/main/docs/troubleshooting.md."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/podcasting101/chrome-devtools",
    "publisherUrl": "https://clawhub.ai/podcasting101/chrome-devtools",
    "owner": "podcasting101",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/chrome-devtools",
    "downloadUrl": "https://openagent3.xyz/downloads/chrome-devtools",
    "agentUrl": "https://openagent3.xyz/skills/chrome-devtools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chrome-devtools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chrome-devtools/agent.md"
  }
}