{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-search-serper",
    "name": "Google Search Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/minilozio/google-search-serper",
    "canonicalUrl": "https://clawhub.ai/minilozio/google-search-serper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-search-serper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-search-serper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "assets/banner.svg",
      "package.json",
      "references/serper-api.md",
      "scripts/google-search.ts"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/google-search-serper"
    },
    "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/google-search-serper",
    "agentPageUrl": "https://openagent3.xyz/skills/google-search-serper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-search-serper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-search-serper/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Google Search Skill",
        "body": "Google Search powered by Serper.dev API. Replaces Brave Search with richer results including Knowledge Graph, Answer Box, People Also Ask, and specialized search types."
      },
      {
        "title": "When to Use",
        "body": "Use this skill for any Google search request. Auto-detect intent:\n\nDefault → search\n\"news about X\" / \"latest X\" → news\n\"images of X\" / \"pictures of X\" → images\n\"videos of X\" / \"how to X video\" → videos\n\"restaurants near X\" / \"X near me\" → places\n\"how much does X cost\" / \"buy X\" → shopping (⚠️ 2 credits — only when explicitly requested)\n\"papers on X\" / \"research about X\" → scholar\n\"patents for X\" → patents\n\"suggestions for X\" → suggest"
      },
      {
        "title": "Usage",
        "body": "SCRIPT_DIR=\"~/.openclaw/workspace/skills/google-search/scripts\"\n\n# Web search (default)\nnpx tsx $SCRIPT_DIR/google-search.ts search \"query\" [--num 10] [--time day|week|month|year] [--country us] [--lang en]\n\n# Specialized\nnpx tsx $SCRIPT_DIR/google-search.ts news \"query\" [--num 10]\nnpx tsx $SCRIPT_DIR/google-search.ts images \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts videos \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts places \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts shopping \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts scholar \"query\" [--year 2023]\nnpx tsx $SCRIPT_DIR/google-search.ts patents \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts suggest \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts credits\n\nAdd --json to any command for raw JSON output."
      },
      {
        "title": "Setup",
        "body": "Requires a free API key from Serper.dev:\n\nSign up at https://serper.dev (2,500 free searches included)\nCopy your API key from the dashboard\nAdd to your environment: export SERPER_API_KEY=your_key_here\n\nIf the key is missing, remind the user to sign up at serper.dev — it's free and takes 30 seconds."
      },
      {
        "title": "Workflow",
        "body": "Run the appropriate search command\nParse the formatted output\nIf deeper content is needed, use web_fetch on promising links\nCredit balance is shown in every response — monitor usage\nShopping costs 2 credits — only use when user explicitly asks for prices/shopping"
      },
      {
        "title": "Time Filters",
        "body": "--time accepts: hour, day, week, month, year (or h, d, w, m, y)"
      },
      {
        "title": "Notes",
        "body": "Rate limit: 5 req/sec on free tier\nAll searches cost 1 credit except shopping (2 credits)\nResults include rich data: Knowledge Graph, Answer Box, People Also Ask, Related Searches"
      }
    ],
    "body": "Google Search Skill\n\nGoogle Search powered by Serper.dev API. Replaces Brave Search with richer results including Knowledge Graph, Answer Box, People Also Ask, and specialized search types.\n\nWhen to Use\n\nUse this skill for any Google search request. Auto-detect intent:\n\nDefault → search\n\"news about X\" / \"latest X\" → news\n\"images of X\" / \"pictures of X\" → images\n\"videos of X\" / \"how to X video\" → videos\n\"restaurants near X\" / \"X near me\" → places\n\"how much does X cost\" / \"buy X\" → shopping (⚠️ 2 credits — only when explicitly requested)\n\"papers on X\" / \"research about X\" → scholar\n\"patents for X\" → patents\n\"suggestions for X\" → suggest\nUsage\nSCRIPT_DIR=\"~/.openclaw/workspace/skills/google-search/scripts\"\n\n# Web search (default)\nnpx tsx $SCRIPT_DIR/google-search.ts search \"query\" [--num 10] [--time day|week|month|year] [--country us] [--lang en]\n\n# Specialized\nnpx tsx $SCRIPT_DIR/google-search.ts news \"query\" [--num 10]\nnpx tsx $SCRIPT_DIR/google-search.ts images \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts videos \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts places \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts shopping \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts scholar \"query\" [--year 2023]\nnpx tsx $SCRIPT_DIR/google-search.ts patents \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts suggest \"query\"\nnpx tsx $SCRIPT_DIR/google-search.ts credits\n\n\nAdd --json to any command for raw JSON output.\n\nSetup\n\nRequires a free API key from Serper.dev:\n\nSign up at https://serper.dev (2,500 free searches included)\nCopy your API key from the dashboard\nAdd to your environment: export SERPER_API_KEY=your_key_here\n\nIf the key is missing, remind the user to sign up at serper.dev — it's free and takes 30 seconds.\n\nWorkflow\nRun the appropriate search command\nParse the formatted output\nIf deeper content is needed, use web_fetch on promising links\nCredit balance is shown in every response — monitor usage\nShopping costs 2 credits — only use when user explicitly asks for prices/shopping\nTime Filters\n\n--time accepts: hour, day, week, month, year (or h, d, w, m, y)\n\nNotes\nRate limit: 5 req/sec on free tier\nAll searches cost 1 credit except shopping (2 credits)\nResults include rich data: Knowledge Graph, Answer Box, People Also Ask, Related Searches"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/minilozio/google-search-serper",
    "publisherUrl": "https://clawhub.ai/minilozio/google-search-serper",
    "owner": "minilozio",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-search-serper",
    "downloadUrl": "https://openagent3.xyz/downloads/google-search-serper",
    "agentUrl": "https://openagent3.xyz/skills/google-search-serper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-search-serper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-search-serper/agent.md"
  }
}