Uploading

Upload screenshots to a collection using the upload command.

flowingto upload

Upload one or more image files:

flowingto upload ./screenshots/*.png -c <collection-id>

Options

  • -c, --collection <id> — Collection ID (required unless set in .flowingtorc.json)
  • -t, --title <title> — Title for the screenshot when using stdin mode

Supported formats

The CLI accepts common image formats including PNG, JPG, JPEG, WebP, and GIF.

Glob patterns

You can use glob patterns to select multiple files:

flowingto upload "./screenshots/**/*.png" -c <collection-id>

Stdin support

Pipe image data directly into the CLI:

cat screenshot.png | flowingto upload - -c <collection-id> -t "Home Screen"

When reading from stdin, use - as the file argument and provide a title with -t.

Collection ID resolution

The collection ID is resolved in the following order:

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

If neither is found, the command exits with an error.