Quick Start
User Interaction Flow
Configuration Levels
Flow Methods
| Method | Description |
|---|---|
.start() | Set starting agent |
.when() | Add conditional branch |
.otherwise() | Set fallback handler |
.run() | Execute the flow |
API Reference
Workflows Module
Workflow and flow patterns
Conditions Module
Conditional routing
Best Practices
Keep flows simple
Keep flows simple
Start with 2-3 branches, add complexity as needed.
Always have a fallback
Always have a fallback
Use
.otherwise() to catch unmatched cases.Test each path
Test each path
Verify all branches work before production.

