aiwg
Version:
Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo
41 lines • 1.65 kB
TypeScript
/**
* 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<import("./types.js").SkillDeploymentResult>;
/**
* Example 2: Generate a code analysis skill
*/
export declare function generateCodeAnalyzerSkill(projectPath: string): Promise<import("./types.js").SkillDeploymentResult>;
/**
* Example 3: Generate a test generation skill
*/
export declare function generateTestGeneratorSkill(projectPath: string): Promise<import("./types.js").SkillDeploymentResult>;
/**
* Example 4: Generate skill with dry-run
*/
export declare function previewSkillGeneration(projectPath: string): Promise<import("./types.js").SkillDeploymentResult>;
/**
* Example 5: Generate skill for multiple platforms
*/
export declare function generateMultiPlatformSkill(projectPath: string): Promise<import("./types.js").SkillDeploymentResult[]>;
/**
* Example 6: Generate skill with custom version
*/
export declare function generateVersionedSkill(projectPath: string): Promise<import("./types.js").SkillDeploymentResult>;
/**
* Example 7: Batch generate skills from configuration
*/
export declare function batchGenerateSkills(projectPath: string, skillConfigs: Array<Omit<SkillOptions, 'projectPath'>>): Promise<import("./types.js").SkillDeploymentResult[]>;
/**
* Example usage in a CLI or script
*/
export declare function exampleCliUsage(): Promise<void>;
//# sourceMappingURL=examples.d.ts.map