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

# list

List all of your jobs.

## Usage

`komo job list [OPTIONS]`

## Options

| Option      | Description                                                                                  | Type |
| ----------- | -------------------------------------------------------------------------------------------- | ---- |
| ‑l, ‑‑limit | The limit to the number of jobs that are listed. Defaults to 10. Use -1 to display all jobs. | int  |
| ‑s, ‑‑skip  | The number of jobs to skip                                                                   | int  |

## Examples

List your jobs

```bash theme={null}
komo job list
```

List 5 jobs, but skip the first 3 that would normally be displayed

```bash theme={null}
komo job list -l 5 -s 3
```
