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

    Interface CompositionStep

    A single step in a skill composition.

    interface CompositionStep {
        stepNumber: number;
        skillId: string;
        skillName: string;
        inputBinding: Record<string, InputBinding>;
        purpose: string;
    }
    Index

    Properties

    stepNumber: number

    Step number (1-indexed)

    skillId: string

    Skill to execute

    skillName: string

    Skill name (for readability)

    inputBinding: Record<string, InputBinding>

    How to bind input (from context or previous step)

    purpose: string

    Description of what this step achieves