Skip to main content
Go from an unscanned project to a full compliance package in under 5 minutes.
1

Initialize project

Create the .complior/ config directory and project profile.
complior init
Initialized .complior/ at ./.complior
  Created: project.toml (TUI config)
  Created: profile.json (engine config)

Run `complior` to start the dashboard, or `complior scan` to check compliance.
For interactive setup, run complior (TUI) — the onboarding wizard walks you through 8 steps: Theme → Project type → Trust level → Frameworks → Role → Industry → AI systems → Summary.
2

Scan your code

Run 5-layer static analysis on your project. No config file needed.
complior scan
* Complior v1.0.0  ·  EU AI Act Compliance Scanner
--------------------------------------------------------------------------------
Scanning  .
Files     500 collected
Elapsed   2.1s
Layers    L1 File Presence · L2 Document Structure · L3 Dependencies
          · L4 Code Patterns · NHI Secrets · GPAI Systemic Risk

--------------------------------------------------------------------------------
COMPLIANCE SCORE                                                   40 / 100  D
SECURITY SCORE                                                             N/A
Run `complior eval --security <url>` for security scoring
--------------------------------------------------------------------------------
!! Score capped — critical violations limit maximum achievable score

Framework Breakdown
  EU AI Act                   40 / 100   ########------------

Layer Results
  L1    File Presence            FAIL   11 issues found
  L2    Document Structure       FAIL   7 issues found
  L3    Dependencies             WARN   1 issues found
  L4    Code Patterns            WARN   35 issues found
  NHI   Secrets                  PASS   1 checks passed
  CROSS Cross-Layer              WARN   2 issues found
  GPAI  Systemic Risk            PASS   2 checks passed

--------------------------------------------------------------------------------
FINDINGS  (56 total · 5 high · 42 medium)
--------------------------------------------------------------------------------

  L1 File Presence
    F-001  !  HIGH  [L1]  Art. 26(4) · Agent Passport
       No Agent Passport found — AI SDK detected but no
       .complior/agents/*-manifest.json (Art. 26(4))
       Fix:  Run `complior agent init` to generate an Agent Passport

    F-002  !  HIGH  [L1]  Art. 6(2) · High-Risk Domain: Finance
       Code matches Finance / Credit patterns (Annex III §5(b)).
       AI system is likely high-risk under EU AI Act Art. 6(2).
       File:  src/data/industry-patterns.ts:43

  ...

--------------------------------------------------------------------------------
QUICK ACTIONS
--------------------------------------------------------------------------------
Auto-fix available        complior fix
Deep scan                 complior scan --deep
Full interactive view     complior tui
Export JSON               complior scan --json > report.json

Next: fix 5 high-severity issues to improve your score
The scan auto-discovers AI agents and creates Agent Passports during the first run.
3

Auto-fix compliance issues

Preview what can be fixed and the predicted score impact.
complior fix --dry-run
Dry-Run Fix Analysis (offline estimate)
Fixable: 29 findings
Predicted: 40 -> 72 (+32)
Apply all fixes:
complior fix
Use complior fix --ai to have LLM fill in document placeholders (requires .complior/.env with LLM config).
4

Open the dashboard

Launch the TUI with 9 interactive pages.
complior
This starts the background daemon and opens the terminal dashboard. Navigate with hotkeys:
KeyPageWhat it shows
DDashboardScore, deadlines, AI systems, activity log
SScanFindings by severity, per-obligation detail
FFixFixable items with diff preview
PPassportAll AI systems, completeness %, obligations
OObligations108 EU AI Act obligations with status
TTimelineVisual countdown to Aug 2, 2026
RReportExport: JSON, SARIF
LLogDaemon events, system messages
CChatLLM compliance assistant

What you now have

After these 4 commands, your project contains:
project/
├── .complior/
│   ├── project.toml                       # Project configuration
│   ├── profile.json                       # Domain, data types, risk level
│   ├── agents/
│   │   └── my-agent-manifest.json         # Agent Passport (ed25519 signed)
│   ├── evidence/
│   │   └── chain.json                     # Tamper-proof evidence chain
│   └── reports/
│       └── scan-report.json               # Latest scan results
Every file is cryptographically linked via the evidence chain. The entire .complior/ directory is your audit-ready compliance package.

Next steps

Deep dive: Scan

Understand the 5 analysis layers and 6 scan tiers.

Deep dive: Eval

Test your live AI system with 680 dynamic probes.

Agent Passport

Explore the 36 fields, 2 generation modes, and 11-stage data pipeline.

Compliance Documents

See all 6 document types Complior generates for you.