{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-skill-brave-rotator",
    "name": "Brave Rotator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-brave-rotator",
    "canonicalUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-brave-rotator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-skill-brave-rotator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-brave-rotator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/brave-api.md",
      "scripts/brave_search.py"
    ],
    "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/openclaw-skill-brave-rotator"
    },
    "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/openclaw-skill-brave-rotator",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator/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": "Brave Rotator",
        "body": "Multi-key Brave Search with automatic round-robin rotation and rate-limit fallback."
      },
      {
        "title": "Setup",
        "body": "Set env var with comma-separated keys:\n\nexport BRAVE_API_KEYS=key1,key2,key3\n\nOptionally set state file path (default: ~/.brave_key_state.json):\n\nexport BRAVE_KEY_STATE_FILE=/path/to/state.json"
      },
      {
        "title": "Script: scripts/brave_search.py",
        "body": "Run directly or import as module."
      },
      {
        "title": "CLI usage",
        "body": "python3 brave_search.py \"your query\" [--count 5] [--type web|news|image] [--country us] [--lang en] [--json]"
      },
      {
        "title": "Import usage",
        "body": "import sys, os\nsys.path.insert(0, \"path/to/skill/scripts\")\nfrom brave_search import search, format_results\n\ndata, used_key, key_idx = search(\"your query\", count=5, search_type=\"web\")\nresults = format_results(data, \"web\")\n# results = [{\"title\": ..., \"url\": ..., \"snippet\": ...}, ...]"
      },
      {
        "title": "Rotation Logic",
        "body": "Maintains state in ~/.brave_key_state.json\nRound-robin across all keys\nOn HTTP 429/403: blocks key for 60s, retries with next key\nAll keys exhausted: uses least recently blocked key"
      },
      {
        "title": "Key State Inspection",
        "body": "cat ~/.brave_key_state.json\n\nShows per-key request count, last success, and blocked_until timestamps."
      },
      {
        "title": "Search Types",
        "body": "TypeEndpointResult fieldsweb/web/searchtitle, url, snippetnews/news/searchtitle, url, snippet, ageimage/images/searchtitle, url, thumbnail"
      },
      {
        "title": "Notes",
        "body": "Free plan: 2000 req/month/key, 1 req/sec\nWith N keys: effectively N×2000 req/month\nSee references/brave-api.md for full API params and plan details"
      }
    ],
    "body": "Brave Rotator\n\nMulti-key Brave Search with automatic round-robin rotation and rate-limit fallback.\n\nSetup\n\nSet env var with comma-separated keys:\n\nexport BRAVE_API_KEYS=key1,key2,key3\n\n\nOptionally set state file path (default: ~/.brave_key_state.json):\n\nexport BRAVE_KEY_STATE_FILE=/path/to/state.json\n\nScript: scripts/brave_search.py\n\nRun directly or import as module.\n\nCLI usage\npython3 brave_search.py \"your query\" [--count 5] [--type web|news|image] [--country us] [--lang en] [--json]\n\nImport usage\nimport sys, os\nsys.path.insert(0, \"path/to/skill/scripts\")\nfrom brave_search import search, format_results\n\ndata, used_key, key_idx = search(\"your query\", count=5, search_type=\"web\")\nresults = format_results(data, \"web\")\n# results = [{\"title\": ..., \"url\": ..., \"snippet\": ...}, ...]\n\nRotation Logic\nMaintains state in ~/.brave_key_state.json\nRound-robin across all keys\nOn HTTP 429/403: blocks key for 60s, retries with next key\nAll keys exhausted: uses least recently blocked key\nKey State Inspection\ncat ~/.brave_key_state.json\n\n\nShows per-key request count, last success, and blocked_until timestamps.\n\nSearch Types\nType\tEndpoint\tResult fields\nweb\t/web/search\ttitle, url, snippet\nnews\t/news/search\ttitle, url, snippet, age\nimage\t/images/search\ttitle, url, thumbnail\nNotes\nFree plan: 2000 req/month/key, 1 req/sec\nWith N keys: effectively N×2000 req/month\nSee references/brave-api.md for full API params and plan details"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-brave-rotator",
    "publisherUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-brave-rotator",
    "owner": "mrnsmh",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-skill-brave-rotator",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-brave-rotator/agent.md"
  }
}