RESOURCES · DEVELOPERS · WIRE THE WORK

Wire the workflow.

Typed SDKs. A predictable REST surface. Signed webhooks. Integration recipes for the systems your team already runs.

SESSION · run.completed
SDKS
2
ENDPOINTS
6
CONNECTORS
16
SDKS
2 clients

Typed clients for TypeScript and Python. Same response shape across runs, webhooks, and exports.

APIS
6 endpoints

REST surface for runs, evidence, workflows, and projects. Predictable, retry-safe, signed.

CONNECTORS
16 wired

CI, data, incident, and collaboration systems with signed delivery and verified payloads.

DEVELOPER SURFACES

Pick the surface that wires the work.

Four surfaces. Each one opens the right page for the integration — typed clients, signed delivery, connectors, or the infrastructure underneath.

DEV · 01
REST API

Predictable endpoints.

Create, list, and export with the same shape every time. Retry-safe request flows for runs, evidence, and workflows.

STARTS FROM · POST · GET · signed
OPEN →
DEV · 02
WEBHOOKS

Signed delivery.

Route run.completed, export.ready, and escalation events into CI, incident response, and the archive. Verified payloads.

STARTS FROM · Workflow events
OPEN →
DEV · 03
INTEGRATIONS

Connectors, ready.

CI, data, incident, and collaboration tooling already wired. Typed payloads. Evidence stays attached downstream.

STARTS FROM · CI · data · incident
OPEN →
DEV · 04
INFRASTRUCTURE

The rails under it.

Managed cloud setup, key handling, regional residency, and the controls reviewers ask about first.

STARTS FROM · Managed cloud
OPEN →
FIRST COMMANDS

Install. Run. Inspect.

Pick the language. Copy the install. Run the first call. The response shape is the same across both clients.

INSTALL
npm install @auraone/sdk
import { AuraOneClient } from "@auraone/sdk";

const client = AuraOneClient.withApiKey(process.env.AURAONE_API_KEY!);

const run = await client.evaluations.create({
  template_id: "rubric.web.qa",
  agent_bundle_url: "s3://bundle.zip",
  wait: false,
});

console.log(run.id, run.status);
SDK · @auraone/sdk · auraone-sdk · same response shape
DEVELOPERS

Wire it once. Keep the shape.

Typed clients, predictable endpoints, signed delivery. The integration surface stays still while the platform moves forward.

STARTS WITH

An install command, an API key, and a workflow the team is wiring this sprint.

LEAVES WITH

A typed client, a signed webhook, and the response shape already cached in CI.