[ 01 / 04 ]

STAR CLI Infrastructure

/// low code. no code. infinite possibilities.

Revolutionary interoperable low/no-code generator for metaverses, games, apps, and platforms. Write once, deploy everywhere with OAPPs, SDKs, and Web Kits.

Scroll to explore
Section 01
[ 01 / 04 ]

Overview

STAR CLI is a revolutionary interoperable low/no-code generator that unifies all metaverses, games, apps, sites, and platforms into one powerful OASIS Omniverse platform.

Build entire metaverses, games, and dApps with minimal coding. OAPPs (OASIS Applications) enable write-once, deploy-everywhere development. SDKs and Web Kits provide framework-specific integrations for Angular, React, Vue, Unity, Unreal, and more.

[ 02 / 04 ]

Why OASIS Infrastructure?

/ A

STAR CLI

Low/no-code generator for creating OAPPs, NFTs, Quests, and more. Template system, version control, and STARNET integration for publishing and distribution.

/ B

OAPPs

Write once, deploy everywhere applications. OASIS Applications work across all platforms with dependency linking and version control built-in.

/ C

SDKs & Web Kits

Framework-specific integrations for Angular, React, Vue, Next.js, Unity, Unreal, Python, Rust, Java, PHP, Go, and .NET. Use your preferred stack.

/ D

STARNET Store

Asset and app store backend for publishing and distributing digital assets. Version control, dependency management, and template sharing.

[ 03 / 04 ]

Use Cases

BUILD

Metaverse Development

Create entire metaverses with minimal coding. STAR CLI generates OAPPs, Quests, NFTs, and virtual worlds with drag-and-drop simplicity.

GAME

Game Creation

Build games with Unity and Unreal SDKs. OAPPs enable cross-platform gameplay with shared assets, quests, and inventory systems.

DAPP

dApp Building

Rapid prototyping with React, Vue, and Angular Web Kits. OAPPs deploy to all platforms with automatic provider abstraction.

[ 04 / 04 ]

Core Concept

STAR CLI: A New Development Primitive

Create OAPPs, manage STARNETHolons, link dependencies, and publish to STARNET. Low/no-code development with full version control and template system.

Create OAPP - Low/No Code Generate OASIS Application with minimal coding
# Create new OAPP
star create oapp "My Metaverse" \
  --description "A sample metaverse" \
  --template "metaverse-basic"

# STAR CLI creates:
# - OAPP structure
# - DNA file with dependencies
# - Basic configuration
# - Template files

# Result: Ready-to-deploy OAPP
# Works on all platforms automatically
Create from Template - Rapid Development Pre-built templates for common patterns
# Create Quest from template
star create quest "Tutorial Quest" \
  --template "quest-basic" \
  --description "Learn the basics"

# Create NFT from template
star create nft "Character NFT" \
  --template "nft-character" \
  --metadata "{...}"

# Link dependencies
star add-dependency oapp "My Metaverse" \
  quest "Tutorial Quest"

# All linked automatically
Publish to STARNET - Distribution Publish OAPPs and assets to STARNET store
# Publish OAPP to STARNET
star publish oapp "My Metaverse" \
  --version "1.0.0" \
  --description "My first metaverse"

# Publish NFT collection
star publish nft "Character Collection" \
  --version "1.0.0"

# Download published OAPP
star download oapp "My Metaverse" \
  --version "1.0.0"

# STARNET handles:
# - Version control
# - Dependency resolution
# - Distribution
# - Updates