| 1 | /** A loaded memory (AGENTS.md) file with its origin metadata. */ |
| 2 | export interface MemoryFile { |
| 3 | /** Absolute path to the file on disk. */ |
| 4 | path: string |
| 5 | /** The file's content (with @includes inlined). */ |
| 6 | content: string |
| 7 | /** Where this memory was loaded from. */ |
| 8 | type: "user" | "project" | "local" |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected