Workspace Management Commands
Commands for initializing and managing Radium workspaces.
rad initβ
Initialize a new Radium workspace.
Usageβ
rad init [path] [options]
Optionsβ
--use-defaults- Use default values without prompting--with-context- Create a starter GEMINI.md context file
Examplesβ
# Initialize in current directory
rad init
# Initialize in specific path
rad init /path/to/project
# Initialize with defaults
rad init --use-defaults
# Initialize with context file
rad init --with-context
rad statusβ
Show workspace and engine status.
Usageβ
rad status [--json]
Optionsβ
--json- Output as JSON
Examplesβ
# Show human-readable status
rad status
# Show JSON status
rad status --json
rad cleanβ
Clean workspace artifacts (temporary files, logs, cache).
Usageβ
rad clean [options]
Optionsβ
-v, --verbose- Show detailed output-d, --dir <path>- Target workspace directory
Examplesβ
# Clean current workspace
rad clean
# Clean with verbose output
rad clean --verbose
# Clean specific directory
rad clean --dir /path/to/workspace
rad doctorβ
Environment validation and diagnostics.
Usageβ
rad doctor [--json]
Optionsβ
--json- Output as JSON
Self-Hosted Model Connectivityβ
The rad doctor command can help verify connectivity to self-hosted model servers. For manual verification:
# Ollama
curl http://localhost:11434/api/tags
# vLLM
curl http://localhost:8000/v1/models
# LocalAI
curl http://localhost:8080/v1/models
See the Self-Hosted Models Troubleshooting Guide for detailed diagnostic procedures.
Examplesβ
# Run diagnostics
rad doctor
# Get JSON output
rad doctor --json