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

    Interface RoleSkillMapping

    Maps an agent role to its required and optional skill categories. Defines which skills should be loaded for agents of a specific role.

    interface RoleSkillMapping {
        role: AgentRole;
        requiredCategories: readonly SkillCategory[];
        optionalCategories?: readonly SkillCategory[];
        maxSkills?: number;
    }
    Index

    Properties

    role: AgentRole

    The agent role this mapping applies to

    requiredCategories: readonly SkillCategory[]

    Categories that must be loaded for this role

    optionalCategories?: readonly SkillCategory[]

    Categories that may be loaded if available

    maxSkills?: number

    Maximum number of skills to load for this role (overrides default)