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

# Job Management

> Check, monitor, and cancel Atlas jobs from the CLI.

## atlas status

Check the current status of a job run.

```bash theme={null}
atlas status <job-run-id>
```

The job run ID is displayed when you start a job with `atlas generate-issue`. You can also find it in the job run URL on the web.

**Status values:**

| Status      | Description              |
| ----------- | ------------------------ |
| `pending`   | Queued, waiting to start |
| `running`   | Currently executing      |
| `completed` | Finished successfully    |
| `failed`    | Encountered an error     |
| `cancelled` | Stopped by request       |

**Example:**

```bash theme={null}
atlas status 550e8400-e29b-41d4-a716-446655440000
```

***

## atlas cancel

Cancel a running or pending job.

```bash theme={null}
atlas cancel <job-run-id>
```

Stops execution and sets the job run status to `cancelled`.

**Example:**

```bash theme={null}
atlas cancel 550e8400-e29b-41d4-a716-446655440000
```

***

## atlas watch

Interactively monitor your active jobs.

```bash theme={null}
# Show interactive list of active jobs
atlas watch

# Stream live status for a specific job run
atlas watch <job-run-id>
```

Without an argument, `atlas watch` displays a list of your active and recent job runs. Select one to stream its live progress. This is also how you reconnect to a job if your terminal disconnects mid-run.
