/** * Shared skill name validation utilities. * * Used by both `skillsmith author init` and `skillsmith create` to enforce * a consistent, registry-safe naming convention across all scaffolding paths. */ /** * Valid skill names: lowercase letters, digits, and hyphens only. * Must start with a lowercase letter. * Matches the Skillsmith registry slug format. */ export declare const VALID_SKILL_NAME_RE: RegExp; /** * Validate a skill name against the canonical Skillsmith naming convention. * * @returns `true` if valid, or a string error message if invalid. */ export declare function validateSkillName(name: string): true | string; //# sourceMappingURL=skill-name.d.ts.map