20 lines
616 B
TypeScript
20 lines
616 B
TypeScript
/**
|
|
* @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<string>;
|
|
/**
|
|
* Generate a skill from a built-in template
|
|
*/
|
|
export declare function generateBuiltInSkill(skillName: string): Promise<{
|
|
skillMd: string;
|
|
scripts: Record<string, string>;
|
|
references: Record<string, string>;
|
|
}>;
|
|
//# sourceMappingURL=skill-md.d.ts.map
|