Build With Agents
EVA Composition For Agents
How agents should explain EVA composition.
Agents should explain EVA as source structure and data flow.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How agents should explain EVA composition.
| Form | Meaning | What the explanation should make visible |
|---|---|---|
| Sequential | One value feeds the next. | The intermediate value is named and consumed. |
| Conditional | A branch selects the result. | Every branch returns a compatible result. |
| Parallel | Independent branches run separately. | Branches do not depend on shared intermediate state. |
return MC_00.ADD8(amount, fee);
if (amount <= 0) {
return 0;
}
return 1;
return MC_00.ADD8(left, right);
