tailorctl workspace workflow list

List workflows in the workspace with advanced pagination and formatting options.

This command supports multiple display formats and intelligent pagination:

  • Table format (default): Clean tabular display with key information
  • Compact format: Single line per workflow for terminal-friendly output
  • JSON format: Full workflow objects for scripting and automation

Pagination features:

  • Smart defaults: Shows first 20 workflows, newest first
  • Configurable page size: Use --page-size to control results per page
  • Fetch all: Use --all to retrieve all workflows (up to 1000 for safety)
  • Sort control: --sort asc/desc to control ordering

The command provides clear pagination context and guidance on viewing more results.

Usage

tailorctl workspace workflow list [flags]

Flags

      --all                Fetch all workflows (max: 1000 for safety)
  -h, --help               help for list
  -o, --output string      Output format: 'table', 'compact', or 'json' (default "table")
      --page-size uint32   Number of workflows per page (max: 100) (default 20)
      --sort string        Sort direction: 'asc' (oldest first) or 'desc' (newest first) (default "desc")

Flags inherited from parent commands

  -w, --workspace_id string   workspace ID (overrides active context)

Examples

tailorctl workspace workflow list

tailorctl workspace workflow list --page-size 50

tailorctl workspace workflow list --all

tailorctl workspace workflow list --sort asc

tailorctl workspace workflow list --output compact

tailorctl workspace workflow list --output json

See also