workflow-run

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Workflow Run

工作流运行

Execute and manage running workflows.
执行并管理运行中的工作流。

When to use

使用场景

When you need to run a defined workflow, monitor its progress, or control its execution (pause, resume, cancel).
当你需要运行已定义的工作流、监控其进度或控制其执行(暂停、恢复、取消)时。

Steps

操作步骤

  1. Execute — call
    mcp__claude-flow__workflow_execute
    or
    mcp__claude-flow__workflow_run
    with the workflow ID
  2. Monitor — call
    mcp__claude-flow__workflow_status
    to check progress and step outcomes
  3. Pause — call
    mcp__claude-flow__workflow_pause
    to halt execution at the current step
  4. Resume — call
    mcp__claude-flow__workflow_resume
    to continue from where paused
  5. Cancel — call
    mcp__claude-flow__workflow_cancel
    to abort the workflow
  1. 执行 — 调用
    mcp__claude-flow__workflow_execute
    mcp__claude-flow__workflow_run
    并传入工作流ID
  2. 监控 — 调用
    mcp__claude-flow__workflow_status
    检查进度和步骤结果
  3. 暂停 — 调用
    mcp__claude-flow__workflow_pause
    在当前步骤处停止执行
  4. 恢复 — 调用
    mcp__claude-flow__workflow_resume
    从暂停处继续执行
  5. 取消 — 调用
    mcp__claude-flow__workflow_cancel
    终止工作流

Execution modes

执行模式

  • Sequential — steps run one after another
  • Parallel — independent steps run concurrently
  • Conditional — steps execute based on previous step outcomes
  • Manual gate — pause for human approval before continuing
  • 顺序模式 — 步骤依次运行
  • 并行模式 — 独立步骤同时运行
  • 条件模式 — 根据前序步骤的结果执行步骤
  • 人工关卡 — 在继续前暂停以等待人工审批