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

    Interface ExpertDefinition

    Definition of an expert's capabilities and metadata.

    interface ExpertDefinition {
        id: string;
        role: AgentRole;
        name: string;
        description: string;
        capabilities: string[];
        primaryDomain: ExpertTaskDomain;
        secondaryDomains: ExpertTaskDomain[];
        weight: number;
        available: boolean;
    }
    Index

    Properties

    id: string

    Unique expert identifier

    role: AgentRole

    Expert role type

    name: string

    Human-readable name

    description: string

    Description of expert's specialty

    capabilities: string[]

    Core capabilities

    primaryDomain: ExpertTaskDomain

    Primary domain of expertise

    secondaryDomains: ExpertTaskDomain[]

    Additional domains the expert can handle

    weight: number

    Base weight for scoring (0-1)

    available: boolean

    Whether the expert is currently available