Introduction to Aug

Welcome to Aug, the runtime for spatial computing on Apple platforms. Aug makes it effortless to build immersive, AI-powered experiences that feel native to visionOS.

What is Aug?

Aug is a comprehensive framework that unifies ARKit, RealityKit, Core ML, and SwiftUI into a single, declarative API. It's designed to help you build production-ready spatial computing applications faster.

Key Benefits

  • Declarative API - SwiftUI-style syntax for spatial computing
  • Zero Latency - Built on Swift 6 concurrency for 90fps experiences
  • AI-First - Deep integration with Apple Foundation Models
  • Production Ready - Battle-tested components and best practices
  • Quick Start

    Get started with Aug in minutes:

    swift
    1import Aug
    2
    3@main
    4struct MyApp: App {
    5    var body: some Scene {
    6        AugmentedSpace {
    7            SpatialView {
    8                Model3D(named: "scene")
    9                    .augIntelligence(.environmentAware)
    10            }
    11        }
    12    }
    13}

    Next Steps

  • [Installation](/docs/installation) - Set up Aug in your project
  • [Core Concepts](/docs/core-concepts) - Learn the fundamentals
  • [API Reference](/docs/api-reference) - Explore the full API
  • Aug | AI-Powered Spatial Computing for iOS & visionOS