import { Task } from './todo'; /** * Build the prompt string for a task, and write the split files: * .autodev/AGENT_PROFILE.md — profile instructions (rebuilt fresh) * .autodev/messages/MESSAGE_.md — task trigger message * * The agent profile is loaded automatically by the agent via AGENTS.md → @.autodev/AGENT_PROFILE.md. */ export declare function buildPrompt(task: Task, root: string, todoDir: string, includeProfile?: boolean): { prompt: string; messageFile: string; };