> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# workflows.DefaultProgress

```go theme={"system"}
func DefaultProgress() workflows.ProgressTracker
```

Return the default progress tracker for the currently executing task.

Use the returned tracker to update total and completed work units inside a task `Execute` method.

## Returns

A progress tracker for the default progress indicator.

<RequestExample>
  ```go Go theme={"system"}
  progress := workflows.DefaultProgress()
  if err := progress.Add(ctx, 10); err != nil {
      return err
  }
  if err := progress.Done(ctx, 1); err != nil {
      return err
  }
  ```
</RequestExample>
