Core Operators
| Operation | Description | Example |
|---|---|---|
| prompt | Task sent to default agent (@system) | analyze this data |
| @agent prompt | Task sent to one specific agent | @writer draft article |
| @a1 @a2 prompt | Task sent to both agents | @dev @designer create UI |
| A | B | Chain Operator - Sequential chain, A then B | @research | @write |
| A & B | Parallel Operator - Parallel execution | @a task & @b task |
| A > B | Merge Operator - B depends on A | @a & @b > @c |
| A < B C | Fan-out Operator - B and C depend on A | @a task < @b @c |
| {{ var }} | Variable substitution | {{ topic }} |
| ( ) | Grouping for precedence control | (@a | @b) & @c |
