AuraOne / Resources / AuraOne Open

Aura3D: The AI-Native 3D SDK for the Web

AuraOne Open includes Aura3D 1.4.3, a TypeScript SDK for prompt-to-code browser 3D, typed GLB/glTF assets, diagnostics, screenshot evidence, and static deploy checks, published under the MIT license.

Editorial illustration of a robot arm, synchronized signals, and a reviewed dataset.
Published
2026-06-03
Reviewed
2026-06-03
Author
AuraOne Open team
Category
AuraOne Open
Reading
6 min

At a glance

Article details

Editorial
Sources
Sources are the named links, releases, papers, datasets, regulations, and examples in the article body. Recheck external material at the time of use.
Scope
This is dated analysis. Product availability, release evidence, vendors, markets, model behavior, and regulatory requirements may change after publication.
Format
AuraOne editorial analysis

AuraOne Open includes Aura3D 1.4.3, a TypeScript SDK for browser-native 3D scenes, prompt-to-code workflows, typed GLB/glTF assets, WebGL/WebGPU diagnostics, screenshot evidence, and static deploy checks, published under the MIT license.

The short version: Aura3D lets a developer or coding agent describe a 3D surface and keep the result as editable TypeScript.

That matters because browser 3D is moving into ordinary software. Product pages need real GLB viewers. Data apps need spatial views. Robotics and Spatial 3D teams need public explainers that do not expose private captures. Agent-generated interfaces need an SDK that gives them maintained scene systems instead of a blank renderer and improvised glue.

Aura3D is built for that workflow.

What Aura3D Gives Developers

Aura3D starts from the way AI coding agents actually work. A prompt should not produce a fragile pile of geometry and hand-written asset paths. It should start from maintained scene kits, use typed assets, and leave behind source code a developer can inspect.

The core install path is simple:

npx create-aura3d@1.4.3 my-scene --template product-viewer
cd my-scene
npm run dev

Teams can also install the engine directly:

npm install --save-exact @aura3d/engine@1.4.3

The SDK includes scene kits for product viewers, particles, material labs, data worlds, city blocks, physics scenes, mini-games, and cinematic browser scenes. It also gives agents clear rules for typed assets, route health, screenshot checks, and static deploy output.

Typed Assets, Not Invented Paths

3D workflows break when a model invents an asset ID or points at a model that was never supplied. Aura3D's safe asset workflow makes the supplied GLB or glTF explicit before the app code uses it.

import { createAuraApp, sceneKits } from "@aura3d/engine";
import { assets } from "./aura-assets";

const kit = sceneKits.productViewer(assets.product);

createAuraApp("#app", kit.toAppOptions());

That pattern is small, but it is important. The generated source owns the scene. The asset reference is inspectable. The deployed app remains normal browser software.

How It Fits AuraOne Open

AuraOne Open is the public tooling layer behind Human Data and App Data. Rubric Studio Open handles rubric authoring. Agent Studio Open handles agent traces and regressions. Robotics Studio Open handles local robotics dataset review. Trust Toolkit packages the review and reliability checks. AuraGlass gives the UI layer.

Aura3D adds the browser-native 3D layer.

It belongs in the Open catalog because 3D product surfaces, data worlds, robotics explainers, and Spatial 3D previews need the same local-first contract as the rest of AuraOne Open: inspect the source repository and MIT license, install the verified 1.4.3 packages, keep the artifact, and bring AuraOne in only when shared state, review, or governance is the real problem.

Aura3D vs Spatial 3D Lab

The boundary is simple.

Aura3D is the open SDK for building the scene: a product viewer, data world, interactive explainer, or browser-native 3D app.

Spatial 3D is the App Data app for real 3D work: capture lineage, transform history, alignment notes, delivery state, handoff files, and scoped export terms.

One helps developers ship browser 3D. The other helps teams keep private 3D captures and delivery files organized. They are connected, but they should not be confused.

Start Here

Launch the site at aura3d.auraone.ai, open the AuraOne-owned overview at /open/aura3d, or inspect the source at github.com/auraoneai/aura3d.

If you are using an AI coding assistant, start with the agent context:

https://aura3d.auraone.ai/llms.txt

The goal is not to hide 3D inside a black box. The goal is to make browser 3D feel like software again: prompted, shaped, inspected, tested, and shipped as source.