Enum WorkflowOutcome
Outcome of the orchestrator pipeline: pass-through, planning needed, executed successfully, or execution failed.
public enum WorkflowOutcome
Fields
Executed = 2Workflow found and executed successfully.
ExecutionFailed = 3Workflow found but execution failed.
PassThrough = 0Not a workflow — route to agent normally.
PlanningNeeded = 1Workflow detected but not in catalog — prompt user to plan it.