/** * Tool handlers for project instructions. */ import type { ToolResponse } from './types.js'; /** * Interface for config loader (for testability). */ export interface IConfigLoader { loadConfig(projectPath: string): Promise>; getInstructions(config: Record): string | undefined; } /** * Context for instructions tools. */ export interface InstructionsToolContext { projectPath: string; priorityInstructions: string; /** Optional config loader (for testing). */ configLoader?: IConfigLoader; } /** * Handle get_project_instructions tool. */ export declare function handleGetProjectInstructions(context: InstructionsToolContext): Promise; //# sourceMappingURL=instructions-handlers.d.ts.map