vigiles API reference
    Preparing search index...

    Interface SkillStep

    One step of a gated skill pipeline.

    interface SkillStep {
        do: string | InstructionFragment[];
        gate?: Gate;
        retry?: number;
    }
    Index

    Properties

    Properties

    do: string | InstructionFragment[]

    What the model should do — prose, optionally with typed refs.

    gate?: Gate

    Deterministic check that must pass before advancing to the next step.

    retry?: number

    Max attempts to satisfy the gate before the step fails (default 1).