/** * Craft Command * Enhanced skill scaffolding with optional directories * (SkillKit calls this "create" — we call it "craft") */ import { Command } from 'commander'; export interface CraftOptions { full?: boolean; scripts?: boolean; references?: boolean; assets?: boolean; dir?: string; } /** * Register the craft command with commander */ export declare function registerCraftCommand(program: Command): void; //# sourceMappingURL=craft.d.ts.map