/** * Persistent memory tools — save/recall facts across CLI sessions. * Mirrors the DeepSeek Agent SDK memory pattern: a per-project * directory of markdown files, each with a name + brief description, * indexed so the agent can browse and selectively load. * * Storage layout (all paths relative to the working directory): * .vigil/memory/ * MEMORY.md — index file the agent maintains * .md — individual memory entries * * Tools provided: * memory_save(name, content, description?) * memory_list() * memory_load(name) * memory_delete(name) */ import type { ToolDefinition } from '../core/toolRuntime.js'; export declare function createMemoryTools(workingDir: string): ToolDefinition[]; //# sourceMappingURL=memoryTools.d.ts.map