/** * SkillSmith Usage Examples * * Demonstrates how to use SkillSmith to generate skills. * * @module smiths/skillsmith/examples */ import type { SkillOptions } from './types.js'; /** * Example 1: Generate a basic voice application skill */ export declare function generateVoiceApplySkill(projectPath: string): Promise; /** * Example 2: Generate a code analysis skill */ export declare function generateCodeAnalyzerSkill(projectPath: string): Promise; /** * Example 3: Generate a test generation skill */ export declare function generateTestGeneratorSkill(projectPath: string): Promise; /** * Example 4: Generate skill with dry-run */ export declare function previewSkillGeneration(projectPath: string): Promise; /** * Example 5: Generate skill for multiple platforms */ export declare function generateMultiPlatformSkill(projectPath: string): Promise; /** * Example 6: Generate skill with custom version */ export declare function generateVersionedSkill(projectPath: string): Promise; /** * Example 7: Batch generate skills from configuration */ export declare function batchGenerateSkills(projectPath: string, skillConfigs: Array>): Promise; /** * Example usage in a CLI or script */ export declare function exampleCliUsage(): Promise; //# sourceMappingURL=examples.d.ts.map