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

    Interface OrchestratorStep

    Step in an orchestration execution.

    interface OrchestratorStep {
        id: string;
        agentId: string;
        role: AgentRole;
        action: string;
        output: unknown;
        durationMs: number;
        tokensUsed: number;
        status: "failed" | "success" | "skipped";
        error: string | undefined;
    }
    Index

    Properties

    id: string

    Step identifier

    agentId: string

    Agent that executed the step

    role: AgentRole

    Agent role

    action: string

    Step action/description

    output: unknown

    Step output

    durationMs: number

    Duration in ms

    tokensUsed: number

    Tokens used in this step

    status: "failed" | "success" | "skipped"

    Status

    error: string | undefined

    Error if failed