webfetch-google

Fetches Google search results for a user-provided query via a web search script.

2.5k|134|Updated Jun 6, 2025
One-click install
npx skills add https://github.com/UnicomAI/wanwu --skill webfetch-google
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: webfetch-google
Source: https://github.com/UnicomAI/wanwu/tree/main/configs/microservice/bff-service/configs/agent-skills/clawhub/webfetch-google
Command: npx skills add https://github.com/UnicomAI/wanwu --skill webfetch-google

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

It lets an agent retrieve Google search result content for a query without manually browsing, turning a plain search question into fetched web content.

Core Features & Use Cases

  • Query-Based Web Fetch: Accepts a user-provided search query and executes a script that calls the web_search tool against Google.
  • Structured Output: Returns search results wrapped in a JSON tool-call format for downstream consumption.
  • Use Case: Ask the agent to fetch Google search results for a topic like 'OpenClaw skills' and receive the retrieved content for research or summarization.

Quick Start

Fetch Google search results for the query 'latest AI agent frameworks'.

Frequently Asked Questions about webfetch-google

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Google search results with a query?

Provide a plain-text search query, and the skill runs scripts/web_search.py with that query as an argument. The script invokes the web_search tool and returns the Google search result content.

What input does a Google web search skill require?

It requires a single search query string passed as a command-line argument to the script. No other parameters, credentials, or configuration files are needed.

Is it safe to send search queries to an external search provider?

Queries are sent to an external search provider, so use only ordinary web-search terms. Avoid passwords, tokens, personal details, confidential business data, or regulated information in queries.

What output format does the web search script return?

The script prints a JSON object containing a tool_code field that wraps the web_search call. The search results are returned as text inside this JSON tool-call wrapper.

What are the limitations of fetching Google results this way?

The skill only performs a single query-based fetch and does not crawl result pages or handle pagination. The published documentation also still contains template placeholder text, so review instructions before deployment.