Unnamed Skill
Integration patterns for web search grounding, including query operator usage, API-based search orchestration, and citation metadata mapping. Triggers: google-search, grounding, search-api, citations, search-operators, web-search.
$ インストール
git clone https://github.com/majiayu000/claude-skill-registry /tmp/claude-skill-registry && cp -r /tmp/claude-skill-registry/skills/testing/google-search ~/.claude/skills/claude-skill-registry// tip: Run this command in your terminal to install the skill
SKILL.md
name: google-search description: Integration patterns for web search grounding, including query operator usage, API-based search orchestration, and citation metadata mapping. Triggers: google-search, grounding, search-api, citations, search-operators, web-search.
Google Search Grounding
Overview
Google Search grounding allows LLM applications to access real-time information and provide verifiable citations. This skill covers both direct tool integration (like Gemini's google_search) and custom API implementations.
When to Use
- Fact-Checking: When the LLM needs to confirm recent events (e.g., Euro 2024 results).
- Source Attribution: When user trust requires seeing direct links to the information source.
- Niche Research: Using operators like
site:to restrict information to specific domains.
Decision Tree
- Does the model support built-in grounding (e.g., Gemini)?
- YES: Enable
google_searchtool. - NO: Use Custom Search API.
- YES: Enable
- Do you need to restrict search to specific sites?
- YES: Use
site:example.comoperator (no spaces).
- YES: Use
- Do you need to exclude terms?
- YES: Use
-termoperator.
- YES: Use
Workflows
1. Implementing Search Grounding (Tool-based)
- Enable the
google_searchtool in the model configuration. - Send a user prompt to the API and receive the response containing
groundingMetadata. - Extract
webSearchQueriesfor debugging andgroundingChunksfor source links. - Render the response with citations by mapping
groundingSupportsindices to the source URLs.
2. Precise Source Targeting
- Use the
site:operator to restrict searches to trusted domains (e.g.,site:nytimes.com). - Combine multiple operators (e.g.,
site:github.com "error 404") for specific technical queries. - Exclude irrelevant results using the
-operator (e.g.,jaguar speed -car).
3. Custom Search API Integration
- Create a Programmable Search Engine ID in the Google control panel.
- Generate an API key for Custom Search.
- Perform GET requests to the API with the
qparameter and parse the resulting JSON search results.
Non-Obvious Insights
- Strict Operators: Search operators like
site:must NOT have spaces between the colon and the value (e.g.,site:nytimes.comworks,site: nytimes.comfails). - Citations Metadata: Grounding metadata uses
groundingSupportsto map specific text segments to source indices, allowing for precise, multi-source citations in a single sentence. - Synthesis Loop: The Gemini tool doesn't just return links; it analyzes the prompt, generates multiple refined queries, and synthesizes a grounded answer.
Evidence
- "The model analyzes the prompt and determines if a Google Search can improve the answer." - Google AI
- "Do not put spaces between the operator and your search term." - Google Search Help
- "Spain won Euro 2024...1" - Google AI Grounding Example
Scripts
scripts/google-search_tool.py: Implementation of Custom Search API requests.scripts/google-search_tool.js: Example of parsing grounding metadata for citations.
Dependencies
google-api-python-client(for Custom Search API)google-generativeai(for Gemini Tool-use)
References
Repository

majiayu000
Author
majiayu000/claude-skill-registry/skills/testing/google-search
0
Stars
0
Forks
Updated5h ago
Added1w ago