Member Junction
    Preparing search index...

    A single in-flight memory write requested by the LLM via the memoryWrites field on the loop response.

    interface MemoryWriteRequest {
        note: string;
        scopeHint?: "user" | "agent";
        type: "Context" | "Preference";
    }
    Index

    Properties

    Properties

    note: string

    The fact to remember, e.g. "User prefers bar charts over pie charts." Atomic and declarative.

    scopeHint?: "user" | "agent"

    Optional scope hint; the framework clamps scope to <= Agent+User regardless. 'agent' drops the user dimension.

    type: "Context" | "Preference"

    Descriptive category only. Behavioral/Constraint types are rejected in-flight (prompt-injection defense).