Skip to main content

Repository Architecture

Overview

This repository provides Azure-integrated infrastructure and tooling for NVIDIA Isaac Lab-based robotics training, inference, and orchestration through NVIDIA OSMO and Azure Machine Learning. The architecture is organized as a graduated adoption ladder of six tiers (T0T5) rather than a single all-or-nothing stack.

Each tier states the minimum edge and cloud infrastructure required to reach a concrete goal, and each tier is a legitimate stopping point. The eight lifecycle domains (Infrastructure, Data Pipeline, Data Management, Synthetic Data, Training, Evaluation, fleet delivery, fleet intelligence) are components adopted per tier, not prerequisites a user must stand up before doing anything useful.

[!IMPORTANT] Tier IDs, stage names, boundaries, the autonomy ladder, and the fleet vocabulary rules are defined once in the canonical Tier Model. This document cites those definitions rather than redefining them. If a tier boundary or name needs to change, change it there first.

Reference goal (Goal: Full Training Lifecycle): capture demonstrations on a robot, train an imitation policy, validate it, and run that policy back on the robot, the full loop for one task. Goal: Full Training Lifecycle is fully achievable at T0T2 with manual deployment and no Kubernetes, Arc, or fleet infrastructure.

The Tier Ladder

T0 is the documented default starting path. T2 is the recommended production path. T3T5 are advanced. The pairing of stable ID and stage name (T# — Name) is canonical; see the Tier Model for the authoritative table.

T#Stage nameOperator reach / scopeEdge infraCloud infraStatus
T0DevLaptop + 1 robot (default)ROS 2 + Docker onlyNoneShipped (default)
T1LabOne site, a few robots, shared GPUShared disk (NFS/SMB)One Blob account (optional AzureML / MLflow)Shipped
T2PilotOne site, at scale, team (recommended)None beyond DockerAzureML + storage + model registry + MLflowShipped (recommended)
T3ProductionSingle site, declarative deploymentLocal k3s + FluxCDSame as T2 (no Arc)Advanced
T4ScaleMultiple sites you cannot directly reachArc + AKS/Flux + gatingT2 + cross-site connectivity / identityAdvanced (fleet delivery)
T5OperateFleet-wide cognition (roadmap)+ Azure IoT Operations+ Fabric Real-Time Intelligence + drift/retrainingRoadmap (fleet intelligence)

Boundaries

  • Multi-site boundary (Arc): falls between T3 and T4. Arc becomes necessary only when robots span multiple sites you cannot reach from a single operator network.
  • Intelligence boundary: falls between T4 and T5. T4 delivers and gates policies; it does not run drift detection, retraining, or aggregate analytics. Those are T5.

[!NOTE] Roadmap honesty. T5 (Operate / fleet intelligence) is on the roadmap and not yet available. The fleet-intelligence domain is currently specified, with implementation planned. The implemented center of gravity remains infrastructure provisioning plus training, data management, and evaluation tooling.

Fleet Vocabulary

This document follows the canonical vocabulary rules:

  • "Fleet" means a fleet of robots only. It never refers to Kubernetes clusters, nor to Azure Kubernetes Fleet Manager. Cluster-level concerns are written as "clusters" or "sites".
  • Fleet delivery (T4) is the delivery and connectivity control plane: getting a validated policy onto robots across sites you cannot directly reach, with a safety gate before a policy swaps on a physical arm.
  • Fleet intelligence (T5) is the cognition layer: drift detection, automated retraining triggers, and aggregate telemetry analytics. It is the roadmap/placeholder concern.

Tiers in Detail

Each tier below adds a defined slice of edge and cloud infrastructure on top of the previous one, and pulls in additional lifecycle domains. Infra details are drawn from Section 5 of the Tiered Architecture Proposal.

T0 — Dev

One robot, one laptop. No cloud, no Kubernetes. This is the honest floor for Goal: Full Training Lifecycle. This path exists in the code today: training detects available CUDA devices at runtime, evaluation has an explicit local path, and the dataviewer defaults to local mode.

ConcernImplementation
CaptureROS 2 bag recording to local disk. No Arc, no ACSA, no PVC.
Move datacp or rsync from robot to laptop.
CurateDataviewer in local mode on the laptop.
Trainlerobot-train on the laptop, on CPU or a local GPU.
TrackTraining outputs written to local disk; hosted tracking enters at T2.
Validaterun-local-lerobot-eval.py / play.py locally.
Run on robotThe ACT inference node as a plain process or container. No Flux, no gating.
SurfaceInfrastructure
EdgeROS 2 + Docker only
CloudNone

Domains active: Data Pipeline (local capture), Data Management (local viewer), Training, Evaluation.

Graduate when: no local GPU; the task needs many training iterations as conditions vary; or a second person needs the data.

T1 — Lab

One site, a few robots, a shared GPU box. The first cloud resource added is a single storage account.

ConcernImplementationDelta from T0
CaptureROS 2 recording to shared NFS/SMB, or each robot rsyncs up.shared disk
Move dataazcopy or az storage blob upload-batch to one Blob container.+ Blob storage
CurateDataviewer in azure mode against that container (managed identity / SAS).viewer → cloud
TrainLocal shared GPU box, or first optional reach to AzureML on saturation.optional cloud GPU
TrackLocal training outputs, optionally promoted to managed MLflow.optional hosted tracking
Run on robotPlain container per robot; hand-update 2–3 robots via docker pull.unchanged
SurfaceInfrastructure
EdgeShared disk (NFS/SMB)
CloudOne Blob storage account; optionally AzureML and MLflow

No Kubernetes, no Arc, no Flux.

Domains active: adds cloud-backed Data Management; Synthetic Data optional.

Graduate when: training scale or team size outgrows one GPU box; dataset governance and catalogs become necessary.

T2 — Pilot

One site, several robots, real training scale and collaboration. This is the tier where cloud training genuinely becomes the default rather than an option, and it is the recommended production path.

ConcernImplementationDelta from T1
TrainAzureML or OSMO as default: multi-GPU, queued jobs, multiple people, VLA scale.cloud GPU standard
RegistryModel registry and versioning become load-bearing.+ registry
CurateDataviewer deployed as a shared web app rather than localhost.hosted viewer
CaptureACSA optional if disk pressure or unattended recording warrants it.optional ACSA
Run on robotManual docker pull per robot; hand-updating reachable robots is tractable.unchanged
SurfaceInfrastructure
EdgeNone beyond Docker
CloudAzureML workspace, storage, model registry, MLflow

Still no Kubernetes, no Arc, no fleet plane.

Domains active: full Training (RL / IL / VLA), Evaluation (SiL / HiL), Data Management, Synthetic Data.

Graduate when: the number of robots or the update cadence makes hand-updating each robot error-prone and version skew becomes a real problem, while all robots are still at one reachable site.

T3 — Production

Local k3s + FluxCD, no Arc. Several robots at one site you control, updated often enough that manual docker pull causes version skew, but all reachable from a single operator network. This tier proves declarative, GitOps-style deployment does not require Azure Arc. Single-node k3s idles near zero, and the expensive part of the "fleet" stack (Arc enrollment, identity, policy) is paid only at the multi-site boundary.

ConcernImplementation
RuntimeA single local k3s node (a ~60 MB binary) at the site.
DeliveryFluxCD reconciles robots to Git-declared desired state; rollback is a Git revert.
Version controlGit becomes the single source of truth for which robot runs which policy.
Safe swapOptional gating before a policy swaps on hardware.
Train and curateSame as T2 (AzureML, registry, MLflow, hosted viewer).
SurfaceInfrastructure
EdgeOne local k3s node + FluxCD
CloudSame as T2 (no Arc, no IoT Operations)

Domains active: adds fleet-deployment (GitOps + gating) at single-site scope.

Graduate when: robots span multiple sites, or sites become unreachable from a single operator network. That is the point at which a cross-site reachability and identity broker becomes genuinely necessary.

T4 — Scale

Multi-site fleet delivery is the legitimate top of the necessary ladder. This is the delivery control plane: getting validated policies onto robots across sites you cannot directly reach, safely. The defining difference from T3 is multiple sites, which is exactly what makes Arc necessary as the cross-site reachability and identity broker.

ConcernImplementation
Connectivity and identityAzure Arc as the reachability and identity broker across sites.
RuntimeAKS or Arc-enabled Kubernetes at each site.
DeliveryFluxCD GitOps; per-site desired state recorded in Git.
Safe swapGating service approves deployment windows before a policy swaps on hardware.
SurfaceInfrastructure
EdgeArc + AKS/Flux + gating
CloudT2 + cross-site connectivity, identity, registry

Explicitly excluded at T4: drift detection, automated retraining, aggregate telemetry analytics. This tier delivers and gates; it does not run fleet intelligence.

Domains active: fleet-deployment at multi-site scope (fleet delivery terminus).

Graduate when: the operator explicitly wants production signals to drive retraining and fleet-wide health analytics. This is a deliberate decision, not an automatic consequence of scale.

T5 — Operate

[!WARNING] Roadmap / not shipped. T5 is fleet intelligence, the aspirational cognition layer. The fleet-intelligence domain is currently specified, with implementation planned. The components below are documented intent, not working capability. Treat this tier as a roadmap direction.

Drift detection, automated retraining triggers, aggregate telemetry, and health analytics over the robot fleet.

ConcernImplementationStatus
Edge telemetryAzure IoT Operations MQTT aggregationPlaceholder
AnalyticsMicrosoft Fabric Real-Time Intelligence, GrafanaPlaceholder
Drift and retrainingDrift detection, retraining triggers, closed loopPlaceholder
SurfaceInfrastructure
Edge+ Azure IoT Operations
Cloud+ Microsoft Fabric Real-Time Intelligence + drift/retraining

T5 decomposes into an ordered autonomy ladder (T5.0T5.3) rather than a single leap; autonomy is a different axis from infrastructure reach. See The Autonomy Ladder in the roadmap. Human-in-the-loop gating is recommended over fully autonomous retraining.

Domains active: fleet-intelligence (roadmap/placeholder).

Lifecycle Domains

The codebase reorganizes around eight lifecycle domains for robotics and physical AI, each built on current Azure services and NVIDIA's Physical AI Stack. The tiers above describe which subset of these domains a user adopts, and in what order; this section describes each domain in detail. Each domain maps to a root-level directory.

DomainDirectoryFirst active tierScope
Infrastructureinfrastructure/T1Shared Azure services: AKS, AzureML, networking, storage, observability
Data Pipelinedata-pipeline/T0Robot-to-cloud data capture via ROS 2 episodic recording (Arc from T4)
Data Managementdata-management/T0Episodic data viewer, labeling, dataset curation, and job orchestration
Synthetic Datasynthetic-data/T1SDG pipelines leveraging NVIDIA Cosmos world foundation models
Trainingtraining/T0Policy training, packaging to TensorRT/ONNX, and model registration
Evaluationevaluation/T0Software-in-the-loop and hardware-in-the-loop validation pipelines
Fleet deliveryfleet-deployment/T3Edge delivery via FluxCD GitOps; Arc-enabled multi-site delivery at T4
Fleet intelligencefleet-intelligence/T5 (roadmap)Production telemetry, on-robot policy analytics, and drift detection (roadmap)

Infrastructure

Shared Azure services required from T1 upward. Terraform modules provision AKS clusters with GPU node pools, AzureML workspaces, Azure Container Registry, Key Vault, managed identities, networking (VNet, subnets, NAT Gateway), and observability (Azure Monitor, DCGM metrics). Domain-specific infrastructure that stands alone (VPN, automation, DNS) deploys from subdirectories within each domain rather than the shared module. At T0 no Azure infrastructure is required.

Data Pipeline

Tooling and infrastructure for capturing real-world robot data and transmitting it to Azure. At T0 this is purely local (ROS 2 bag recording plus cp/rsync); Azure Arc edge agents enter only at the multi-site T4 boundary. This domain covers:

  • Setup scripts for deploying Azure Arc, Arc-enabled Kubernetes, and data transfer components to edge devices (multi-site only)
  • ROS 2 episodic data capture scripts for imitation learning (IL) training datasets
  • Data transfer orchestration from edge storage to Azure Blob Storage
  • Example programs demonstrating episodic recording from physical robot hardware

Episodic data follows the LeRobot dataset format to maintain compatibility with the broader robotics ML ecosystem.

Data Management

An episodic data viewer and curator built on top of LeRobot's visualization tooling. The viewer runs locally for development (T0) and can optionally be deployed to an Azure-hosted web app (T2) through the included setup scripts. Capabilities include:

  • Browsing, labeling, and categorizing episodic datasets across Blob Storage containers
  • Assigning datasets to training workflows and triggering OSMO or AzureML jobs directly from the viewer
  • Evaluating synthetic data generation outputs for quality and diversity
  • Reviewing playback video captured during policy evaluation runs
  • Curating datasets by filtering, splitting, and merging episode collections

Synthetic Data

Pipelines for synthetic data generation (SDG) through OSMO workflows and AzureML jobs. This domain will incorporate NVIDIA Cosmos world foundation models for generating photorealistic training data:

  • Cosmos-Transfer for converting simulated environments into photorealistic video, bridging the sim-to-real gap for policy training
  • Cosmos-Predict for generating novel future frames from initial conditions, expanding dataset diversity
  • Cosmos-Reason for data curation through physical common-sense reasoning against video clips
  • Full example SDG workflows that chain Isaac Sim scene generation with Cosmos Transfer post-processing

The Cosmos Cookbook provides post-training scripts and recipes that this domain's workflows will reference for model customization.

[!NOTE] Data augmentation is an optional axis (A0–A2) orthogonal to the T0T5 ladder, recommended only when data is scarce. It is not part of Goal: Full Training Lifecycle. See the augmentation axis in the Tier Model.

Training

End-to-end training pipeline from raw data to packaged, deployable model artifacts. The local path runs at T0; cloud GPU becomes the default at T2. Training code is organized by learning approach, with each approach containing its own source, workflows, and configuration:

ApproachDirectoryScope
RLtraining/rl/Reinforcement learning with Isaac Lab (skrl, RSL-RL)
ILtraining/il/Imitation learning with LeRobot and demonstration datasets
VLAtraining/vla/Vision-language-action model training for generalist robot policies

Cross-cutting concerns shared across approaches:

  • Multi-GPU and multi-node training orchestration through OSMO workflows and AzureML jobs
  • Policy export and packaging into TensorRT and ONNX formats for edge inference
  • Container image creation with packaged policies, versioned and pushed to the AzureML model registry
  • Model distribution through Azure AI Foundry for centralized model management and deployment
  • Setup scripts for deploying training pipelines to OSMO and AzureML compute targets
  • Full end-to-end pipelines that chain training, export, packaging, and registration into a single orchestrated workflow

A complete example pipeline demonstrates the full path from trained checkpoint to containerized inference image registered in AzureML.

Evaluation

Software-in-the-loop (SiL) and hardware-in-the-loop (HiL) evaluation pipelines for trained policies. SiL runs locally at T0; both approaches use Isaac Sim to emulate the target robot, with the trained policy controlling the simulation.

ApproachInfrastructurePolicy Host
SiLAny available compute that can serve the policy as an inference endpointAzureML managed endpoint or AKS
HiLTarget deployment hardware (typically NVIDIA Jetson) running the containerized TensorRT or ONNX policyEdge device matching production

Evaluation metrics capture to:

  • AzureML experiment tracking for per-episode performance metrics
  • Azure Monitor for operational dashboards and Grafana visualization
  • Microsoft Fabric Real-Time Intelligence for streaming telemetry analysis

Setup scripts deploy evaluation pipelines to OSMO and AzureML compute targets. Full end-to-end evaluation pipelines orchestrate policy loading, simulation execution, metric collection, and result publishing as a single workflow.

Isaac Sim connects to the deployed policy endpoint, generating control signals and receiving observations to produce evaluation episodes that the Data Management domain can review.

Fleet delivery

Edge delivery of packaged policy containers to robots through GitOps, the fleet-deployment domain. At T3 this is single-site (local k3s + FluxCD, no Arc); at T4 it becomes multi-site fleet delivery with Azure Arc as the cross-site reachability and identity broker. This domain includes:

  • FluxCD GitOps manifests for local k3s (T3) or Azure Arc-enabled Kubernetes clusters (T4) co-located with robots
  • Bootstrap scripts for configuring FluxCD on k3s or Arc-connected clusters
  • A hot-loading workflow deployed alongside the GitOps configuration that pulls new policy container images and stages them for deployment
  • A gating service (running on or near the robot) that explicitly approves staged policies before deployment, with configurable deployment windows

The delivery flow: AzureML model registry publishes a new container image, FluxCD detects the manifest update, the hot-loader pulls and stages the image, and the gating service approves deployment to the robot on the operator's schedule. Fleet delivery delivers and gates policies; it does not run drift detection, retraining, or aggregate analytics. Those are fleet intelligence (T5).

Fleet intelligence

[!WARNING] Roadmap / not shipped. The fleet-intelligence domain is currently specified, with implementation planned. The capabilities below are documented intent for T5, not working code.

Production monitoring, robotics telemetry, and on-robot policy performance analytics that close the data flywheel. This domain captures what happens after deployment and feeds insights back into Data Pipeline and Training. Planned capabilities include:

  • On-robot policy performance tracking: success/failure rates per episode, grasp accuracy, navigation completion rates, and task-specific KPIs streamed from deployed robots
  • Robotics telemetry ingestion into Microsoft Fabric Real-Time Intelligence for streaming analytics across robot fleets
  • Fleet-wide health dashboards via Azure Monitor and Grafana showing policy version distribution, error rates, latency percentiles, and hardware utilization
  • Policy drift detection: automated comparison of production performance against evaluation baselines, triggering alerts when degradation exceeds thresholds
  • Integration with Azure IoT Operations for edge telemetry aggregation, device management, and secure data routing from robots to Azure
  • Automated retraining triggers that connect fleet telemetry back to the Data Pipeline domain, closing the feedback loop from production observations to new training data

This domain distinguishes itself from Evaluation (which validates policies in simulation before deployment) by focusing on real-world, production-time signals from physical robots. Its autonomy decomposes into the autonomy ladder (T5.0T5.3). Fully autonomous retraining is a foot-gun, and human-in-the-loop gating is recommended.

Simulation Guidance

Simulation environment authoring, including robot asset import (USD, URDF, MJCF), scene configuration, domain randomization, and Isaac Lab task design, is a prerequisite for training and evaluation. NVIDIA provides comprehensive tooling and documentation for these workflows through Isaac Sim and the Isaac Lab Reference Architecture.

This repository will not maintain a separate codebase domain for simulation. Instead, the docs/ directory will provide guidance on:

  • Setting up Isaac Sim and Isaac Lab environments for use with this reference architecture
  • Importing custom robot assets and configuring scenes for training tasks
  • Applying domain randomization to improve sim-to-real policy transfer
  • Designing Isaac Lab environments using Manager-based and Direct workflows
  • Connecting simulation outputs to the Synthetic Data and Training domains

Source Code Organization

The src/ directory currently contains three packages, being migrated into the per-domain layout described above:

PackageContents
common/Shared CLI argument parsing utilities
training/Isaac Lab training scripts with skrl, RSL-RL, and LeRobot integration plus Azure MLflow metric tracking
inference/Policy export, playback, and inference node scripts

Training scripts and Python code act as integration shims between NVIDIA's open-source repositories and Azure connectivity features: MLflow from AzureML for tracking training metrics, logs, and checkpoints; the AzureML model registry for checkpoint versioning; and Azure Blob Storage for dataset access.

The root pyproject.toml serves local development dependency management, providing module availability for intellisense and verification. This setup is not intended for building publishable Python packages; the build target only packages training/rl into a wheel for in-container use.

Agentic Tooling

This project uses GitHub Copilot agents, instructions, prompts, and skills to automate development workflows. Tooling comes from two sources: the HVE-Core extension (shared across Microsoft HVE projects) and project-specific artifacts defined in .github/.

HVE-Core Extension

The hve-core-all VS Code extension provides shared agentic tooling:

Artifact TypeCountExamples
Agents33RPI workflow, backlog management, PR creation
Instructions24Coding standards (Bash, C#, Python, Terraform, Bicep), commit messages, markdown
Prompts27ADO work items, GitHub issues, security planning, PR descriptions
Skills2PR reference generation, video-to-GIF conversion

HVE-Core artifacts are registered via the extension's package.json contributes section and loaded when the extension activates.

Project Copilot Artifacts

This repository defines project-specific artifacts in .github/ that extend HVE-Core with domain knowledge:

Artifact TypeCountPurpose
Agents2OSMO training manager, dataviewer developer
Instructions4Copilot instructions, dataviewer conventions, documentation style, shell scripts
Prompts4OSMO training submission, LeRobot pipeline, dataviewer workflows
Skills2Dataviewer interaction, OSMO LeRobot training

Project artifacts are auto-discovered by VS Code from the .github/ directory without explicit registration.

Two workflow chains compose these artifacts:

  • OSMO Training Manager: osmo-training-manager agent → osmo-lerobot-training skill → training submission prompts
  • Dataviewer Developer: dataviewer-developer agent → dataviewer skill → dataviewer instruction conventions

Artifact Types and Loading

Each artifact type uses YAML frontmatter to declare behavior:

ArtifactFile PatternKey FrontmatterLoading
Agents*.agent.mdmode, tools, descriptionAuto-discovered from .github/agents/
Instructions*.instructions.mdapplyTo, descriptionAuto-discovered from .github/instructions/
Prompts*.prompt.mdmode, description, toolsAuto-discovered from .github/prompts/
SkillsSKILL.mdN/A (referenced by agents)Referenced via copilot-skill: URI

HVE-Core artifacts follow the same patterns but load through extension contribution points rather than workspace auto-discovery.

For the detailed per-artifact inventory and workflow chain diagrams, see Copilot Artifacts.

Agent Skills and Specification Documents

Each domain will contain specification documents alongside working examples. These specifications serve as structured inputs for GitHub Copilot Agent Skills, enabling customers to adapt this reference architecture to their own codebase and infrastructure.

Specification Structure

Every domain directory will include:

ArtifactPurpose
README.mdDomain overview, quick start, and usage guide
examples/Complete, runnable examples with code, scripts, and configurations
specifications/Domain specifications describing capabilities, inputs, outputs, and contracts
specifications/*.specification.mdIndividual specifications that Agent Skills consume to generate customized implementations
.github/skills/Agent Skill definitions referencing the domain's specifications

Domain documentation lives under the root docs/ directory rather than inside each domain folder. Each domain has a corresponding subdirectory at docs/<domain>/ containing detailed guidance, architecture decisions, and tutorials.

How Agent Skills Use Specifications

Specifications define the contracts and patterns for each domain so that Agent Skills can generate customized implementations:

  1. A customer identifies which domains apply to their robotics use case.
  2. Agent Skills read the domain specifications to understand available capabilities, required Azure resources, integration points, and configuration options.
  3. The customer describes their specific requirements (robot platform, sensor configuration, training framework preferences, deployment topology).
  4. Agent Skills generate tailored infrastructure, code, and configuration files that integrate with the customer's existing codebase while following the patterns proven in this reference architecture.

Each customer may have different hardware configurations, Azure subscription topologies, network constraints, and compliance requirements. Specifications capture the variability points so Agent Skills can produce implementations that fit, rather than requiring manual adaptation of generic examples.

Example Specification Content

A training domain specification might define:

  • Supported RL frameworks and their configuration schemas
  • Required Azure resources (AzureML workspace, compute targets, storage accounts)
  • Container image build patterns for different GPU architectures
  • MLflow experiment tracking integration contracts
  • Policy export format requirements (TensorRT version, ONNX opset)
  • OSMO workflow template parameters and their valid ranges

Proposed Directory Structure

physical-ai-toolchain/
├── infrastructure/ # Shared Azure IaC and cluster setup
│ ├── terraform/ # Terraform modules and root configurations
│ ├── setup/ # Post-IaC Kubernetes and OSMO setup scripts
│ └── specifications/ # Infrastructure specifications for Agent Skills
├── data-pipeline/ # Robot-to-cloud data capture
│ ├── setup/ # Deploy Arc, edge agents, and transfer components
│ ├── arc/ # Azure Arc configuration and scripts
│ ├── capture/ # ROS 2 episodic data recording
│ ├── examples/ # End-to-end data pipeline examples
│ └── specifications/ # Data pipeline specifications for Agent Skills
├── data-management/ # Episodic data viewer and curation
│ ├── setup/ # Deploy viewer to Azure web app
│ ├── viewer/ # Data viewer application (runs locally or hosted)
│ ├── tools/ # CLI tools for dataset operations
│ ├── examples/ # Data management workflow examples
│ └── specifications/ # Data management specifications for Agent Skills
├── synthetic-data/ # Synthetic data generation pipelines
│ ├── workflows/ # OSMO and AzureML SDG job definitions
│ ├── cosmos/ # Cosmos model integration and configs
│ ├── examples/ # SDG pipeline examples
│ └── specifications/ # SDG specifications for Agent Skills
├── training/ # Policy training and model packaging
│ ├── setup/ # Deploy training pipelines to OSMO and AzureML
│ ├── rl/ # Reinforcement learning (skrl, RSL-RL)
│ ├── il/ # Imitation learning (LeRobot)
│ ├── vla/ # Vision-language-action model training
│ ├── pipelines/ # End-to-end train, export, package, register
│ ├── packaging/ # TensorRT/ONNX export and containerization
│ ├── examples/ # Training pipeline examples
│ └── specifications/ # Training specifications for Agent Skills
├── evaluation/ # SiL and HiL validation
│ ├── setup/ # Deploy evaluation pipelines to OSMO and AzureML
│ ├── sil/ # Software-in-the-loop pipelines
│ ├── hil/ # Hardware-in-the-loop pipelines
│ ├── pipelines/ # End-to-end evaluation workflows
│ ├── metrics/ # Metric collection and reporting
│ ├── examples/ # Evaluation pipeline examples
│ └── specifications/ # Evaluation specifications for Agent Skills
├── fleet-deployment/ # Fleet delivery: edge delivery via GitOps
│ ├── gitops/ # FluxCD manifests and bootstrap scripts
│ ├── gating/ # Policy approval and scheduling service
│ ├── examples/ # Fleet delivery workflow examples
│ └── specifications/ # Fleet delivery specifications for Agent Skills
├── fleet-intelligence/ # Fleet intelligence: telemetry and analytics (roadmap)
│ ├── setup/ # Deploy IoT Operations, telemetry, and dashboards
│ ├── telemetry/ # On-robot telemetry capture and routing
│ ├── dashboards/ # Grafana and Azure Monitor configurations
│ ├── drift/ # Policy drift detection and alerting
│ ├── examples/ # Fleet intelligence pipeline examples
│ └── specifications/ # Fleet intelligence specifications for Agent Skills
├── scripts/ # Cross-domain CI, linting, and security tooling
├── external/ # Cloned external repositories for reference
├── docs/ # All domain and cross-domain documentation
│ ├── infrastructure/ # Infrastructure architecture and guides
│ ├── data-pipeline/ # Data pipeline guides
│ ├── data-management/ # Data management guides
│ ├── synthetic-data/ # SDG guides
│ ├── training/ # Training guides
│ ├── evaluation/ # Evaluation guides
│ ├── fleet-deployment/ # Fleet delivery guides
│ ├── fleet-intelligence/ # Fleet intelligence guides
│ ├── simulation/ # Simulation setup and guidance
│ └── contributing/ # Repository contributing and architecture design decisions
└── .github/ # Agent Skills, instructions, and CI workflows
└── skills/ # Domain-linked Agent Skill definitions

External References

ResourceRelevance
Tier ModelCanonical reference for tier IDs, names, boundaries, and vocabulary
Tiered Architecture ProposalRationale and per-tier detail behind the T0–T5 ladder
NVIDIA Isaac LabRobot learning framework for simulation-based RL and IL training
NVIDIA Isaac SimPhysics simulation platform underlying Isaac Lab
Isaac Lab Reference ArchitectureEnd-to-end robot learning workflow from asset import to deployment
NVIDIA Cosmos PlatformWorld foundation models for physical AI (Predict, Transfer, Reason)
Cosmos-Transfer2.5Sim-to-real photorealistic video generation from simulation
Cosmos-Predict2.5Future state prediction and world simulation
Cosmos CookbookPost-training recipes for Cosmos model customization
NVIDIA OSMOCloud-native orchestration for AI simulation and training
LeRobotHugging Face robotics ML library for imitation learning
Azure Machine LearningML model training, registry, and deployment on Azure
Azure AI FoundryCentralized model management and deployment platform
Azure Arc-enabled KubernetesKubernetes management for edge clusters connected to Azure
Azure IoT OperationsEdge telemetry aggregation and device management for robotics
FluxCDGitOps toolkit for Kubernetes continuous delivery
Azure MonitorObservability and metrics for Azure and hybrid workloads
Microsoft Fabric RTIStreaming telemetry analysis for fleet intelligence