/** * Director meta-prompt builder for auto-routing. * * The Director is the lead agent in an auto-composed team. Its meta-prompt * tells it *what team it has* and *what each worker's job is* — so it only * needs to coordinate, not plan. Pre-composing the team is the key insight * that makes auto-routing reliable: the lead follows a script rather than * inventing delegation on its own. * * Worker noun: "relay worker" — chosen from s05 phrasing eval results. This * phrasing anchors the model to the agent-relay MCP tool namespace rather * than its native subagent mechanism. */ import type { TeamSpec } from './composer.js'; /** * Build the full system prompt for the Director (lead) agent. * * Includes: * - Role description with team size and composition * - Per-worker instructions (name, model tier, subtask) * - Coordination protocol (spawn → wait → synthesise → release) * - Onboarding text for the spawn/release tools */ export declare function buildDirectorPrompt(originalTask: string, team: TeamSpec): string; //# sourceMappingURL=director-prompt.d.ts.map