// @ts-check /** * Fetches the latest agent-skills index.json from supabase/agent-skills and * writes it to public/.well-known/agent-skills/index.json. * * Skill URLs in the published index.json are absolute GitHub Release asset * URLs — no rewriting needed on this side. * * Spec: https://github.com/agentskills/agentskills/pull/254 * Runs unauthenticated — public repo, build-time only. */ import { promises as fs } from 'node:fs' import { dirname, join } from 'node:path' import { fileURLToPath } from 'node:url' const __dirname = dirname(fileURLToPath(import.meta.url)) const OUT_DIR = join(__dirname, '..', 'public', '.well-known', 'agent-skills') const REPO = 'supabase/agent-skills' async function fetchJson(url) { const res = await fetch(url, { headers: { 'User-Agent': 'supabase-www-build' } }) if (!res.ok) throw new Error(`GET ${url} → ${res.status}`) return res.json() } async function main() { const release = await fetchJson(`https://api.github.com/repos/${REPO}/releases/latest`) console.log(`Fetching agent-skills release: ${release.tag_name}`) const indexAsset = release.assets.find((a) => a.name === 'index.json') if (!indexAsset) throw new Error('No index.json found in release assets') const index = await fetchJson(indexAsset.browser_download_url) await fs.mkdir(OUT_DIR, { recursive: true }) await fs.writeFile(join(OUT_DIR, 'index.json'), JSON.stringify(index, null, 2) + '\n') for (const skill of index.skills ?? []) { console.log(` ${skill.name}`) } console.log(`Done — wrote public/.well-known/agent-skills/index.json`) } main().catch((err) => { console.error(err) process.exit(1) })