Architecture¶
Axiom Core is a local-first semantic transformation system. It exposes a public SDK API and runs a deterministic transformation pipeline.
Pipeline¶
- Distillation (entity extraction)
- Abstraction (roles + relations)
- Masking (synthetic identifiers)
- Boundary validation
- 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 (
Axiomclass) - Session management + config binding
- Attestation parser + verifier (preview)
Prev: Developer Guide Overview | Next: Attestation Pipeline