UNPKG

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

21 lines 723 B
/** * 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<GeneratedSkill>; /** * Deploy a generated skill to the target platform */ export declare function deploySkill(skill: GeneratedSkill, projectPath: string, dryRun?: boolean): Promise<SkillDeploymentResult>; /** * Interactive skill design workflow */ export declare function interactiveSkillDesign(): Promise<InteractivePrompts>; //# sourceMappingURL=generator.d.ts.map