Axiom Core v1.0 Docs
A developer-first hub for local semantic transformation, explicit boundary enforcement, and attested verification workflows.
Start with Installation, then review Core Concepts and API Usage. Each section is designed for quick scanning and deeper technical detail.
Full documentation is published at axiominfra.github.io/axiom-core-docs.
Installation
Install the Axiom-Core SDK using your preferred package manager.
npm install @axiom-infra/coreyarn add @axiom-infra/coreGetting Started
Initialize the SDK locally, transform sensitive data, and send only safe context to a cloud model.
import { Axiom } from "@axiom-infra/core";
const axiom = new Axiom({
securityTier: "standard",
enclave: "none",
});
const result = await axiom.reason({
context: privateDocuments,
task: "summarize obligations and risks",
model: "gpt-5",
});Core Concepts
Semantic Abstraction
Axiom Core transforms sensitive data into a non-identifying, structured context that preserves meaning and relationships.
Boundary Enforcement
Raw data never leaves the host. Only transformed context is allowed to cross the local-to-cloud boundary.
Attested Execution (Preview)
When enabled, the attested tier emits evidence that can be verified against the transformed output.
API Usage
Axiom Core provides a focused SDK for local transformation, boundary enforcement, and verifiable output.
import { Axiom } from "@axiom-infra/core";
const axiom = new Axiom({ securityTier: "standard", enclave: "none" });
const result = await axiom.reason({
context: privateDocuments,
task: "extract key obligations",
model: "gpt-5",
});Advanced Features
Attested Tier Preview
Run the transformation pipeline inside a TEE-backed execution path and receive attestation evidence for verification.
Verification Workflow
Use `AttestationVerifier` to validate evidence bindings, measurements, and freshness before trusting transformed output.
ZKP/zkML Roadmap
Zero-knowledge proofs for transformation correctness are part of the future roadmap and will be labeled clearly when available.
SDK Security Tiers
Choose standard or attested execution tiers depending on the assurance level required by your use case.
Resources
Explore the v1.0 docs, review the open-source SDK, and follow reference architectures for regulated workloads.