-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
Description
Is your feature request related to a problem? Please describe.
I often write multiple instructions for the AI, some of which depend on the output of others. Currently, there’s no way to guarantee the execution order, so I end up with race conditions where the AI executes them in an unpredictable sequence "as far as I know".
Describe the solution you'd like
Introduce an “order” (or “priority”) field for each instruction in the Instructions tab.
- This could be a simple integer (e.g. 1, 2, 3) or a drag-and-drop UI to re-order instructions.
- The system would then process instructions strictly in ascending order of this field.
Additional context
If possible, it would be great to visualize the dependency graph (e.g. arrows showing “this runs after that”).
cyyeh and xpfxzxc