/** * Base system prompt — shared behavioral instructions for all modes. * This is the "brain" that makes the agent a good coding assistant. */ export interface PromptContext { projectPath: string; projectName: string; gitBranch?: string; platform: string; commonBinaries?: { name: string; path: string | null; }[]; date: string; mode: string; modelId?: string; activePlan?: { title: string; plan: string; approvedAt: string; } | null; toolGuidance: string; } export declare function buildBasePrompt(ctx: PromptContext): string; //# sourceMappingURL=base.d.ts.map