Generates lib/mix/tasks/<app>.workflow.ex containing your project's workflow.
The generated file lists every built-in step in a sensible order, each with a one-line description pulled from the step itself. It is data, not machinery: delete what you don't want, reorder freely, add your own steps. Run it with:
mix starter.runGenerating from a shared workflow
Pass --from with a workflow module (from a dependency, e.g. your personal
step pack) to expand its steps into the generated file instead of the
built-in catalog:
mix starter.new --from StarterJamil.WorkflowThe generated file copies the shared workflow's steps, so the app owns and can edit its setup while your pack remains the template.