{
  "schemaVersion": "1.0",
  "item": {
    "slug": "browser-use-1-0-0",
    "name": "Browser Use 1.0.0",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Makforce/browser-use-1-0-0",
    "canonicalUrl": "https://clawhub.ai/Makforce/browser-use-1-0-0",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/browser-use-1-0-0",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-use-1-0-0",
    "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/browser-use-1-0-0"
    },
    "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-use-1-0-0",
    "agentPageUrl": "https://openagent3.xyz/skills/browser-use-1-0-0/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-use-1-0-0/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-use-1-0-0/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 Use",
        "body": "Browser Use provides cloud browsers and autonomous browser automation via API.\n\nDocs:\n\nOpen source library: https://docs.browser-use.com\nCloud API: https://docs.cloud.browser-use.com"
      },
      {
        "title": "Setup",
        "body": "API Key is read from clawdbot config at skills.entries.browser-use.apiKey.\n\nIf not configured, tell the user:\n\nTo use Browser Use, you need an API key. Get one at https://cloud.browser-use.com (new signups get $10 free credit). Then configure it:\nclawdbot config set skills.entries.browser-use.apiKey \"bu_your_key_here\"\n\nBase URL: https://api.browser-use.com/api/v2\n\nAll requests need header: X-Browser-Use-API-Key: <apiKey>"
      },
      {
        "title": "1. Browser Sessions (Primary)",
        "body": "Spin up cloud browsers for Clawdbot to control directly. Use profiles to persist logins and cookies."
      },
      {
        "title": "Create browser session",
        "body": "# With profile (recommended - keeps you logged in)\ncurl -X POST \"https://api.browser-use.com/api/v2/browsers\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"profileId\": \"<profile-uuid>\", \"timeout\": 60}'\n\n# Without profile (fresh browser)\ncurl -X POST \"https://api.browser-use.com/api/v2/browsers\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"timeout\": 60}'\n\nResponse:\n\n{\n  \"id\": \"session-uuid\",\n  \"cdpUrl\": \"https://<id>.cdp2.browser-use.com\",\n  \"liveUrl\": \"https://...\",\n  \"status\": \"active\"\n}"
      },
      {
        "title": "Connect Clawdbot to the browser",
        "body": "gateway config.patch '{\"browser\":{\"profiles\":{\"browseruse\":{\"cdpUrl\":\"<cdpUrl-from-response>\"}}}}'\n\nNow use the browser tool with profile=browseruse to control it."
      },
      {
        "title": "List/stop browser sessions",
        "body": "# List active sessions\ncurl \"https://api.browser-use.com/api/v2/browsers\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n# Get session status\ncurl \"https://api.browser-use.com/api/v2/browsers/<session-id>\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n# Stop session (unused time is refunded)\ncurl -X PATCH \"https://api.browser-use.com/api/v2/browsers/<session-id>\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\": \"stopped\"}'\n\nPricing: $0.06/hour (Pay As You Go) or $0.03/hour (Business). Max 4 hours per session. Billed per minute, refunded for unused time."
      },
      {
        "title": "2. Profiles",
        "body": "Profiles persist cookies and login state across browser sessions. Create one, log into your accounts in the browser, and reuse it.\n\n# List profiles\ncurl \"https://api.browser-use.com/api/v2/profiles\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n# Create profile\ncurl -X POST \"https://api.browser-use.com/api/v2/profiles\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"My Profile\"}'\n\n# Delete profile\ncurl -X DELETE \"https://api.browser-use.com/api/v2/profiles/<profile-id>\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\"\n\nTip: You can also sync cookies from your local Chrome using the Browser Use Chrome extension."
      },
      {
        "title": "3. Tasks (Subagent)",
        "body": "Run autonomous browser tasks - like a subagent that handles browser interactions for you. Give it a prompt and it completes the task.\n\nAlways use browser-use-llm - optimized for browser tasks, 3-5x faster than other models.\n\ncurl -X POST \"https://api.browser-use.com/api/v2/tasks\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"task\": \"Go to amazon.com and find the price of the MacBook Air M3\",\n    \"llm\": \"browser-use-llm\"\n  }'"
      },
      {
        "title": "Poll for completion",
        "body": "curl \"https://api.browser-use.com/api/v2/tasks/<task-id>\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\nResponse:\n\n{\n  \"status\": \"finished\",\n  \"output\": \"The MacBook Air M3 is priced at $1,099\",\n  \"isSuccess\": true,\n  \"cost\": \"0.02\"\n}\n\nStatus values: pending, running, finished, failed, stopped"
      },
      {
        "title": "Task options",
        "body": "OptionDescriptiontaskYour prompt (required)llmAlways use browser-use-llmstartUrlStarting pagemaxStepsMax actions (default 100)sessionIdReuse existing sessionprofileIdUse a profile for authflashModeEven faster executionvisionVisual understanding"
      },
      {
        "title": "Full API Reference",
        "body": "See references/api.md for all endpoints including Sessions, Files, Skills, and Skills Marketplace."
      }
    ],
    "body": "Browser Use\n\nBrowser Use provides cloud browsers and autonomous browser automation via API.\n\nDocs:\n\nOpen source library: https://docs.browser-use.com\nCloud API: https://docs.cloud.browser-use.com\nSetup\n\nAPI Key is read from clawdbot config at skills.entries.browser-use.apiKey.\n\nIf not configured, tell the user:\n\nTo use Browser Use, you need an API key. Get one at https://cloud.browser-use.com (new signups get $10 free credit). Then configure it:\n\nclawdbot config set skills.entries.browser-use.apiKey \"bu_your_key_here\"\n\n\nBase URL: https://api.browser-use.com/api/v2\n\nAll requests need header: X-Browser-Use-API-Key: <apiKey>\n\n1. Browser Sessions (Primary)\n\nSpin up cloud browsers for Clawdbot to control directly. Use profiles to persist logins and cookies.\n\nCreate browser session\n# With profile (recommended - keeps you logged in)\ncurl -X POST \"https://api.browser-use.com/api/v2/browsers\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"profileId\": \"<profile-uuid>\", \"timeout\": 60}'\n\n# Without profile (fresh browser)\ncurl -X POST \"https://api.browser-use.com/api/v2/browsers\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"timeout\": 60}'\n\n\nResponse:\n\n{\n  \"id\": \"session-uuid\",\n  \"cdpUrl\": \"https://<id>.cdp2.browser-use.com\",\n  \"liveUrl\": \"https://...\",\n  \"status\": \"active\"\n}\n\nConnect Clawdbot to the browser\ngateway config.patch '{\"browser\":{\"profiles\":{\"browseruse\":{\"cdpUrl\":\"<cdpUrl-from-response>\"}}}}'\n\n\nNow use the browser tool with profile=browseruse to control it.\n\nList/stop browser sessions\n# List active sessions\ncurl \"https://api.browser-use.com/api/v2/browsers\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n# Get session status\ncurl \"https://api.browser-use.com/api/v2/browsers/<session-id>\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n# Stop session (unused time is refunded)\ncurl -X PATCH \"https://api.browser-use.com/api/v2/browsers/<session-id>\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\": \"stopped\"}'\n\n\nPricing: $0.06/hour (Pay As You Go) or $0.03/hour (Business). Max 4 hours per session. Billed per minute, refunded for unused time.\n\n2. Profiles\n\nProfiles persist cookies and login state across browser sessions. Create one, log into your accounts in the browser, and reuse it.\n\n# List profiles\ncurl \"https://api.browser-use.com/api/v2/profiles\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n# Create profile\ncurl -X POST \"https://api.browser-use.com/api/v2/profiles\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"My Profile\"}'\n\n# Delete profile\ncurl -X DELETE \"https://api.browser-use.com/api/v2/profiles/<profile-id>\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n\nTip: You can also sync cookies from your local Chrome using the Browser Use Chrome extension.\n\n3. Tasks (Subagent)\n\nRun autonomous browser tasks - like a subagent that handles browser interactions for you. Give it a prompt and it completes the task.\n\nAlways use browser-use-llm - optimized for browser tasks, 3-5x faster than other models.\n\ncurl -X POST \"https://api.browser-use.com/api/v2/tasks\" \\\n  -H \"X-Browser-Use-API-Key: $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"task\": \"Go to amazon.com and find the price of the MacBook Air M3\",\n    \"llm\": \"browser-use-llm\"\n  }'\n\nPoll for completion\ncurl \"https://api.browser-use.com/api/v2/tasks/<task-id>\" -H \"X-Browser-Use-API-Key: $API_KEY\"\n\n\nResponse:\n\n{\n  \"status\": \"finished\",\n  \"output\": \"The MacBook Air M3 is priced at $1,099\",\n  \"isSuccess\": true,\n  \"cost\": \"0.02\"\n}\n\n\nStatus values: pending, running, finished, failed, stopped\n\nTask options\nOption\tDescription\ntask\tYour prompt (required)\nllm\tAlways use browser-use-llm\nstartUrl\tStarting page\nmaxSteps\tMax actions (default 100)\nsessionId\tReuse existing session\nprofileId\tUse a profile for auth\nflashMode\tEven faster execution\nvision\tVisual understanding\nFull API Reference\n\nSee references/api.md for all endpoints including Sessions, Files, Skills, and Skills Marketplace."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Makforce/browser-use-1-0-0",
    "publisherUrl": "https://clawhub.ai/Makforce/browser-use-1-0-0",
    "owner": "Makforce",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/browser-use-1-0-0",
    "downloadUrl": "https://openagent3.xyz/downloads/browser-use-1-0-0",
    "agentUrl": "https://openagent3.xyz/skills/browser-use-1-0-0/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-use-1-0-0/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-use-1-0-0/agent.md"
  }
}