finding-google-skills
Installation
SKILL.md
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.