/** * Custom Skill Management * Handles adding, listing, and removing custom skills */ import { type CustomSkillConfig } from '../config/index.js'; export interface AddSkillOptions { name?: string; priority?: string[]; } export interface AddSkillResult { name: string; path: string; fileCount: number; } /** * Add a custom skill from a local path */ export declare function addCustomSkill(cwd: string, source: string, options?: AddSkillOptions): Promise; /** * List all custom skills */ export declare function listCustomSkills(cwd: string): Promise; /** * Remove a custom skill */ export declare function removeCustomSkill(cwd: string, name: string): Promise; /** * Get custom skill by name */ export declare function getCustomSkill(cwd: string, name: string): Promise; //# sourceMappingURL=index.d.ts.map