You set the scope
You decide what one Order contains. It can be a small fix or a feature that touches several repositories. Order is the name for that piece of work; your application decides how to store it and connect it to runtime runs. Keep the change small enough to follow from request to result. One Order can move through its workflow without waiting for a batch of other changes. That gives you a short path to feedback and less unfinished work to track.The life of an Order
- Describe the change. Supply requirements, designs, and constraints.
- Run the workflow. Its nodes implement and check the work.
- Answer at gates. A callback gate can hold work for a decision.
- Keep the evidence. Save the checks, outputs, and review decisions.
- Close the Order. Confirm that the result meets the requirements.
An Order’s route
A route is the list of workflows an Order must pass through. For a payment feature, that might be implementation, security review, and release. The route tells you what must happen. Dependencies tell you the order. Your application can express those dependencies in a graph and start the workflows through its nodes. Independent nodes can run together within the graph’s concurrency limits. You decide when the required workflows and their evidence are enough to close the Order.What travels with an Order
- Context: The requirements, designs, and constraints for the work.
- Workflow: The definition of the steps that carry it out.
- Output: The files and artifacts made or changed.
- Evidence: The checks and decisions used to accept the output.