Files
crewAI/lib
Vinicius Brasil 02eeefe5ea Add each composite action to FlowDefinition
Lets a definition loop over an array without writing Python. Each
iteration exposes `item` and prior steps `outputs`.

```yaml
do:
  call: each
  in: state.rows
  do:
    - normalize:
        call: tool
        ref: my_tools:NormalizeRowTool
        with: { row: "${ item }" }
    - lead_scoring:
        call: agent
        # ...
```
2026-06-14 16:05:25 -07:00
..
2026-06-11 10:06:07 -07:00