Skip to content

Architecture

Axiom Core is a local-first semantic transformation system. It exposes a public SDK API and runs a deterministic transformation pipeline.

Pipeline

  1. Distillation (entity extraction)
  2. Abstraction (roles + relations)
  3. Masking (synthetic identifiers)
  4. Boundary validation
  5. Canonical serialization + hashing

Design goals

  • Deterministic output for auditability
  • Explicit boundary violations when sensitive data leaks
  • Stable canonical hashing for verification workflows

Execution tiers

  • Standard tier: runs the pipeline locally
  • Attested tier: routes through the enclave bridge and emits evidence

Components

  • Public API (Axiom class)
  • Session management + config binding
  • Attestation parser + verifier (preview)

Prev: Developer Guide Overview | Next: Attestation Pipeline