nexus-agents - v2.80.0
    Preparing search index...

    Interface ExperienceRecord

    Experience record for MobiMem Evolution.

    interface ExperienceRecord {
        id: string;
        timestamp: Date;
        taskType: string;
        taskDescription: string;
        steps: readonly ExperienceStep[];
        success: boolean;
        learnings: string;
    }
    Index

    Properties

    id: string

    Unique experience ID

    timestamp: Date

    When the experience occurred

    taskType: string

    Task type

    taskDescription: string

    Description of the task

    steps: readonly ExperienceStep[]

    Steps taken during execution

    success: boolean

    Whether the task succeeded

    learnings: string

    Key learnings from this experience