{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bright-data",
    "name": "Bright Data",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/MeirKaD/bright-data",
    "canonicalUrl": "https://clawhub.ai/MeirKaD/bright-data",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bright-data",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bright-data",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/search.sh",
      "scripts/scrape.sh"
    ],
    "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/bright-data"
    },
    "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/bright-data",
    "agentPageUrl": "https://openagent3.xyz/skills/bright-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bright-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bright-data/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": "Bright Data - Web Scraping & Search",
        "body": "Direct API access to Bright Data's Web Unlocker and SERP APIs."
      },
      {
        "title": "Setup",
        "body": "1. Get your API Key:\nGet a key from Bright Data Dashboard.\n\n2. Create a Web Unlocker zone:\nCreate a zone at brightdata.com/cp by clicking \"Add\" (top-right), selecting \"Unlocker zone\".\n\n3. Set environment variables:\n\nexport BRIGHTDATA_API_KEY=\"your-api-key\"\nexport BRIGHTDATA_UNLOCKER_ZONE=\"your-zone-name\""
      },
      {
        "title": "Google Search",
        "body": "Search Google and get structured JSON results (title, link, description).\n\nbash scripts/search.sh \"query\" [cursor]\n\ncursor: Optional page number for pagination (0-indexed, default: 0)"
      },
      {
        "title": "Web Scraping",
        "body": "Scrape any webpage as markdown. Bypasses bot detection and CAPTCHA.\n\nbash scripts/scrape.sh \"url\""
      },
      {
        "title": "Search Results",
        "body": "Returns JSON with structured organic array:\n\n{\n  \"organic\": [\n    {\"link\": \"...\", \"title\": \"...\", \"description\": \"...\"}\n  ]\n}"
      },
      {
        "title": "Scrape Results",
        "body": "Returns clean markdown content from the webpage."
      }
    ],
    "body": "Bright Data - Web Scraping & Search\n\nDirect API access to Bright Data's Web Unlocker and SERP APIs.\n\nSetup\n\n1. Get your API Key: Get a key from Bright Data Dashboard.\n\n2. Create a Web Unlocker zone: Create a zone at brightdata.com/cp by clicking \"Add\" (top-right), selecting \"Unlocker zone\".\n\n3. Set environment variables:\n\nexport BRIGHTDATA_API_KEY=\"your-api-key\"\nexport BRIGHTDATA_UNLOCKER_ZONE=\"your-zone-name\"\n\nUsage\nGoogle Search\n\nSearch Google and get structured JSON results (title, link, description).\n\nbash scripts/search.sh \"query\" [cursor]\n\ncursor: Optional page number for pagination (0-indexed, default: 0)\nWeb Scraping\n\nScrape any webpage as markdown. Bypasses bot detection and CAPTCHA.\n\nbash scripts/scrape.sh \"url\"\n\nOutput Formats\nSearch Results\n\nReturns JSON with structured organic array:\n\n{\n  \"organic\": [\n    {\"link\": \"...\", \"title\": \"...\", \"description\": \"...\"}\n  ]\n}\n\nScrape Results\n\nReturns clean markdown content from the webpage."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MeirKaD/bright-data",
    "publisherUrl": "https://clawhub.ai/MeirKaD/bright-data",
    "owner": "MeirKaD",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bright-data",
    "downloadUrl": "https://openagent3.xyz/downloads/bright-data",
    "agentUrl": "https://openagent3.xyz/skills/bright-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bright-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bright-data/agent.md"
  }
}