/** * SkillSmith Skill Generator * * Generates skills with platform-aware deployment. * * @module smiths/skillsmith/generator */ import type { SkillOptions, GeneratedSkill, SkillDeploymentResult, InteractivePrompts } from './types.js'; /** * Generate a skill from options */ export declare function generateSkill(options: SkillOptions): Promise; /** * Deploy a generated skill to the target platform */ export declare function deploySkill(skill: GeneratedSkill, projectPath: string, dryRun?: boolean): Promise; /** * Interactive skill design workflow */ export declare function interactiveSkillDesign(): Promise; //# sourceMappingURL=generator.d.ts.map