/** * Two things every reader of a memory needs besides its body: which other * memories it points at, and how old it is. */ /** The distinct `[[name]]` targets in `content`, in order of first mention, at most 20. */ export declare function memoryLinkNames(content: string): string[]; /** * `today`, `1 day old`, `12 days old`. Whole days, because a memory is a * point-in-time claim and the question a reader has is whether the world has * had time to move since — which hours do not answer and days do. */ export declare function describeMemoryAge(updatedAt: number, now?: number): string; /** The sentence every aged memory carries, so the model checks before it relies. */ export declare const MEMORY_VERIFY_NOTICE = "Memories are point-in-time: a file, function, flag or command a memory names may have changed or gone since. Verify it against the current code before relying on it, and update or archive the memory if it is wrong."; //# sourceMappingURL=links.d.ts.map