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

    Interface RunGraphWorkflowResponse

    MCP exports - MCP server implementation Split from index.ts for file size compliance (Issue #285) Updated Issue #538: Added missing tool registration exports

    interface RunGraphWorkflowResponse {
        workflow: string;
        status: "failed" | "completed";
        finalState: Readonly<GraphState>;
        stepsExecuted: number;
        nodesExecuted: number;
        durationMs: number;
        events: readonly GraphEventSummary[];
        checkpointCount: number;
        error?: string;
    }
    Index

    Properties

    workflow: string
    status: "failed" | "completed"
    finalState: Readonly<GraphState>
    stepsExecuted: number
    nodesExecuted: number
    durationMs: number
    events: readonly GraphEventSummary[]
    checkpointCount: number
    error?: string