/** * GPT-optimized orchestrator prompt — Codex prompt.md as foundation + OCO enhancements. * * Design philosophy: * - Base: OpenAI Codex official prompt.md ("precise, safe, helpful", concise, direct, friendly) * - Enhanced with: OCO's delegation system, verification loop, and exploration protocol * - Removed: excessive phase gates, repetitive XML anchors, over-literal intent classification * - Target: ~200 lines of effective prompt (vs original ~420 lines) */ import { type AvailableAgent, type AvailableCategory, type AvailableSkill, type AvailableTool } from "../dynamic-agent-prompt-builder"; export declare function buildGpt54OrchestratorPrompt(model: string, availableAgents: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;