# show

The workflow-level `show` field turns on optional workflow display features, such as a header, the step count, and per-step flags.

```yaml
workflows:
  verbose-deploy:
    show:
      header: true
      flags: true
      count: true
      command: true
      progress: true
    steps:
      - name: plan
        type: atmos
        command: terraform plan vpc
```

## Fields

- **`header`**
  Display the workflow description as a styled header before the first step executes.
- **`flags`**
  Show command-line flag values under the header, such as 
  `stack`
   and 
  `identity`
  .
- **`command`**
  Show each step command before execution.
- **`count`**
  Show step count prefixes such as 
  `[1/5]`
  .
- **`progress`**
  Show a right-aligned progress bar during execution in TTY mode.

Step-level `show` values deep-merge with workflow-level defaults. Only fields set on the step override the workflow value.
