Hey Ryan, we generally don’t promote nested flows as a first class operation (prefer to use something like a factory function to generate all the tasks you need and add them to the parent flow) and consequently we don’t directly support this, for example, in Prefect Cloud, However, within Prefect Core, there’s no reason you couldn’t create a task that does nothing but create and execute another Flow. You could map over that task, generating flows all you want 🙂 . This is a strength of Prefect (it’ll do what you ask!) but I’d caution that it mixes abstractions and if there’s a way to use a single flow you’ll probably have an easier time.