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

# qai findings

> List stored security findings

List findings persisted in the local SQLite database (`~/.qai/qai.db`).

## Commands

### `qai findings list`

List security findings with optional filters.

```bash theme={null}
qai findings list [OPTIONS]
```

**Options:**

| Option              | Default | Description                                                     |
| ------------------- | ------- | --------------------------------------------------------------- |
| `--module` / `-m`   | —       | Filter by module name.                                          |
| `--category` / `-c` | —       | Filter by category.                                             |
| `--severity` / `-s` | —       | Minimum severity (`INFO`, `LOW`, `MEDIUM`, `HIGH`, `CRITICAL`). |
| `--target` / `-t`   | —       | Filter by target ID.                                            |
| `--limit` / `-n`    | 20      | Maximum number of findings to display.                          |

Displays a table with ID, Module, Category, Severity, Title, and Created timestamp.

**Examples:**

```bash theme={null}
qai findings list
qai findings list --severity HIGH --limit 50
qai findings list --module proxy --target a1b2c3d4
```
