> ## Documentation Index
> Fetch the complete documentation index at: https://critiqor-71f5274a.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# critiqor dashboard — Open a Run's Reliability Report

> critiqor dashboard opens the latest or a specific run's reliability report in your browser. Pass a run ID to view it. Key flags: --runs, --host, --port.

`critiqor dashboard` opens a reliability report in your browser. Use it to revisit a previous session, share a specific run with a teammate, or review a report you finalized with `--no-dashboard`.

## Syntax

```bash theme={null}
critiqor dashboard [RUN_ID] [OPTIONS]
```

## What It Does

Without a run ID, the command opens the most recently finalized run. Pass a run ID (for example, `run_001`) to open a specific session. Use `critiqor runs` to list all available run IDs.

## Arguments

| Argument | Required | Description                                                                                                              |
| -------- | -------- | ------------------------------------------------------------------------------------------------------------------------ |
| `RUN_ID` | No       | The identifier of the run to open. If omitted, the most recent run is opened. Use `critiqor runs` to list available IDs. |

## Options

| Flag     | Type    | Default     | Description                                                              |
| -------- | ------- | ----------- | ------------------------------------------------------------------------ |
| `--runs` | string  | `runs`      | Directory where run artifacts are stored.                                |
| `--host` | string  | `127.0.0.1` | Host for the dashboard server.                                           |
| `--port` | integer | `0`         | Port for the dashboard. Use `0` to automatically pick an available port. |

## Examples

```bash theme={null}
# Open the most recent run
critiqor dashboard

# Open a specific run
critiqor dashboard run_001

# Open on a fixed port
critiqor dashboard --port 8080

# Look for runs in a custom directory
critiqor dashboard --runs /path/to/my/runs
```

## Expected Behavior

The dashboard opens in your default browser. The full URL — including the host, port, and run path — is printed to the terminal so you can copy and share it or open it in a different browser if needed.
