Skip to main content

Radium CLI Documentation

The Radium CLI (rad) is a comprehensive command-line interface for managing workspaces, generating and executing plans, managing agents, and orchestrating autonomous workflows.

Quick Start​

Installation​

# Build from source
cargo build --release -p radium-cli

# Or install via package manager (when available)

Basic Usage​

# Initialize a workspace
rad init

# Generate a plan from a specification
rad plan spec.md

# Execute a plan
rad craft REQ-001

# Complete workflow from source to execution
rad complete spec.md

Documentation​

Command Categories​

Common Workflows​

See Workflows Guide for common patterns and use cases.

Troubleshooting​

See Troubleshooting Guide for solutions to common issues.

Getting Help​

# General help
rad --help

# Command-specific help
rad <command> --help

# Subcommand help
rad <command> <subcommand> --help