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β
- Architecture - CLI architecture, command structure, and execution model
- Command Patterns - Implementation guide for new commands
- Testing Patterns - Testing conventions and best practices
- Shell Completion - Shell completion setup and usage
- Configuration - CLI configuration and environment variables
- Troubleshooting - Solutions to common issues
Command Categoriesβ
- Workspace Management - Initialize, status, clean, doctor
- Plan Execution - Plan generation and execution
- Agent Management - List, search, validate agents (includes self-hosted model configuration)
- Execution Commands - Step, run, chat
- MCP Integration - Model Context Protocol management
- Extensions - Extension package management
- Monitoring - Agent monitoring and analytics
- Advanced Features - Autonomous execution, checkpoints
Related Documentationβ
- Self-Hosted Models - Setup guides for Ollama, vLLM, and LocalAI
- Agent Configuration Guide - Complete agent configuration reference
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