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

# FRIA

> Fundamental Rights Impact Assessment — required by Art.27 for all high-risk AI systems.

## What is FRIA?

FRIA (Fundamental Rights Impact Assessment) is required by Art.27 of the EU AI Act **before** deploying any high-risk AI system. It documents how the system impacts fundamental rights and what mitigation measures are in place.

## Generate FRIA

```bash theme={null}
complior agent fria order-processor --organization "ACME Corp"
```

Output: `.complior/fria/fria-order-processor.md`

## What gets pre-filled (80%)

From your Agent Passport:

* System name, description, risk class
* Autonomy level and human oversight mechanisms
* Model provider and data residency
* Permissions and data access patterns
* Applicable articles and obligations

## What needs manual input (20%)

Sections marked with `[TO BE COMPLETED: ...]`:

* Specific fundamental rights impact analysis
* Mitigation measures for identified risks
* Approval and sign-off

<Tip>
  Use `complior fix --ai` to have LLM draft the remaining sections. Review and edit before submission.
</Tip>

## Additional flags

```bash theme={null}
complior agent fria order-processor \
  --organization "ACME Corp" \
  --impact "Processing personal data for order recommendations" \
  --mitigation "Human review for orders above €1000" \
  --approval "Maria Schmidt, DPO"
```
