/** * @claude-flow/codex - SKILL.md Generator * * Generates SKILL.md files for OpenAI Codex CLI skills * Uses YAML frontmatter for metadata */ import type { SkillMdOptions } from '../types.js'; /** * Generate a SKILL.md file based on the provided options */ export declare function generateSkillMd(options: SkillMdOptions): Promise; /** * Generate a skill from a built-in template */ export declare function generateBuiltInSkill(skillName: string): Promise<{ skillMd: string; scripts: Record; references: Record; }>; //# sourceMappingURL=skill-md.d.ts.map