{
  "schemaVersion": "1.0",
  "item": {
    "slug": "next-browser",
    "name": "Nextbrowser",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/highxshell/next-browser",
    "canonicalUrl": "https://clawhub.ai/highxshell/next-browser",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/next-browser",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=next-browser",
    "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/next-browser"
    },
    "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/next-browser",
    "agentPageUrl": "https://openagent3.xyz/skills/next-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/next-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/next-browser/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": "Nextbrowser",
        "body": "Nextbrowser provides cloud browsers and autonomous browser automation via API.\n\nDocs:\n\nCloud API: https://docs.nextbrowser.com/getting-started"
      },
      {
        "title": "Setup",
        "body": "API Key is read from openclaw config at skills.entries.next-browser.apiKey.\n\nIf not configured, tell the user:\n\nTo use Nextbrowser, you need an API key. Get one at https://app.nextbrowser.com/user-settings (new signups get 2000 free credits). Then configure it:\nopenclaw config set skills.entries.next-browser.apiKey \"YOUR_API_KEY\"\n\nImportant: Nextbrowser API keys can have various formats and prefixes.\nDo NOT validate the key format yourself - simply use whatever key the user provides. If the key is invalid, the API will return an authentication error, and only then should you ask the user to verify their key.\n\nBase URL: https://app.nextbrowser.com/api/v1\n\nAll requests need header: Authorization: x-api-key <apiKey>"
      },
      {
        "title": "1. Credentials Manager",
        "body": "The Credentials Manager securely stores and reuses authentication data across browser runs and autonomous tasks.\n\n# List credentials\ncurl \"https://app.nextbrowser.com/api/v1/users/credentials\" -H \"Authorization: x-api-key $API_KEY\""
      },
      {
        "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://app.nextbrowser.com/api/v1/browser/profiles\" -H \"Authorization: x-api-key $API_KEY\"\n\n# Create browser profile\ncurl -X POST \"https://app.nextbrowser.com/api/v1/browser/profiles\" \\\n  -H \"Authorization: x-api-key $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"<profile-name>\", \"browser_settings\": {\"os_type\": \"<os-type>\", \"browser_type\": \"chrome\"},\n   \"proxy_settings\":{\"protocol\":\"<http|https|socks5>\",\"country\":\"<iso-2-country-code>\",\"mode\":\"built-in\"},\n   \"credentials\": [\"<credential-id>\"]}'\n\n# Delete profile\ncurl -X DELETE \"https://app.nextbrowser.com/api/v1/browser/profiles/<profile-id>\" \\\n  -H \"Authorization: x-api-key $API_KEY\""
      },
      {
        "title": "3. Locations",
        "body": "The Locations endpoints provide available geolocation metadata for proxy and browser configuration. Use them to dynamically discover supported countries, regions, cities, and ISPs before creating profiles or running tasks under specific network conditions.\n\n# List Countries\ncurl \"https://app.nextbrowser.com/api/v1/location/countries?\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<iso2-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n# List Regions\ncurl \"https://app.nextbrowser.com/api/v1/location/regions?\\\ncountry__code=<iso2-country>&\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<region-code>&\\\ncity__code=<city-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n# List Cities\ncurl \"https://app.nextbrowser.com/api/v1/location/cities?\\\ncountry__code=<iso2-country>&\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<city-code>&\\\nregion__code=<region-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n# List ISPs\ncurl \"https://app.nextbrowser.com/api/v1/location/isps?\\\ncountry__code=<iso2-country>&\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<isp-code>&\\\nregion__code=<region-code>&\\\ncity__code=<city-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\""
      },
      {
        "title": "4. 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 fast mode - optimized for browser tasks, 3-5x faster than other models.\nAlways use true for skip_plan_approval - optimized for automated tasks, skips the approval and improve performance.\n\ncurl -X POST \"https://app.nextbrowser.com/api/v1/chat/tasks\" \\\n  -H \"Authorization: x-api-key $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"task_description\": \"'\"\\\nGo to Reddit.com account, check if the account is logged in (if not, use credentials stored). \\\nFind 10 relevant posts on the topic of AI Agents, upvote 8 of them and post 3 witty-sounding comments \\\nthat a cynical and funny Reddit user would post. Ensure that the comment is posted, ask for approval \\\nif you are not sure whether such comment is okay. By the end, you should have at least 10 relevant posts \\\nviewed, 8 upvotes, and 3 comments.\"\\\n\"'\",\n    \"mode\": \"fast\",\n    \"profile_id\": \"<profile-id>\",\n    \"skip_plan_approval\": true,\n    \"send_email_notification\": false\n  }'"
      },
      {
        "title": "Endpoint: Stop chat session and task",
        "body": "The chat-session-id is returned in the response of - POST /api/v1/chat/tasks\n\ncurl -X PUT \"https://app.nextbrowser.com/api/v1/chat/sessions/<chat-session-id>/stop\" \\\n  -H \"Authorization: x-api-key $API_KEY\""
      },
      {
        "title": "Endpoint: Poll for completion",
        "body": "curl \"https://app.nextbrowser.com/api/v1/chat/tasks/<task-id>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\ncurl \"https://app.nextbrowser.com/api/v1/chat/tasks/<task-id>?from_step=3\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\nQuery params (optional):\n\nfrom_step: integer >= 1. First step index to return. Defaults to 1 if missing/invalid. Use this parameter to poll only new steps."
      },
      {
        "title": "Response",
        "body": "{\n  \"success\": true,\n  \"payload\": {\n    \"status\": \"finished\",\n    \"output\": \"Task completed. 10 relevant posts are viewed, 8 upvotes are done and 3 comments posted.\",\n    \"isSuccess\": true,\n    \"steps\": [\n      {\n        \"created_at\": \"2025-01-01T10:00:00Z\",\n        \"finished_at\": \"2025-01-01T10:00:05Z\",\n        \"description\": \"Opened Reddit search page\",\n        \"status\": \"completed\",\n        \"step_number\": 1\n      }\n      // ... more steps starting from from_step\n    ],\n    \"total_steps\": 5\n  },\n  \"errors\": {},\n  \"description\": \"Task retrieved successfully\"\n}"
      },
      {
        "title": "Field semantics",
        "body": "status: high-level task status: \"processing\" | \"finished\" | \"failed\".\noutput: final task output (if available).\nisSuccess: true if task finished successfully, otherwise false.\nsteps: list of task steps starting from from_step (or from 1 by default).\nstep_number: sequential number of the step within the task, always starting at 1 in this array.\ntotal_steps: total number of steps the task has, independent of from_step."
      },
      {
        "title": "Task options",
        "body": "OptionDescriptiontask_descriptionYour prompt (required)modeAlways use fastprofile_idUse a profile for authskip_plan_approvalAlways use truesend_email_notificationIf true, a completion email will be sent for the task."
      },
      {
        "title": "Full API Reference",
        "body": "See references/api.md for all endpoints including Sessions, Files, Skills, and Skills Marketplace."
      }
    ],
    "body": "Nextbrowser\n\nNextbrowser provides cloud browsers and autonomous browser automation via API.\n\nDocs:\n\nCloud API: https://docs.nextbrowser.com/getting-started\nSetup\n\nAPI Key is read from openclaw config at skills.entries.next-browser.apiKey.\n\nIf not configured, tell the user:\n\nTo use Nextbrowser, you need an API key. Get one at https://app.nextbrowser.com/user-settings (new signups get 2000 free credits). Then configure it:\n\nopenclaw config set skills.entries.next-browser.apiKey \"YOUR_API_KEY\"\n\n\nImportant: Nextbrowser API keys can have various formats and prefixes. Do NOT validate the key format yourself - simply use whatever key the user provides. If the key is invalid, the API will return an authentication error, and only then should you ask the user to verify their key.\n\nBase URL: https://app.nextbrowser.com/api/v1\n\nAll requests need header: Authorization: x-api-key <apiKey>\n\n1. Credentials Manager\n\nThe Credentials Manager securely stores and reuses authentication data across browser runs and autonomous tasks.\n\n# List credentials\ncurl \"https://app.nextbrowser.com/api/v1/users/credentials\" -H \"Authorization: x-api-key $API_KEY\"\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://app.nextbrowser.com/api/v1/browser/profiles\" -H \"Authorization: x-api-key $API_KEY\"\n\n# Create browser profile\ncurl -X POST \"https://app.nextbrowser.com/api/v1/browser/profiles\" \\\n  -H \"Authorization: x-api-key $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"<profile-name>\", \"browser_settings\": {\"os_type\": \"<os-type>\", \"browser_type\": \"chrome\"},\n   \"proxy_settings\":{\"protocol\":\"<http|https|socks5>\",\"country\":\"<iso-2-country-code>\",\"mode\":\"built-in\"},\n   \"credentials\": [\"<credential-id>\"]}'\n\n# Delete profile\ncurl -X DELETE \"https://app.nextbrowser.com/api/v1/browser/profiles/<profile-id>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n3. Locations\n\nThe Locations endpoints provide available geolocation metadata for proxy and browser configuration. Use them to dynamically discover supported countries, regions, cities, and ISPs before creating profiles or running tasks under specific network conditions.\n\n# List Countries\ncurl \"https://app.nextbrowser.com/api/v1/location/countries?\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<iso2-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n# List Regions\ncurl \"https://app.nextbrowser.com/api/v1/location/regions?\\\ncountry__code=<iso2-country>&\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<region-code>&\\\ncity__code=<city-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n# List Cities\ncurl \"https://app.nextbrowser.com/api/v1/location/cities?\\\ncountry__code=<iso2-country>&\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<city-code>&\\\nregion__code=<region-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n# List ISPs\ncurl \"https://app.nextbrowser.com/api/v1/location/isps?\\\ncountry__code=<iso2-country>&\\\nlimit=<limit>&\\\noffset=<offset>&\\\nname=<name>&\\\ncode=<isp-code>&\\\nregion__code=<region-code>&\\\ncity__code=<city-code>&\\\nconnection_type=<connection-type>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\n4. 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 fast mode - optimized for browser tasks, 3-5x faster than other models. Always use true for skip_plan_approval - optimized for automated tasks, skips the approval and improve performance.\n\ncurl -X POST \"https://app.nextbrowser.com/api/v1/chat/tasks\" \\\n  -H \"Authorization: x-api-key $API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"task_description\": \"'\"\\\nGo to Reddit.com account, check if the account is logged in (if not, use credentials stored). \\\nFind 10 relevant posts on the topic of AI Agents, upvote 8 of them and post 3 witty-sounding comments \\\nthat a cynical and funny Reddit user would post. Ensure that the comment is posted, ask for approval \\\nif you are not sure whether such comment is okay. By the end, you should have at least 10 relevant posts \\\nviewed, 8 upvotes, and 3 comments.\"\\\n\"'\",\n    \"mode\": \"fast\",\n    \"profile_id\": \"<profile-id>\",\n    \"skip_plan_approval\": true,\n    \"send_email_notification\": false\n  }'\n\nEndpoint: Stop chat session and task\n\nThe chat-session-id is returned in the response of - POST /api/v1/chat/tasks\n\ncurl -X PUT \"https://app.nextbrowser.com/api/v1/chat/sessions/<chat-session-id>/stop\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\nEndpoint: Poll for completion\ncurl \"https://app.nextbrowser.com/api/v1/chat/tasks/<task-id>\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\ncurl \"https://app.nextbrowser.com/api/v1/chat/tasks/<task-id>?from_step=3\" \\\n  -H \"Authorization: x-api-key $API_KEY\"\n\nQuery params (optional):\nfrom_step: integer >= 1. First step index to return. Defaults to 1 if missing/invalid. Use this parameter to poll only new steps.\nResponse\n{\n  \"success\": true,\n  \"payload\": {\n    \"status\": \"finished\",\n    \"output\": \"Task completed. 10 relevant posts are viewed, 8 upvotes are done and 3 comments posted.\",\n    \"isSuccess\": true,\n    \"steps\": [\n      {\n        \"created_at\": \"2025-01-01T10:00:00Z\",\n        \"finished_at\": \"2025-01-01T10:00:05Z\",\n        \"description\": \"Opened Reddit search page\",\n        \"status\": \"completed\",\n        \"step_number\": 1\n      }\n      // ... more steps starting from from_step\n    ],\n    \"total_steps\": 5\n  },\n  \"errors\": {},\n  \"description\": \"Task retrieved successfully\"\n}\n\nField semantics\nstatus: high-level task status: \"processing\" | \"finished\" | \"failed\".\noutput: final task output (if available).\nisSuccess: true if task finished successfully, otherwise false.\nsteps: list of task steps starting from from_step (or from 1 by default).\nstep_number: sequential number of the step within the task, always starting at 1 in this array.\ntotal_steps: total number of steps the task has, independent of from_step.\nTask options\nOption\tDescription\ntask_description\tYour prompt (required)\nmode\tAlways use fast\nprofile_id\tUse a profile for auth\nskip_plan_approval\tAlways use true\nsend_email_notification\tIf true, a completion email will be sent for the task.\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/highxshell/next-browser",
    "publisherUrl": "https://clawhub.ai/highxshell/next-browser",
    "owner": "highxshell",
    "version": "1.0.14",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/next-browser",
    "downloadUrl": "https://openagent3.xyz/downloads/next-browser",
    "agentUrl": "https://openagent3.xyz/skills/next-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/next-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/next-browser/agent.md"
  }
}