Creating Plot Twists
    Preparing search index...

    Type Alias FocusMemoryEntry

    One entry of a focus's agent memory: something the user told Plot about what they are trying to achieve in that focus, or standing context worth remembering.

    type FocusMemoryEntry = {
        text: string;
        date: string | null;
        addedAt: string;
    }
    Index

    Properties

    Properties

    text: string

    The remembered fact, as a single short statement.

    date: string | null

    The absolute date (YYYY-MM-DD) this entry is tied to, or null when it is not tied to a date. Relative wording ("next Friday") is resolved to an absolute date when the entry is written.

    addedAt: string

    ISO timestamp of when the entry was added.