veto_workflow
Execute a sequential agent pipeline with pass/fail gates between steps. Stops if a step's confidence is below its gate. Returns per-step results and an overall verdict.
Instructions
Runs a sequential agent pipeline with optional pass/fail gates between steps. Each step runs a worker agent; if a gate score is set and the step confidence falls below it, the pipeline stops. Returns per-step results plus an overall verdict (passed/partial/failed).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Execution mode. "linear" (default) runs steps sequentially. "dag" reads dependencies, runs independent steps in parallel, gates dependent steps. | |
| steps | Yes | Ordered pipeline steps. | |
| project_dir | No | Optional project directory — auto-injects codebase context into all steps. |