MCPcopy
hub / github.com/coder/mux / getStep

Method getStep

src/node/services/workflows/WorkflowRunStore.ts:655–662  ·  view source on GitHub ↗
(
    runId: string,
    stepId: string,
    inputHash: string
  )

Source from the content-addressed store, hash-verified

653 }
654
655 async getStep(
656 runId: string,
657 stepId: string,
658 inputHash: string
659 ): Promise<WorkflowStepRecord | null> {
660 const [step] = await this.getSteps(runId, [{ stepId, inputHash }]);
661 return step ?? null;
662 }
663
664 async getCompletedStep(
665 runId: string,

Callers 8

getCompletedStepMethod · 0.95
runApplyPatchStepMethod · 0.80
runNestedWorkflowStepMethod · 0.80
runAgentStepMethod · 0.80
waitForAgentTaskFunction · 0.80

Calls 1

getStepsMethod · 0.95

Tested by 1

waitForAgentTaskFunction · 0.64