/** * Đọc toàn bộ memory của một project — trả về markdown string. * Format: nội dung từng file memory ghép lại. */ export declare function readMemory(cwd: string): string; /** * Ghi một memory entry theo topic (tên file = topic.md). * Agent tự ghi nhớ facts về project để dùng ở session sau. */ export declare function writeMemory(cwd: string, topic: string, content: string): void; export declare function deleteMemory(cwd: string, topic: string): void; export declare function listMemoryTopics(cwd: string): string[];