/** * remixmate — public library exports. * * The CLI entrypoint lives in `cli.ts` (`bin: remixmate`). This file is the * library surface for type-sharing consumers; the published npm package * exposes it via `main: dist/index.js` / `types: dist/index.d.ts`. */ export { loadSkills, findSkill, SKILLS_DIR } from './registry.js'; export type { SkillDef, SkillEntry } from './registry.js';