Skip to main content

Documentation Index

Fetch the complete documentation index at: https://onlook.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Attune Compliance is the enterprise layer on top of OnlookAI. It adds immutable audit trails, a policy engine, SIEM export, and SSO — designed for environments where attention data is subject to regulatory requirements.

Features

  • SOC 2 Type II certified — audited annually
  • Immutable audit logs — cryptographically signed event chains
  • 40+ built-in policy rules — e.g. “flag sessions below score 50 for more than 5 minutes”
  • SIEM export — Splunk, Microsoft Sentinel, CEF-compatible destinations
  • SSO + SCIM — SAML 2.0, OIDC, and SCIM provisioning
  • Role-based access — Admin, Analyst, Viewer roles

Getting started

Attune Compliance is available as a managed service. Request a demo to get access.

Policy engine

Policies are defined in YAML and evaluated against every session in real time.
- name: Low attention alert
  condition:
    score: { lt: 50 }
    duration: { gt: 300 }  # seconds
  actions:
    - type: flag
      severity: warning
    - type: webhook
      url: https://your-siem.com/ingest

See also