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

    Interface SkillDependency

    Represents a dependency edge between two skills.

    interface SkillDependency {
        skillId: string;
        dependsOn: string;
        type: SkillDependencyType;
        minVersion?: number;
    }
    Index

    Properties

    skillId: string

    ID of the skill that has the dependency

    dependsOn: string

    ID of the skill being depended upon

    Type of dependency relationship

    minVersion?: number

    Minimum version of the dependency required (optional)