import type { ResolvedRole } from "../types.ts"; /** * Sync rolebox skills into ~/.config/opencode/skills/ for oh-my-openagent discovery. * * oh-my-openagent's loadSkillsFromDir treats symlinks as directories: * it resolves them and looks for SKILL.md inside. So: * - Directory skills (with SKILL.md): create symlink to the directory * - Single-file skills (.md): create a wrapper directory with SKILL.md symlink inside */ export declare function syncSkillSymlinks(resolvedRoles: ResolvedRole[], globalSkillsDir: string): void; //# sourceMappingURL=skill-symlinks.d.ts.map