/** * Codex project configuration generator. * * Codex reads project configuration from `.codex/config.toml` and project * instructions from `AGENTS.md`. This target is additive and selected through * the init target flags. */ import type { InitOptions } from './types.js'; export declare const CODEX_STATUS_LINE_ITEMS: string[]; export declare function generateCodexStatusLineConfig(): string; /** Generate the project-local adapter used by Codex's native hook runner. */ export declare function generateCodexHookScript(): string; export declare function generateCodexHooksConfig(): string; export declare function generateCodexConfig(options: InitOptions): string; export declare function generateCodexAgentsMd(): string; //# sourceMappingURL=codex-generator.d.ts.map