12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
/**
|
|
* @claude-flow/codex - AGENTS.md Generator
|
|
*
|
|
* Generates AGENTS.md files for OpenAI Codex CLI
|
|
* Following the Agentic AI Foundation standard
|
|
*/
|
|
import type { AgentsMdOptions } from '../types.js';
|
|
/**
|
|
* Generate an AGENTS.md file based on the provided options
|
|
*/
|
|
export declare function generateAgentsMd(options: AgentsMdOptions): Promise<string>;
|
|
//# sourceMappingURL=agents-md.d.ts.map
|