/** * GitHub-direct registry adapter. * * This is the original pre-registry install path wrapped in the adapter * interface: the user types `user/repo[@ref]` directly. It does NOT search * (GitHub code search is a separate API with its own auth/rate-limit story and * isn't a skill catalog), so `search()` returns an empty result. Its job is * solely to make `user/repo` flow through the same `:` * resolution as the skills.sh adapter — except here the "registry id" IS the * install ref already. * * Registered as the fallback adapter so `/skill-install user/repo` keeps * working unchanged when no `:` prefix is given. */ import type { SkillRegistryAdapter } from './registry-adapter.js'; export declare const githubDirectAdapter: SkillRegistryAdapter; //# sourceMappingURL=github-direct-adapter.d.ts.map