# Send Google Web 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. 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-web-search",
    "name": "Google Web Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/theoseo/google-web-search",
    "canonicalUrl": "https://clawhub.ai/theoseo/google-web-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/google-web-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-web-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "assets/example_asset.txt",
      "pyproject.toml",
      "references/api_reference.md",
      "requirements.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-web-search",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T23:09:53.690Z",
      "expiresAt": "2026-05-10T23:09:53.690Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-web-search",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-web-search",
        "contentDisposition": "attachment; filename=\"google-web-search-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-web-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/google-web-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/google-web-search",
    "downloadUrl": "https://openagent3.xyz/downloads/google-web-search",
    "agentUrl": "https://openagent3.xyz/skills/google-web-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-web-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-web-search/agent.md"
  }
}
```
## Documentation

### Overview

This skill provides the capability to perform real-time web searches via the Gemini API's google_search grounding tool. It is designed to fetch the most current information available on the web to provide grounded, citable answers to user queries.

Key Features:

Real-time web search via Gemini API
Grounded responses with verifiable citations
Configurable model selection
Simple Python API

### Usage

This skill exposes the Gemini API's google_search tool. It should be used when the user asks for real-time information, recent events, or requests verifiable citations.

### Execution Context

The core logic is in scripts/example.py. This script requires the following environment variables:

GEMINI_API_KEY (required): Your Gemini API key
GEMINI_MODEL (optional): Model to use (default: gemini-2.5-flash-lite)

Supported Models:

gemini-2.5-flash-lite (default) - Fast and cost-effective
gemini-3-flash-preview - Latest flash model
gemini-3-pro-preview - More capable, slower
gemini-2.5-flash-lite-preview-09-2025 - Specific version

### Python Tool Implementation Pattern

When integrating this skill into a larger workflow, the helper script should be executed in an environment where the google-genai library is available and the GEMINI_API_KEY is exposed.

Example Python invocation structure:

from skills.google-web-search.scripts.example import get_grounded_response

# Basic usage (uses default model):
prompt = "What is the latest market trend?"
response_text = get_grounded_response(prompt)
print(response_text)

# Using a specific model:
response_text = get_grounded_response(prompt, model="gemini-3-pro-preview")
print(response_text)

# Or set via environment variable:
import os
os.environ["GEMINI_MODEL"] = "gemini-3-flash-preview"
response_text = get_grounded_response(prompt)
print(response_text)

### Troubleshooting

If the script fails:

Missing API Key: Ensure GEMINI_API_KEY is set in the execution environment.
Library Missing: Verify that the google-genai library is installed (pip install google-generativeai).
API Limits: Check the API usage limits on the Google AI Studio dashboard.
Invalid Model: If you set GEMINI_MODEL, ensure it's a valid Gemini model name.
Model Not Supporting Grounding: Some models may not support the google_search tool. Use flash or pro variants.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: theoseo
- 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:09:53.690Z
- Expires at: 2026-05-10T23:09:53.690Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-web-search)
- [Send to Agent page](https://openagent3.xyz/skills/google-web-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-web-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-web-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-web-search)