# tuist build xcode cache-task list

Lists cacheable tasks for a build.

## Arguments

### build-id

The ID of the build.

```bash
tuist build xcode cache-task list [build-id]
```

### project `Optional`

The full handle of the project. Must be in the format of account-handle/project-handle.

```bash
tuist build xcode cache-task list --project [project]
tuist build xcode cache-task list -P [project]
```

### path `Optional`

The path to the directory or a subdirectory of the project.

```bash
tuist build xcode cache-task list --path [path]
tuist build xcode cache-task list -p [path]
```

### status `Optional`

Filter by cache status (hit_local, hit_remote, or miss).

```bash
tuist build xcode cache-task list --status [status]
```

### task-type `Optional`

Filter by task type (clang or swift).

```bash
tuist build xcode cache-task list --task-type [task-type]
```

### page `Optional`

The page number to fetch (1-indexed).

```bash
tuist build xcode cache-task list --page [page]
```

### page-size `Optional`

The number of tasks per page. Defaults to 10.

```bash
tuist build xcode cache-task list --page-size [page-size]
```

### json `Optional`

The output in JSON format.

```bash
tuist build xcode cache-task list --json
```
