this.me
    Preparing search index...

    Interface Memory

    Public semantic log item exposed by .me surfaces such as inspect(), me.memories, and exported snapshots.

    interface Memory {
        path: string;
        operator: string | null;
        expression?: any;
        value: any;
        hash: string;
        prevHash?: string;
        timestamp: number;
    }
    Index

    Properties

    path: string

    semantic destination path (where the write/claim lands). root is ""

    operator: string | null

    operator used to produce this memory (null for normal writes)

    expression?: any

    expression as provided by the user (pre-eval / pre-resolve).

    value: any

    value that was actually committed at path (post-eval / post-collect; may be encrypted)

    hash: string

    portable hash (FNV-1a 32-bit in me.ts)

    prevHash?: string

    previous memory hash for chain integrity (genesis = "")

    timestamp: number