/** * Instructions Loader * Loads quality instructions from ~/.glm/instructions/ */ /** * Load quality instructions from file */ export declare function loadQualityInstructions(forceReload?: boolean): string; /** * Clear the instructions cache */ export declare function clearInstructionsCache(): void; /** * Build complete system prompt with quality instructions and profile */ export declare function buildSystemPrompt(profile?: string, noQuality?: boolean): string;