{
  "schemaVersion": "1.0",
  "item": {
    "slug": "webserp",
    "name": "webserp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/PaperBoardOfficial/webserp",
    "canonicalUrl": "https://clawhub.ai/PaperBoardOfficial/webserp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/webserp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=webserp",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/webserp"
    },
    "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/webserp",
    "agentPageUrl": "https://openagent3.xyz/skills/webserp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/webserp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/webserp/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": "webserp",
        "body": "Metasearch CLI — queries Google, DuckDuckGo, Brave, Yahoo, Mojeek, Startpage, and Presearch in parallel. Uses curl_cffi for browser impersonation. Results like a browser, speed like an API."
      },
      {
        "title": "When to use webserp",
        "body": "You need current/recent information not in your training data\nYou need to verify facts or find sources\nYou need to discover URLs, documentation, or code repositories\nThe user asks about recent events, releases, or news"
      },
      {
        "title": "Install",
        "body": "pip install webserp\n\nNo API keys, no configuration. Just install and search."
      },
      {
        "title": "Usage",
        "body": "# Search all 7 engines (default)\nwebserp \"how to deploy docker containers\"\n\n# Search specific engines\nwebserp \"python async tutorial\" --engines google,brave,duckduckgo\n\n# Limit results per engine\nwebserp \"rust vs go\" --max-results 5\n\n# Show which engines succeeded/failed\nwebserp \"test query\" --verbose\n\n# Set per-engine timeout\nwebserp \"query\" --timeout 15\n\n# Use a proxy\nwebserp \"query\" --proxy \"socks5://127.0.0.1:1080\""
      },
      {
        "title": "Options",
        "body": "FlagDescriptionDefault-e, --enginesComma-separated engine listall-n, --max-resultsMax results per engine10--timeoutPer-engine timeout (seconds)10--proxyProxy URL for all requestsnone--verboseShow engine status in stderrfalse"
      },
      {
        "title": "Output format",
        "body": "JSON to stdout (SearXNG-compatible):\n\n{\n  \"query\": \"deployment issue\",\n  \"number_of_results\": 42,\n  \"results\": [\n    {\n      \"title\": \"How to fix Docker deployment issues\",\n      \"url\": \"https://example.com/docker-fix\",\n      \"content\": \"Common Docker deployment problems and solutions...\",\n      \"engine\": \"google\"\n    }\n  ],\n  \"suggestions\": [],\n  \"unresponsive_engines\": []\n}\n\nParse with jq or any JSON parser. The results array contains title, url, content, and engine for each result. unresponsive_engines lists any engines that failed with the error reason."
      },
      {
        "title": "Tips",
        "body": "Use --max-results 5 to keep output concise when you just need a few links\nUse --engines google,brave to target specific engines for faster results\nUse --verbose (writes to stderr) to see which engines responded — the JSON on stdout is unaffected\nResults are deduplicated by URL across engines — you won't get the same link twice"
      }
    ],
    "body": "webserp\n\nMetasearch CLI — queries Google, DuckDuckGo, Brave, Yahoo, Mojeek, Startpage, and Presearch in parallel. Uses curl_cffi for browser impersonation. Results like a browser, speed like an API.\n\nWhen to use webserp\nYou need current/recent information not in your training data\nYou need to verify facts or find sources\nYou need to discover URLs, documentation, or code repositories\nThe user asks about recent events, releases, or news\nInstall\npip install webserp\n\n\nNo API keys, no configuration. Just install and search.\n\nUsage\n# Search all 7 engines (default)\nwebserp \"how to deploy docker containers\"\n\n# Search specific engines\nwebserp \"python async tutorial\" --engines google,brave,duckduckgo\n\n# Limit results per engine\nwebserp \"rust vs go\" --max-results 5\n\n# Show which engines succeeded/failed\nwebserp \"test query\" --verbose\n\n# Set per-engine timeout\nwebserp \"query\" --timeout 15\n\n# Use a proxy\nwebserp \"query\" --proxy \"socks5://127.0.0.1:1080\"\n\nOptions\nFlag\tDescription\tDefault\n-e, --engines\tComma-separated engine list\tall\n-n, --max-results\tMax results per engine\t10\n--timeout\tPer-engine timeout (seconds)\t10\n--proxy\tProxy URL for all requests\tnone\n--verbose\tShow engine status in stderr\tfalse\nOutput format\n\nJSON to stdout (SearXNG-compatible):\n\n{\n  \"query\": \"deployment issue\",\n  \"number_of_results\": 42,\n  \"results\": [\n    {\n      \"title\": \"How to fix Docker deployment issues\",\n      \"url\": \"https://example.com/docker-fix\",\n      \"content\": \"Common Docker deployment problems and solutions...\",\n      \"engine\": \"google\"\n    }\n  ],\n  \"suggestions\": [],\n  \"unresponsive_engines\": []\n}\n\n\nParse with jq or any JSON parser. The results array contains title, url, content, and engine for each result. unresponsive_engines lists any engines that failed with the error reason.\n\nTips\nUse --max-results 5 to keep output concise when you just need a few links\nUse --engines google,brave to target specific engines for faster results\nUse --verbose (writes to stderr) to see which engines responded — the JSON on stdout is unaffected\nResults are deduplicated by URL across engines — you won't get the same link twice"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PaperBoardOfficial/webserp",
    "publisherUrl": "https://clawhub.ai/PaperBoardOfficial/webserp",
    "owner": "PaperBoardOfficial",
    "version": "0.1.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/webserp",
    "downloadUrl": "https://openagent3.xyz/downloads/webserp",
    "agentUrl": "https://openagent3.xyz/skills/webserp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/webserp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/webserp/agent.md"
  }
}