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

# List

> Listar workers del workspace

Muestra todos los workers desplegados en el workspace actual.

## Uso

```bash theme={null}
plazbot workers list
```

## Opciones

| Opcion              | Descripcion                                                       |
| ------------------- | ----------------------------------------------------------------- |
| `--type <tipo>`     | Filtra por tipo: `tool`, `worker`, `sync`, `schedule`, `webhook`. |
| `--status <estado>` | Filtra por estado: `active`, `inactive`, `error`.                 |
| `--dev`             | Lista workers del entorno de desarrollo.                          |

## Ejemplo

```bash theme={null}
# Listar todos los workers
plazbot workers list

# Listar solo tools activos
plazbot workers list --type tool --status active

# Listar webhooks
plazbot workers list --type webhook
```

## Columnas mostradas

| Columna       | Descripcion                                  |
| ------------- | -------------------------------------------- |
| Name          | Nombre del worker.                           |
| Type          | Tipo: tool, worker, sync, schedule, webhook. |
| Status        | Estado actual: active, inactive, error.      |
| Last Executed | Fecha de la ultima ejecucion.                |
| Executions    | Numero total de ejecuciones.                 |
| Errors        | Numero total de errores.                     |
| Webhook URL   | URL del webhook (solo para tipo webhook).    |
