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

    Interface SkillExecution

    Record of a skill execution.

    interface SkillExecution {
        skillId: string;
        startTime: Date;
        endTime: Date;
        status: SkillExecutionStatus;
        input: Record<string, unknown>;
        output?: string;
        errorMessage?: string;
        context?: string;
    }
    Index

    Properties

    skillId: string

    ID of the skill executed

    startTime: Date

    When the execution started

    endTime: Date

    When the execution ended

    Execution status

    input: Record<string, unknown>

    Input provided

    output?: string

    Output produced (if successful)

    errorMessage?: string

    Error message (if failed)

    context?: string

    Context in which the skill was used