From gemini-search
Search the web for current information using Gemini CLI with Google Search grounding. Use when you need real-time data, latest documentation, current events, or to verify claims against live sources. Triggers on "search the web", "look up", "find online", "what's the latest", "current version of", "recent news about".
How this skill is triggered — by the user, by Claude, or both
Slash command
/gemini-search:web-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search the web using Google's Gemini CLI with built-in Google Search grounding. Returns accurate, cited results with source URLs.
Search the web using Google's Gemini CLI with built-in Google Search grounding. Returns accurate, cited results with source URLs.
Install Gemini CLI globally:
npm install -g @google/gemini-cli
Authenticate once:
gemini
Run the bundled gemini-search script from this plugin's bin/ directory:
gemini-search "your search query"
The script automatically:
google_web_search for groundingAlways invoke web search through gemini-search. Do not call gemini directly. The wrapper provides:
privacy.usageStatisticsEnabled=false) without touching ~/.gemini/settings.json[Source](url) citation enforcement and ## Sources heading validation — direct gemini calls have no such guaranteeDirect gemini --output-format json --prompt ... invocation bypasses all of the above and must not be used from Claude Code workflows.
Search the web for the current LTS version of Node.js.
Include the release date and end-of-life date.
Cite your sources.
Search the web and compare Bun vs Deno runtime performance benchmarks from 2025.
Include specific numbers and link to the benchmark sources.
Search for the official documentation on React Server Components streaming.
Find the API reference page and summarize the key props and usage patterns.
Search for recent security advisories for the 'express' npm package.
List CVE numbers, severity, and affected versions.
Search for the latest version of @anthropic-ai/sdk and list breaking changes
from the previous major version. Include migration guide links if available.
gemini-search intentionally does not expose a model flag. Gemini CLI chooses the model using its own routing, your account tier, and your ~/.gemini/settings.json configuration.
If you need to pin a model, set it in ~/.gemini/settings.json under the model.name key — see the Gemini CLI configuration reference. Do not pass -m to gemini-search; unknown flags now error out.
Every gemini-search invocation auto-disables Gemini CLI usage statistics (privacy.usageStatisticsEnabled: false) via a temporary system-override settings file. Your ~/.gemini/settings.json and OAuth credentials are not modified. See the project README "Privacy" section for the auth-tier truth table — note that this CLI flag is not by itself a model-training opt-out on free OAuth or free Gemini API tiers.
gemini-search --raw "query" | jq '.response' for pipelinesGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub happycastle114/gemini-search --plugin gemini-search