/** * @claude-flow/codex - SKILL.md Generator * * Custom skills are rendered from typed options. Built-in skills use the * packaged `.agents/skills` trees as their canonical definitions so direct * generation, project initialization, and npm artifacts cannot drift. */ import type { BuiltInSkill, SkillMdOptions } from '../types.js'; export declare const BUILT_IN_SKILL_NAMES: readonly BuiltInSkill[]; /** * Generate a SKILL.md file based on the provided options. */ export declare function generateSkillMd(options: SkillMdOptions): Promise; /** * Read one canonical built-in tree from the package payload. */ export declare function generateBuiltInSkill(skillName: string): Promise<{ skillMd: string; scripts: Record; references: Record; }>; /** * Ensure every skill-local path is contained in and shipped with its tree. */ export declare function validateBuiltInSkillPayload(skillName: string, skillMd: string, scripts: Record, references: Record): void; //# sourceMappingURL=skill-md.d.ts.map