| Composition | Meaning | Agent question |
|---|---|---|
| Sequential | A runs before B and B uses A’s output. | What data flows from A to B? |
| Conditional | One branch is selected by a condition. | Do all branches return the same kind of result? |
| Parallel | Independent branches are evaluated separately. | Are the branches independent? |
Sequential
Sequential composition is the normal pipeline shape.CONCAT feeds HASH.

