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

# plerion compliance-frameworks

> View compliance framework posture and download reports.

With **plerion compliance-frameworks**, you can view compliance framework posture, trigger report generation, and download compliance reports.

<Tip>
  For more about compliance frameworks in the Plerion dashboard, see [Compliance frameworks](/guides/platform/compliance-frameworks).
</Tip>

***

## Synopsis

```bash theme={"system"}
plerion compliance-frameworks <subcommand> [options]
```

***

## Subcommands

### list

List available compliance frameworks.

```bash theme={"system"}
plerion compliance-frameworks list [--custom <true|false>]
```

| Flag       | Type   | Description                                                         |
| ---------- | ------ | ------------------------------------------------------------------- |
| `--custom` | string | `true` for custom frameworks only, `false` for Plerion-managed only |

### request-report

Trigger report generation for a compliance framework.

```bash theme={"system"}
plerion compliance-frameworks request-report --integration-id <id> --framework-id <id>
```

### download

Download a compliance report. If `--output-file` is omitted, writes to stdout.

```bash theme={"system"}
plerion compliance-frameworks download --integration-id <id> --framework-id <id> [--output-file <path>]
```

***

## Examples

```bash theme={"system"}
# List all compliance frameworks
plerion compliance-frameworks list

# List only Plerion-managed frameworks
plerion compliance-frameworks list --custom false

# Request a CIS report
plerion compliance-frameworks request-report \
  --integration-id int-abc123 \
  --framework-id CIS-AWSFB-v140

# Download the report
plerion compliance-frameworks download \
  --integration-id int-abc123 \
  --framework-id CIS-AWSFB-v140 \
  --output-file cis-report.pdf
```

***

## Output columns

| Column        | Description                        |
| ------------- | ---------------------------------- |
| ID            | Framework ID                       |
| NAME          | Framework name                     |
| VERSION       | Framework version                  |
| TYPE          | Framework type                     |
| POSTURE %     | Overall posture percentage         |
| PASSED        | Passed findings count              |
| TOTAL         | Total findings count               |
| CUSTOM        | Whether this is a custom framework |
| PROVIDERS     | Applicable cloud providers         |
| DESCRIPTION   | Framework description              |
| RELEASE DATE  | Framework release date             |
| LAST MODIFIED | Last modification date             |
| LINK          | Link to framework documentation    |
