Interactive Demo
See it in action
Watch Ultra-Dex orchestrate a workflow in real-time.
Workflow
# build-feature.dex
workflow:
name: "Build Feature"
steps:
- planner → architect
- architect → coder
- coder → tester
Progress
Parse
Workflow DSL → Graph
Schedule
Topological ordering
3
Dispatch
Agent assignment
4
Verify
Output validation
Live OutputRunning
$ ultradex run build-feature.dex
▶ Parsing workflow...
✓ Valid DAG structure
✓ 3 steps identified
▶ Scheduling tasks...
✓ planner ready
✓ architect ready
✓ coder ready
✓ tester ready
▶ Executing...
✓ planner complete (0.8s)
✓ architect complete (1.2s)
→ coder running...