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

    Interface SkillLibraryConfig

    Configuration for the skill library.

    interface SkillLibraryConfig {
        maxSkills: number;
        minSuccessRateForRetention: number;
        executionsBeforeEvaluation: number;
        enablePruning: boolean;
        trackExecutionHistory: boolean;
        maxHistoryPerSkill: number;
        minSuccessesForPromotion: number;
        skillPromoter?: SkillPromoter;
    }
    Index

    Properties

    maxSkills: number

    Maximum skills to store

    minSuccessRateForRetention: number

    Minimum success rate to keep skill (0-1)

    executionsBeforeEvaluation: number

    Number of executions before evaluating retention

    enablePruning: boolean

    Enable automatic skill pruning

    trackExecutionHistory: boolean

    Whether to track detailed execution history

    maxHistoryPerSkill: number

    Maximum execution history entries per skill

    minSuccessesForPromotion: number

    Minimum successful executions before promoting the skill as a belief into the shared substrate (Phase 6 of #2792). Default 5. Skills below this threshold are still tracked locally; promotion only fires once the signal stabilizes.

    skillPromoter?: SkillPromoter

    Optional promotion bridge to the shared belief store. When set, SkillLibrary fires the callback whenever a skill crosses the minSuccessesForPromotion threshold. Default: undefined (no-op).