Stand up the workflow
Request access, pair on review requirements, generate the production API key, install the SDK. Local-first by default.
→Start with one workflow. Confirm the evidence chain. Expand with review-ready operations already in place.
Hosted deployment with review-ready controls from the first run.
Account, API key, SDK install, first run. In that order.
Compute, storage, networking, monitoring — inspected together.
Validate the result. Only scale after the evidence chain is clear enough to trust.
Request access, pair on review requirements, generate the production API key, install the SDK. Local-first by default.
→Run the first evaluation. Health monitoring, audit logging, and proof exports all populate against the same record.
→Once the evidence chain is trusted, scale workflows. SLOs, runbooks, and incident response stay attached.
Example flow. Exact steps vary by deployment model and security review requirements.
# Install the AuraOne SDK
npm install @auraone/sdk
# Set your API key (from app.auraone.ai)
export AURAONE_API_KEY="your-production-key"
# Your first evaluation
import { AuraOneClient } from "@auraone/sdk";
const client = AuraOneClient.withApiKey(process.env.AURAONE_API_KEY!);
const result = await client.evaluations.create({
template_id: "rubric.web.qa",
agent_bundle_url: "s3://bundle.zip",
wait: true,
});
console.log("Evaluation complete:", result.id, result.status);Four domains teams usually inspect during deployment review.
Isolated workloads per organization. Autoscaling where supported. Configurable quotas. Predictable performance envelopes.
Backups and restore procedures. Caching for low-latency reads. Object storage for exports and proof. Retention and deletion workflows.
TLS encryption in transit. Private networking options (plan dependent). Configurable inbound controls. CDN-backed asset delivery.
Prometheus metrics collection. Common monitoring destinations supported. Health dashboards. Automated alerting via Slack and email.
See a deployment path that matches your constraints and review requirements.