Skip to main content

The Core Principle

When a user triggers an AI action in your app, the system needs to answer two questions:
  1. Who is making this request? (identity)
  2. What are they trying to do? (intent)
Traditionally, answering these questions requires sending user data — name, email, session data — to a third-party service. Aether Citadel never does this. Instead, we operate on semantic signatures — mathematical fingerprints of what a user intends, with zero personally identifiable information.

How It Works

The PII boundary is enforced architecturally — raw user data never reaches Citadel. It stays inside AetherDB behind row-level security.

User Intent Signature (UIS)

A UIS is a SHA-256 hash computed from:
  • Semantic tags — behavioural keywords (e.g. commerce, cloud-infra, wellness)
  • Intent class — one of: commerce, infrastructure, wellness, finance, education, social, other
  • TTL — expiry window for replay attack prevention
The hash is deterministic for the same context but reveals nothing about the user who generated it.

What Gets Stored


Compliance Implications

Because no PII crosses the boundary:
  • GDPR — no personal data processed by Citadel → no DPA needed
  • India DPDP Act — no “personal data” as defined in Section 2(t) touches Citadel
  • HIPAA — no PHI transmitted → Citadel can be used in healthcare AI pipelines
  • SOC 2 — audit trail on every verification without storing user identity

PII Guard

Before any context leaves AetherDB to Citadel, a PII guard runs on every tag:
Tags that match are silently dropped. The verification still succeeds with clean tags.