Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add cu-aaii/claude-skills --skill gemini-searchgit clone --depth 1 https://github.com/cu-aaii/claude-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/cu-aaii/claude-skills/gemini-search)<a href="https://agentmods.dev/skills/cu-aaii/claude-skills/gemini-search"><img src="https://agentmods.dev/badge/skills/cu-aaii/claude-skills/gemini-search/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/cu-aaii/claude-skills/gemini-search"><img src="https://agentmods.dev/badge/skills/cu-aaii/claude-skills/gemini-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00029 | $0.03109 |
| Opus 5 | $0.00015 | $0.01554 |
| Sonnet 5 | $0.00006 | $0.00622 |
| Haiku 4.5 | $0.00003 | $0.00311 |
Grade A, and why
gemini-search scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
## Step 1: Run the search (curl) How it starts
The opening of the file, as written. The whole thing — 242 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Search via Gemini + Enterprise Web Search Grounding
Use this skill when the user invokes /gemini-search … or whenever you need current web information.
Goal: run a grounded web search with Gemini using Google's Enterprise Web Search, then present Gemini's answer with inline citations, Search Suggestions, and a source list — without adding your own analysis or interspersing other content.
Step 0: Create the query (do this before calling the API)
Always turn what the user said into a search query string first.
If the user invoked /gemini-search …
Treat the text after /gemini-search as user intent, not necessarily a perfectly-formed query.
- If it already looks like a search query (short, keyword-y, includes operators like
site:/filetype:/ quotes), keep it as-is. - Otherwise, distill it into a Google-style query.
If you are invoking this skill implicitly
Generate a query from the user's most recent request.
Query-building rules
- Include key entities (names, products, orgs, places) + the specific ask (e.g., "pricing", "release date", "policy", "error", "docs", "examples").
- Respect constraints: versions, geography, timeframe, platform, format.
- Prefer 6–14 meaningful words; remove filler.
- Use operators when helpful:
- Exact phrase:
"…". - Official sources:
site:…. - PDFs:
filetype:pdf. - Synonyms:
(term1 OR term2).
- Exact phrase:
Do not show your query-building reasoning.
Optionally, you may show the final query as a single line: Query: …
Step 1: Run the search (curl)
Use the Bash tool to execute the request.
Important implementation notes
- Construct the JSON payload inline. Escape any double quotes or backslashes in the user's query when building the JSON string.
- Do not stream. Some gateways omit grounding metadata in streaming mode; this skill expects the full JSON response.
- Never print or log the auth token.
Bash command
Replace <QUERY> with the final query string from Step 0 (escape " as \" and \ as \\ within the JSON):
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 242 lines · 29 tokens per session scan A b22522c779ce
gemini-search is a skill published in the GitHub repository cu-aaii/claude-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 29 tokens to every session and 3,109 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
parallel-web
Use Parallel CLI for web search, URL extraction, deep research, structured data enrichment, entity discovery, and recurring web monitoring. Best for requests that explicitly need current web evidence, academic-source discovery, repeated entity lookups, exhaustive reports, or ongoing change tracking.
add-tavily-tool
Add Tavily Search and Extract as keyless remote MCP tools for selected NanoClaw agent groups. Use when installing Tavily web search or URL extraction without an API key.
agent-browser
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.
browser-cdp
Use this skill when you need to control a Chrome browser via CDP (Chrome DevTools Protocol) to reuse existing login sessions. Covers: launching Chrome in debug mode, opening URLs, waiting for page load, evaluating JavaScript, taking snapshots, and extracting auth tokens. Trigger phrases: browser automation, CDP…
broken-link-checker
Scans a website to find broken links (404s, 500s). Crawls internal pages, identifies broken outbound links, and reports source pages for easy fixing. Use this when the user asks to "check for broken links", "find 404s", "audit my links", or "is my site healthy".
web-quality-audit
Run an evidence-led web quality audit covering performance, accessibility, SEO, best practices, and agentic browsing. Use when asked to "audit my site", "review web quality", "run lighthouse audit", "check page quality", or "optimize my website".