A.R.C. CLI is a powerful, zero-dependency Go CLI for managing and orchestrating AI agent infrastructure.
macOS / Linux:
curl -sSL https://raw.githubusercontent.com/arc-framework/arc-cli/main/install.sh | bashWindows (PowerShell as Administrator):
irm https://raw.githubusercontent.com/arc-framework/arc-cli/main/install.ps1 | iex- Download from Releases
- Extract and move to your PATH:
tar -xzf arc-cli_*.tar.gz sudo mv arc /usr/local/bin/ - Verify:
arc --version
# See available commands
arc --help
# Check version
arc --version
# View system information
arc info# Create a new A.R.C. workspace
arc workspace init
# Or specify a path
arc workspace init ./my-projectThis creates:
my-project/
├── arc.yaml # Workspace manifest (source of truth)
├── .env # Environment variables
└── .arc/ # System state and generated configs
Edit arc.yaml to enable features:
version: "1.0.0"
features:
voice: true # Voice AI capabilities
security: true # Authentication & authorization
observability: true # Metrics, logs, tracesThen launch:
arc workspace run# List available themes
arc theme list
# Set a theme
arc theme set rainbow
# Preview current theme
arc theme show- Workspace Guide - Deep dive into workspace configuration
- Service Catalog - All 29 platform services