/** * synap skill add / list / remove — manage instruction skills on the pod. * * Skills follow the Agent Skills open standard (SKILL.md directories), so users * can add skills from many sources — the bundled Synap-native set, a local * folder, their existing ~/.claude/skills/, or any GitHub repo — and the agent * loads them. One dedicated command, not buried in bridge-setup. */ interface SkillManageOpts { podUrl?: string; apiKey?: string; } /** synap skill add */ export declare function addSkill(source: string, opts: SkillManageOpts): Promise; /** synap skill list */ export declare function listSkills(opts: SkillManageOpts & { debug?: boolean; }): Promise; /** synap skill remove */ export declare function removeSkill(slug: string, opts: SkillManageOpts): Promise; export {};