Advanced Features
Commands for advanced execution and workflow management.
rad autonomousβ
Autonomous execution from high-level goals.
Usageβ
rad autonomous <goal>
Argumentsβ
goal- High-level goal description
Examplesβ
# Execute autonomous goal
rad autonomous "Build a REST API with authentication"
# Complex goal
rad autonomous "Create a full-stack application with React frontend and Node.js backend"
rad hooksβ
Manage execution hooks.
Subcommandsβ
listβ
List all registered hooks.
rad hooks list [--type <type>] [--json] [--verbose]
Options:
--type <type>- Filter by hook type--json- Output as JSON--verbose- Show detailed information
info <name>β
Show detailed information about a hook.
rad hooks info <name> [--json]
enable <name>β
Enable a hook.
rad hooks enable <name>
disable <name>β
Disable a hook.
rad hooks disable <name>
Examplesβ
# List all hooks
rad hooks list
# List hooks by type
rad hooks list --type before_model
# Get hook info
rad hooks info my-hook
# Enable hook
rad hooks enable my-hook
# Disable hook
rad hooks disable my-hook
rad contextβ
Manage context files (GEMINI.md).
Subcommandsβ
listβ
List context files.
rad context list
show <file>β
Show context file content.
rad context show <file>
validateβ
Validate context files.
rad context validate
Examplesβ
# List context files
rad context list
# Show context file
rad context show GEMINI.md
# Validate context files
rad context validate
rad customβ
Manage custom commands.
Subcommandsβ
listβ
List custom commands.
rad custom list
run <command>β
Execute a custom command.
rad custom run <command>
create <name>β
Create a custom command.
rad custom create <name>
validate <command>β
Validate a custom command.
rad custom validate <command>
Examplesβ
# List custom commands
rad custom list
# Run custom command
rad custom run my-command
# Create custom command
rad custom create my-command
# Validate command
rad custom validate my-command
rad sandboxβ
Manage sandbox environments.
Subcommandsβ
listβ
List available sandbox types.
rad sandbox list [--json]
test [sandbox-type]β
Test a sandbox type.
rad sandbox test [sandbox-type] [--json]
configβ
Show current sandbox configuration.
rad sandbox config [--json]
doctorβ
Check sandbox prerequisites.
rad sandbox doctor [--json]
Examplesβ
# List sandboxes
rad sandbox list
# Test sandbox
rad sandbox test docker
# Show config
rad sandbox config
# Check prerequisites
rad sandbox doctor