Flows

Use flow commands to create a flow in a collection and manage its ordered screenshot steps. Flow commands always use the collection latest version.

flowingto flow list

List flows in a collection:

flowingto flow list -c <collection-id>

flowingto flow create

Create a flow:

flowingto flow create "Checkout" -c <collection-id>

Add an optional description:

flowingto flow create "Checkout" -c <collection-id> --description "Purchase path"

flowingto flow show

Show the step order and image names for a flow:

flowingto flow show <flow-id-or-slug> -c <collection-id>

flowingto flow add

Add an existing item to a flow:

flowingto flow add <flow-id-or-slug> --item <item-id> -c <collection-id>

Insert at a 1-based position:

flowingto flow add <flow-id-or-slug> --item <item-id> -c <collection-id> --at 1

When --at is omitted, the item is appended. The same item can appear more than once in a flow.

flowingto flow remove

Remove a step by the 1-based order shown by flow show:

flowingto flow remove <flow-id-or-slug> -c <collection-id> --at 2

Collection ID resolution

The collection ID is resolved in the following order:

  1. -c, --collection CLI flag
  2. collection field in .flowingtorc.json

Use flowingto upload to upload new screenshots first, then pass the returned item id to flowingto flow add --item.