MCPcopy Index your code
hub / github.com/MatterAIOrg/OrbCode / MemoryFile

Interface MemoryFile

src/memory/types.ts:2–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1/** A loaded memory (AGENTS.md) file with its origin metadata. */
2export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected