Environment templates are the foundation of wirtual.dev, providing ready-to-use configurations for physical AI development and testing. Each template includes pre-configured simulation tools, dependencies, and settings optimized for specific use cases.

Quick Start

wirtual templates init --id devcontainer-docker
wirtual create dev-env --template devcontainer-docker

Available Templates

Development Container

Base environment for custom development with GPU support and common AI frameworks

Robotic Arm

Preconfigured for robotic arm control, grasping, and manipulation tasks

Autonomous Navigation

Environments for autonomous vehicle and robot navigation testing

Multi-Agent Systems

Template for multi-agent simulations and swarm behavior testing

Key Features

Basic Operations

List Templates

# List all available templates
wirtual templates list

# Show template versions
wirtual templates versions list my-template

Create Template

# Initialize from example
wirtual templates init --id devcontainer-docker

# Push template changes
wirtual templates push my-template \
    --message "Initial configuration"

Manage Versions

# Promote version
wirtual templates versions promote \
    --template my-template \
    --template-version v1.0

# Archive old version
wirtual templates versions archive my-template old-version

Learn More