Skip to main content

Auraison Platform

What is Auraison?

Auraison is an agentic AI platform that orchestrates GPU workloads, experiment tracking, and data pipelines through Claude Code subprocess agents. It follows a four-plane architecture (user, control, data, management) inspired by SDN/telecom separation patterns.

The platform provides the infrastructure on which reference applications run. The platform itself is application-agnostic — it manages clusters, jobs, data, and agent lifecycles.

Platform Architecture

PlaneResponsibilityKey Components
Control planeJob dispatch, agent lifecycle, experiment trackingFastAPI API, AgentOps, Claude Code agents, MAC framework
User planeWorkload execution on KubeRaytorch.dev.gpu, ros.dev.gpu Ray environments
Data planePersistent storage, context retrievalDuckDB + DuckLake + MinIO lakehouse
Management planeBilling, tenancy, quotasv2 placeholder

See architecture/four-plane.md for the full design.

MAC: Multi-Agent Control

The MAC framework (control-plane/backend/mac/) provides the information-theoretic foundation for multi-agent communication — treating agent outputs as noisy channel observations and applying coding-theoretic techniques (majority vote, soft consensus, turbo iterative fusion, Viterbi decoding) to reduce hallucination. See mac-principles.md for the theoretical framework.

Reference Applications

Auraison supports three reference applications. Each is a domain-specific system deployed onto the platform's KubeRay clusters.

ApplicationDomainRepositoryUser PlaneStatus
turtlebot-mazeMobile robot navigationaegean-ai/turtlebot-mazeros.dev.gpuActive
ar4-physical-aiRobotic arm manipulation (VLA)aegean-ai/ar4-physical-airos.dev.gpu + torch.dev.gpuActive
Deep Evidence Agent (DEA)Engineering traceability & evidence-grounded reasoningaegean-ai/deatorch.dev.gpuDesign phase

Deep Evidence Agent (DEA)

The DEA is a multi-agent system for safety- and mission-critical engineering organizations (telecom, aerospace, automotive, medical devices). It turns scattered engineering artifacts (requirements, design docs, code, tests, standards) into a traceable, auditable knowledge base with evidence-grounded reasoning. Uses Microsoft GraphRAG for graph-based retrieval-augmented generation.

  • Repository: aegean-ai/dea (includes graphrag as git submodule)
  • Docs: PRD, ADD, SDD in the dea repo under docs/

Documentation Structure

docs/
├── architecture/ Platform-level architecture (four-plane)
├── control-plane/ Control plane design docs + MAC principles
├── user-plane/ User plane design, digital twins, reference app designs
├── data-plane/ Data plane design, lakehouse demos
├── management-plane/ Management plane design (v2)
└── devops/ Revision history, sprint plans