/** * Agent Prompts — per-mode prompt builders and shared instructions. * * Each agent type lives in its own file. Shared instructions (signal format, * input files, ID generation) are in shared.ts. */ export { SIGNAL_FORMAT, INPUT_FILES, ID_GENERATION, CODEBASE_EXPLORATION, CONTEXT_MANAGEMENT, DEVIATION_RULES, GIT_WORKFLOW, TEST_INTEGRITY, SESSION_STARTUP, PROGRESS_TRACKING, buildInterAgentCommunication } from './shared.js'; export { buildExecutePrompt } from './execute.js'; export { buildDiscussPrompt } from './discuss.js'; export { buildPlanPrompt } from './plan.js'; export { buildDetailPrompt } from './detail.js'; export { buildRefinePrompt } from './refine.js'; export { buildChatPrompt } from './chat.js'; export type { ChatHistoryEntry } from './chat.js'; export { buildErrandPrompt, buildErrandRevisionPrompt } from './errand.js'; export { buildWorkspaceLayout } from './workspace.js'; export { buildPreviewInstructions } from './preview.js'; export { buildConflictResolutionPrompt, buildConflictResolutionDescription } from './conflict-resolution.js';