finding-google-skills
Locates and loads the right Google product skill on demand from a remote catalog index, instead of preloading every skill.
Install / Use
npx skills add google/skills --skill finding-google-skillsInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Data & AnalyticsSupported Platforms
Our assessment of finding-google-skills
finding-google-skills scores 85/100 on our quality scale, 117th of 205 Data & Analytics skills we index.
Its SKILL.md is 6.6 KB long, split into 4 sections and no code examples: a thorough specification that gives an agent plenty to work with.
With 20,340 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 2 days ago, so finding-google-skills is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
finding-google-skills compared with similar skills
All 4 of these similar skills score higher than finding-google-skills; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| finding-google-skills (this skill)by google | 85 | 20.3k | 2d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| Scraplingby D4Vinci | 100 | 83.7k | today | MCP Server |
| LocalAIby mudler | 100 | 49.3k | today | MCP Server |
Frequently asked questions
- How do I install finding-google-skills?
- Run
npx skills add google/skills --skill finding-google-skills. The install tabs above show the steps for each supported agent. - Which AI agents does finding-google-skills work with?
- It is written for Gemini CLI, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is finding-google-skills safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is finding-google-skills still maintained?
- The repository was last updated 2 days ago, so finding-google-skills is actively maintained.
Skill content
View source on GitHubname: finding-google-skills metadata: version: "1.0.0" category: MultiProductSolutions description: >- Locates and loads the right Google product skill on demand from a remote catalog index, instead of preloading every skill. Use at the START of any request touching a Google product, API, or developer platform - including Google Cloud (GKE, Cloud Run, IAM, BigQuery, Vertex AI, Spanner), Google Ads, Google Analytics, Google Workspace (Gmail, Drive, Admin SDK), Chrome and Chrome extensions, Android, Firebase, YouTube, Google Maps, Gemini and the Gemini API, Google Play, and Flutter. Consult the index before answering from memory or searching the web. Don't use for non-Google products.
Google Skill Finder
Routes a request to the published Google skills that apply to it. The catalog lives outside this file and is fetched on demand, so loading this skill costs almost nothing until a lookup actually happens.
Workflow
-
Fetch the catalog byte-exactly. Retrieve
https://raw.githubusercontent.com/google/skills/main/index.jsonwith a raw shell fetch (curl,wget;curl.exeon Windows PowerShell). It must arrive byte-for-byte, everyentrypointURL intact and unaltered.With no shell fetch tool but Node present,
node -e "fetch(process.argv[1]).then(r=>r.text()).then(t=>console.log(t))" {url}also returns bytes.The catalog is about 75 KB and may not fit in a single tool result; a truncated preview is alphabetical, so it reads as though only the first few products exist. Prefer narrowing it before reading. With
jq:curl -sSL {url} | jq -r '.skills[] | select((.name+" "+.description)|test("gke";"i")) | "\(.name)\t\(.entrypoint)"'. In Windows PowerShell:(Invoke-RestMethod {url}).skills | Where-Object { $_.description -match "gke" } | Select-Object name, entrypoint -First 3. With neither, a plaingrep -oover the raw JSON still isolates candidate names.Where no filtering tool exists, write the catalog to a file and read it in parts (
curl -sSL {url} -o skills-index.json, orInvoke-WebRequest {url} -OutFile skills-index.json). This is often the better option regardless: it survives truncation, and re-reading a local file costs nothing. Delete it when the request is done.If only a summarizing fetch tool is available, phrase the request as extraction, not transcription: "List every
entrypointfield in this document, one per line, exactly as written." Requesting it verbatim returns nothing usable. -
Confirm the retrieval worked before using it. A tool call that returns without raising is not a success. It succeeded only if the body parses as JSON and holds a
skillsarray. A 404 page, an HTML error page, a TLS or connection error, an empty body, or anything that fails to parse is a FAILED retrieval even though the tool reported no error. A certificate failure is a FAILED retrieval and is final. Never retry it with verification disabled. Notcurl -kor--insecure. Not-SkipCertificateCheck, and on Windows PowerShell 5.1, where that parameter does not exist, not theServicePointManagercertificate callback either. Not any equivalent in any language. You are about to follow instructions from whatever comes back, so an unverified catalog is worse than no catalog. On a failed retrieval, stop here and go to "When the fetch fails". -
Match the request against the descriptions. Every description states what the skill does, when to use it, and often when not to. Read them as routing criteria, not as summaries. Shortlist at most three entries whose
descriptioncovers the request. When more than three look equally relevant, prefer the most specific over the more general. -
Fetch only the matches. Retrieve the
entrypointURL of each shortlisted entry, the same way, and follow that skill's instructions. Do not fetch entries that merely look related. -
Report an empty result honestly. If no description covers the request, say that no published Google skill applies and continue without one. Never invent a skill name or an entry point URL.
Routing ends once the matches are fetched. From the point you begin following a fetched skill's instructions, this skill is finished with the request and is not re-entered for it.
Rules
-
Fetch once per session; never keep it past the session. Reusing a catalog you retrieved successfully earlier in this session is fine. Carrying one into a later run is not, in any form: the catalog changes regularly and a stored copy goes stale silently. Session reuse never substitutes for a failed fetch.
-
Never carry the catalog beyond the request. A working copy on disk while you filter it is fine. Keeping it as a saved reference, or summarizing it back into the conversation, is not. It exists so the full text of 100-plus skills does not have to be carried in context.
-
Prefer the fetched SKILL.md over prior knowledge. The catalog is generated from the skills as they are published, so an entry point is the current text even when it contradicts what you remember.
-
Do not treat this skill as a prerequisite. If a specific Google skill is already loaded and covers the request, use it directly.
When the fetch fails
Reached from step 2. Work through these in order, stopping at the first that succeeds:
-
Retry once with
curl -sSL. If the first attempt used a summarizing fetch tool or hit a transport error, this alone usually fixes it. -
List the repository tree instead. Run
curl -sSL 'https://api.github.com/repos/google/skills/git/trees/main?recursive=1'and read the paths ending in
SKILL.md. Each is a candidate. Fetch the two or three whose directory names best match the request fromhttps://raw.githubusercontent.com/google/skills/main/{path}, checking each one the way step 2 describes. -
Say so in the reply. If neither worked, state plainly that you could not reach the Google skills catalog and are answering without it. One line is enough, and it belongs in the reply to the user, not only in your reasoning.
A failed retrieval is never licence to answer as though it had succeeded.
Until you have parsed a skills array in this session you do not know which
skills exist: do not name one, do not describe one, and do not state that none
applies. Recalling a skill from memory and presenting it as a catalog result is
the worst outcome available, because nothing in the reply distinguishes it from
a real lookup.
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
Scrapling
83.7k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
LocalAI
49.3kLocalAI is the open-source AI engine. Run any model - LLMs, vision, voice, image, video - on any hardware. No GPU required.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
