/** * Skill 管理命令 * 把 skills/liepin-cli/SKILL.md 安装到 ~/.claude/skills/,让 Claude Code 自动发现 */ export interface SkillOptions { action?: string; } export interface CopySkillResult { source: string; target: string; files_copied: number; } export declare function copySkill(sourceDir: string, targetDir: string): Promise; export declare function installSkill(_page: unknown, options?: SkillOptions): Promise; export declare const skillCommand: { name: string; description: string; args: { name: string; type: string; default: string; help: string; }[]; columns: { header: string; key: string; width: number; }[]; requiresPage: boolean; func: typeof installSkill; }; //# sourceMappingURL=skill.d.ts.map