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

    Interface LoadedSkillSet

    Represents a loaded set of skills for an agent. Includes execution order based on dependencies.

    interface LoadedSkillSet {
        agentId: string;
        agentRole: AgentRole;
        skills: readonly Skill[];
        executionOrder: readonly string[];
        missingRequired: readonly string[];
        loadedAt: Date;
    }
    Index

    Properties

    agentId: string

    ID of the agent this skill set was loaded for

    agentRole: AgentRole

    Role of the agent

    skills: readonly Skill[]

    Skills that were successfully loaded

    executionOrder: readonly string[]

    Execution order (skill IDs) based on dependency graph

    missingRequired: readonly string[]

    Required skills that could not be loaded

    loadedAt: Date

    When the skill set was loaded