//#region src/index.d.ts type SkillTarget = 'all' | 'claude' | 'codex' | 'opencode'; interface InstallOptions { force: boolean; target: SkillTarget; } declare function run(argv?: string[]): Promise; declare function installSkill(options: InstallOptions): Promise; //#endregion export { installSkill, run };