/** * Orchestrator Prompt Generator — generates orchestrator prompt content. * * This is injected via `ao start` to provide orchestrator-specific context * when the orchestrator agent runs. */ import type { OrchestratorConfig, ProjectConfig } from "./types.js"; export interface OrchestratorPromptConfig { config: OrchestratorConfig; projectId: string; project: ProjectConfig; } /** * Generate orchestrator prompt content. * Provides orchestrator agent with context about available commands, * session management workflows, and project configuration. */ export declare function generateOrchestratorPrompt(opts: OrchestratorPromptConfig): string; //# sourceMappingURL=orchestrator-prompt.d.ts.map