/** * Load project and global agent instruction files (AGENTS.md, CLAUDE.md). * Prefers AGENTS.md over CLAUDE.md when multiple exist at the same location. */ export interface InstructionSource { path: string; content: string; scope: 'global' | 'project'; } /** * Load all agent instruction files from global and project locations. * Returns an array of instruction sources, with global ones first. */ export declare function loadAgentInstructions(projectPath: string, configDirName?: string): InstructionSource[]; export declare function getStaticallyLoadedInstructionPaths(projectPath: string): string[]; /** * Format loaded instructions into a string for the system prompt. */ export declare function formatAgentInstructions(sources: InstructionSource[]): string; //# sourceMappingURL=agent-instructions.d.ts.map