# Send Google Search Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/google-search-serper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-search-serper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "assets/banner.svg",
      "package.json",
      "references/serper-api.md",
      "scripts/google-search.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-search-serper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T23:12:48.392Z",
      "expiresAt": "2026-05-10T23:12:48.392Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-search-serper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-search-serper",
        "contentDisposition": "attachment; filename=\"google-search-serper-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-search-serper"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Google Search Skill

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.

### When to Use

Use this skill for any Google search request. Auto-detect intent:

Default → search
"news about X" / "latest X" → news
"images of X" / "pictures of X" → images
"videos of X" / "how to X video" → videos
"restaurants near X" / "X near me" → places
"how much does X cost" / "buy X" → shopping (⚠️ 2 credits — only when explicitly requested)
"papers on X" / "research about X" → scholar
"patents for X" → patents
"suggestions for X" → suggest

### Usage

SCRIPT_DIR="~/.openclaw/workspace/skills/google-search/scripts"

# Web search (default)
npx tsx $SCRIPT_DIR/google-search.ts search "query" [--num 10] [--time day|week|month|year] [--country us] [--lang en]

# Specialized
npx tsx $SCRIPT_DIR/google-search.ts news "query" [--num 10]
npx tsx $SCRIPT_DIR/google-search.ts images "query"
npx tsx $SCRIPT_DIR/google-search.ts videos "query"
npx tsx $SCRIPT_DIR/google-search.ts places "query"
npx tsx $SCRIPT_DIR/google-search.ts shopping "query"
npx tsx $SCRIPT_DIR/google-search.ts scholar "query" [--year 2023]
npx tsx $SCRIPT_DIR/google-search.ts patents "query"
npx tsx $SCRIPT_DIR/google-search.ts suggest "query"
npx tsx $SCRIPT_DIR/google-search.ts credits

Add --json to any command for raw JSON output.

### Setup

Requires a free API key from Serper.dev:

Sign up at https://serper.dev (2,500 free searches included)
Copy your API key from the dashboard
Add to your environment: export SERPER_API_KEY=your_key_here

If the key is missing, remind the user to sign up at serper.dev — it's free and takes 30 seconds.

### Workflow

Run the appropriate search command
Parse the formatted output
If deeper content is needed, use web_fetch on promising links
Credit balance is shown in every response — monitor usage
Shopping costs 2 credits — only use when user explicitly asks for prices/shopping

### Time Filters

--time accepts: hour, day, week, month, year (or h, d, w, m, y)

### Notes

Rate limit: 5 req/sec on free tier
All searches cost 1 credit except shopping (2 credits)
Results include rich data: Knowledge Graph, Answer Box, People Also Ask, Related Searches
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: minilozio
- Version: 1.0.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T23:12:48.392Z
- Expires at: 2026-05-10T23:12:48.392Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-search-serper)
- [Send to Agent page](https://openagent3.xyz/skills/google-search-serper/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-search-serper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-search-serper/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-search-serper)