Enabling
CONDUCTOR_BASE_URL is unset or unavailable.
Before calling delegate_run or submit_workflow_run, use list_profiles and pass a profile name from the response. Profile names are tenant-specific; guessed names such as default, assistant, or researcher can fail with unknown_profile.
delegate_run
Spawns a child run through the conductor.
Output:
wait is true, terminal statuses are ok, error, cancelled, or interrupted, with result populated when available.
get_run
Fetches run status and event counts.stream_run_events
Polling variant for run events since a cursor.
Output:
cancel_run
Cancels a child run when the caller’s current run is an ancestor in the parent chain.submit_workflow_run
Submits an executable workflow run to the conductor. Submitting a workflow run counts against the same delegation depth cap asdelegate_run.
get_workflow_run
Returns the full workflow run snapshot.
Node statuses:
0=pending, 1=ready, 2=running, 3=ok, 4=error, 5=skipped, 6=cancelled.
wait_workflow_run
Polls until the workflow run reaches a terminal status, pauses for repair, or times out.
When the workflow run pauses, output includes
repairContext for the failed node.
repair_workflow_run
Applies a repair action to a paused workflow run.retry_node, replace_node, add_dependency, and abort.