# Send serper-search 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "serper-search",
    "name": "serper-search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Samoppakiks/serper-search",
    "canonicalUrl": "https://clawhub.ai/Samoppakiks/serper-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/serper-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=serper-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "SKILL.md",
      "index.ts",
      "clawdbot.plugin.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "serper-search",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T15:36:48.613Z",
      "expiresAt": "2026-05-19T15:36:48.613Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=serper-search",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=serper-search",
        "contentDisposition": "attachment; filename=\"serper-search-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "serper-search"
      },
      "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/serper-search"
    },
    "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/serper-search",
    "downloadUrl": "https://openagent3.xyz/downloads/serper-search",
    "agentUrl": "https://openagent3.xyz/skills/serper-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/serper-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/serper-search/agent.md"
  }
}
```
## Documentation

### Serper Google Search Plugin

Native Clawdbot plugin for Google Search via Serper.dev API. Returns real Google results — organic links, knowledge graph, news, and "People Also Ask" — as a single tool call.

### When to use

You need actual Google results with links and snippets (not AI-synthesized answers)
You want Google News articles on a topic
You need knowledge graph data (quick facts, entity info)
Complements AI search tools (Perplexity, Brave) with raw Google data

### Setup

Get a free API key at serper.dev (2,500 searches/month, no card required)
Set the environment variable in your Clawdbot config:

{
  "env": {
    "vars": {
      "SERPER_API_KEY": "your-api-key-here"
    }
  }
}

Or configure directly in the plugin entry:

{
  "plugins": {
    "entries": {
      "serper-search": {
        "enabled": true,
        "config": {
          "apiKey": "your-api-key-here",
          "defaultNumResults": 5
        }
      }
    }
  }
}

### Usage

The plugin registers a serper_search tool with three parameters:

ParameterTypeDefaultDescriptionquerystringrequiredThe search querynumnumber5Number of results (1-100)searchTypestring"search""search" for web, "news" for news

### Web search

Search for "best rust web frameworks 2026"

Returns organic results with title, link, snippet, and position, plus knowledge graph and related questions.

### News search

Search news for "AI regulation Europe"

Returns news articles with title, link, snippet, date, and source.

### Plugin structure

serper-search/
  clawdbot.plugin.json   # Plugin manifest with configSchema
  package.json            # NPM package config
  index.ts                # Plugin implementation
  SKILL.md                # This file

### Key implementation details

Export: export default function register(api) — not an object
Tool registration: api.registerTool(toolObject) — direct, not callback
Return format: { content: [{ type: "text", text: JSON.stringify(results) }] }
Dependencies: Symlink @sinclair/typebox from Clawdbot's own node_modules

### Author

Built by @Samoppakiks with Claude Code.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Samoppakiks
- Version: 1.0.0
## 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-12T15:36:48.613Z
- Expires at: 2026-05-19T15:36:48.613Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/serper-search)
- [Send to Agent page](https://openagent3.xyz/skills/serper-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/serper-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/serper-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/serper-search)