execute_pipeline
Run multi-agent pipelines to process input content with configurable modes, iteration limits, and approval checkpoints for controlled execution.
Instructions
Execute a pipeline with multiple agents.
Args:
agents: List of agent names
input_content: Input content to process
mode: Pipeline mode (sequential, iterative, parallel)
context: Optional context from Claude
max_iterations: Maximum iterations for iterative mode
confidence_threshold: Confidence threshold for stopping
require_approval_after: Pause iterative mode for human approval after N
iterations. Defaults to None (disabled) so max_iterations is the
real bound; pass an int to opt into an approval checkpoint.
Returns: Pipeline execution results
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | sequential | |
| agents | Yes | ||
| context | No | ||
| input_content | Yes | ||
| max_iterations | No | ||
| confidence_threshold | No | ||
| require_approval_after | No |