governance
    New
    2026-07-03

    Compliance Frameworks Guide

    Evaluate AI models against EU AI Act, DORA, MAS TRMG, NIST AI RMF, SR 11-7, HIPAA/FDA, and SOX/SEC. Generate audit-ready artifacts in minutes — including EU AI Act Annex III classification and Annex IV technical documentation enforced at deploy.

    compliance
    eu-ai-act
    annex-iv
    annex-iii
    dora
    nist
    mas-trmg
    sr-11-7
    hipaa
    sox

    Overview

    The compliance engine evaluates AI models against regulatory frameworks using a plugin architecture. Each framework plugin implements risk classification, control evaluation, and artifact generation. Evaluations are synchronous and complete in under 5 minutes.

    Compliance frameworks
    Per-framework compliance posture — health gauge, framework tabs (SR 11-7, EU AI Act, NIST…), and remediation guidance.
    Compliance
    Eu Ai Act tab.
    Compliance
    General tab.
    Compliance
    Hipaa Fda tab.
    Compliance
    Sr 11 7 tab.
    Compliance
    Detail panel (opens when you click a row).

    Supported Frameworks

    Seven frameworks are available out of the box.

    FrameworkJurisdictionKey ControlsPass Threshold
    EU AI ActEuropean UnionArt. 9 risk management, prohibited use classification75%
    DORA (EU 2022/2554)European UnionICT risk register, TLPT, incident reporting (12 controls)65%
    MAS TRMG + FEATSingaporeFairness, Ethics, Accountability, Transparency (12 controls)65%
    NIST AI RMF 1.0United StatesGOVERN/MAP/MEASURE/MANAGE (16 controls)60%
    SR 11-7United States (Fed)Model risk management, challenger models, validation70%
    HIPAA / FDA SaMDUnited StatesClinical AI safety, PHI boundaries, SaMD submissions75%
    SOX / SEC AI GovernanceUnited StatesMaterial AI risk, board reporting, audit trail70%

    Running an Evaluation

    Trigger evaluations via the API or GitHub Actions.

    typescript
    1import { AegisSovereignClient } from "@aegissovereign/sdk";
    2
    3const client = new AegisSovereignClient({
    4  baseUrl: "https://sovereign.yourcompany.com",
    5  apiKey: process.env.AEGISSOVEREIGN_API_KEY!,
    6  workspaceId: "ws_prod_abc123",
    7});
    8
    9const result = await client.regulatory.evaluate(
    10  "model_fraud_v2",
    11  "eu_ai_act",
    12  {
    13    use_case: "fraud_detection",
    14    incident_reporting_ref: "INC-2026-001",
    15  }
    16);
    17
    18console.log(result.passed);           // true
    19console.log(result.score);            // 0.83
    20console.log(result.findings.length);  // 2
    bash
    1curl -X POST https://api.aegissovereign.io/api/v1/compliance/evaluate \
    2  -H "Authorization: Bearer $API_KEY" \
    3  -H "Content-Type: application/json" \
    4  -d '{
    5    "model_id": "model_fraud_v2",
    6    "framework": "eu_ai_act",
    7    "workspace_id": "ws_prod_abc123"
    8  }'

    Compliance Artifacts

    Each evaluation generates signed artifacts ready for auditors, Legal teams, or regulatory submissions. Artifacts are stored as versioned records linked to the evaluation and can be downloaded at any time. When an evaluation fails, the RemediationSuggestionAgent fires automatically — it analyses the failing controls, maps them to specific regulatory text, and attaches a prioritised remediation plan (critical/high/medium with effort estimates) to the evaluation record. The CompliancePipelineAgent also auto-promotes a model if all required evaluations pass, or routes it to a Legal HITL approval queue if any fail.

    EU AI Act — Annex III classification & Annex IV documentation

    Digital Omnibus (June 2026): Annex III high-risk obligations apply from 2 December 2027 — deferred, not repealed; HIGH classifications carry an enforcement_note with the dates. Beyond the evaluation pack, three dedicated endpoints expose structured classification and the live technical-documentation state for any model — powering the EU AI Act panel in the Model Registry (the ⚖ row action) and the deploy-time enforcement gate. Classification (Article 6 + Annex III) returns the category, legal basis, rationale, and any carve-out — not just a risk label — with the fintech categories first-class. Annex IV documentation (Article 11) is assembled from evidence the platform already holds across the nine Annex IV sections, scored for per-section completeness with critical gaps listed; format=markdown returns the full downloadable document.

    Model signalClassificationLegal basis
    Credit scoring / creditworthiness of natural personsHIGHAnnex III 5(b)
    Financial-fraud detection (only)MINIMAL — exemptAnnex III 5(b) carve-out
    Mixed credit and fraud signalsHIGH (carve-out voided)Annex III 5(b)
    Life/health insurance risk & pricingHIGHAnnex III 5(c)
    Social scoring / biometric surveillance / NCII / CSAMUNACCEPTABLEArticle 5 (Digital Omnibus additions incl.)
    Chatbot / generative / emotion recognitionLIMITEDArticle 50 (transparency)

    Enforced at deploy — the Annex IV promotion gate

    Promoting a high-risk model to production is blocked while any critical Annex IV item is missing. The gate returns exactly what is outstanding and a link to the generated document; supplying an override reason proceeds but is written to the tamper-evident audit chain. Article 5 prohibited systems are never promotable; minimal/limited-risk models carry no Annex IV obligation. This is enforcement, not reporting — the deploy path is the control point.

    bash
    1curl -X POST https://api.aegissovereign.io/api/v1/registry/models/<id>/promote \
    2  -H "Authorization: Bearer $API_KEY" -H "Content-Type: application/json" \
    3  -d '{"target_stage":"production"}'
    4# → 422 EU_AI_ACT_NOT_READY
    5# {
    6#   "risk_level": "high",
    7#   "category": "Creditworthiness evaluation / credit scoring (Annex III 5(b))",
    8#   "blocking": ["Intended purpose (Annex IV 1(a))", "Measures for examination of bias (Art. 10(2)(f-g))"],
    9#   "documentation": "/api/v1/models/<id>/eu-ai-act/annex-iv"
    10# }
    Edit this page on GitHub