Agent skill

google-search

Stars 0
Forks 0

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

  1. Does the model support built-in grounding (e.g., Gemini)?
    • YES: Enable google_search tool.
    • NO: Use Custom Search API.
  2. Do you need to restrict search to specific sites?
    • YES: Use site:example.com operator (no spaces).
  3. Do you need to exclude terms?
    • YES: Use -term operator.

Workflows

1. Implementing Search Grounding (Tool-based)

  1. Enable the google_search tool in the model configuration.
  2. Send a user prompt to the API and receive the response containing groundingMetadata.
  3. Extract webSearchQueries for debugging and groundingChunks for source links.
  4. Render the response with citations by mapping groundingSupports indices to the source URLs.

2. Precise Source Targeting

  1. Use the site: operator to restrict searches to trusted domains (e.g., site:nytimes.com).
  2. Combine multiple operators (e.g., site:github.com "error 404") for specific technical queries.
  3. Exclude irrelevant results using the - operator (e.g., jaguar speed -car).

3. Custom Search API Integration

  1. Create a Programmable Search Engine ID in the Google control panel.
  2. Generate an API key for Custom Search.
  3. Perform GET requests to the API with the q parameter 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.com works, site: nytimes.com fails).
  • Citations Metadata: Grounding metadata uses groundingSupports to 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

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

Expand your agent's capabilities with these related and highly-rated skills.

cuba6112/skillfactory

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.

0 0
Explore
cuba6112/skillfactory

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.

0 0
Explore
cuba6112/skillfactory

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.

0 0
Explore
cuba6112/skillfactory

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.

0 0
Explore
cuba6112/skillfactory

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).

0 0
Explore
cuba6112/skillfactory

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.

0 0
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results