Agent skill
google-search
Install this agent skill to your Project
npx add-skill https://github.com/cuba6112/skillfactory/tree/main/skills/google-search
SKILL.md
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
- references/README.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
prompt-engineering
Comprehensive prompt engineering techniques for Claude models. Use this skill when crafting, optimizing, or debugging prompts for Claude API, Claude Code, or any Claude-powered application. Covers system prompts, role prompting, multishot examples, chain of thought, XML structuring, long context handling, extended thinking, prompt chaining, Claude 4.x-specific best practices, and agentic orchestration including subagents, agent loops, skills, MCP integration, and multi-agent workflows.
adk-rag-agent
Build RAG (Retrieval-Augmented Generation) agents with Google ADK and Vertex AI RAG Engine. Use when implementing document Q&A, knowledge base search, or citation-backed responses. Covers VertexAiRagRetrieval tool, corpus setup, and citation formatting.
headless-cli-agents
Build agentic systems using Claude CLI in headless mode or the Claude Agent SDK. Use when building automation pipelines, CI/CD integrations, multi-agent orchestration, or programmatic Claude interactions. Covers CLI flags (-p, --output-format), session management (--resume, --continue), Python SDK (claude-agent-sdk), custom tools, and agent loop patterns.
notion-knowledge-capture
Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.
mcp-builder
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
gh-fix-ci
Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR CI/CD checks on GitHub Actions and wants a plan + code changes; for external checks (e.g., Buildkite), only report the details URL and mark them out of scope.
Didn't find tool you were looking for?