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

    Interface SkillAttestation

    Records the authorization of a skill execution.

    interface SkillAttestation {
        skillId: string;
        executorId: string;
        timestamp: Date;
        inputHash: string;
        authorized: boolean;
        authorizationMethod: AuthorizationMethod;
    }
    Index

    Properties

    skillId: string

    ID of the skill being executed

    executorId: string

    ID of the agent executing the skill

    timestamp: Date

    When the attestation was created

    inputHash: string

    SHA-256 hash of the input parameters

    authorized: boolean

    Whether execution was authorized

    authorizationMethod: AuthorizationMethod

    How authorization was determined