> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# percy/agent

Workflow for running Percy builds in parallel. Your token will be read from $PERCY_TOKEN by default, but this can be overridden using the `percy_token` parameter.

## Commands

### finalize_all

Finalize all Percy builds

| Parameter | Type | Default | Description |
|---|---|---|---|
| `percy_token` | string | $PERCY_TOKEN | PERCY_TOKEN for your project. It is found on your project settings. |

## Jobs

### finalize_all

## Executors

### default

## Examples

### finalize_all_percy_builds

Finalize all Percy builds

```yaml
version: 2.1
orbs:
  percy: percy/agent@1.0.0
workflows:
  percy_finalize_all:
    jobs:
      - percy/finalize_all
```