Plan Generation and Execution Commands
Commands for generating plans from specifications and executing them.
rad planβ
Generate a structured plan from a specification file.
Usageβ
rad plan <input> [options]
Argumentsβ
input- Path to specification file or direct content
Optionsβ
--id <REQ-ID>- Override auto-generated requirement ID--name <name>- Customize folder name suffix
Examplesβ
# Generate plan from file
rad plan spec.md
# Generate plan with custom ID
rad plan spec.md --id REQ-001
# Generate plan with custom name
rad plan spec.md --name my-feature
# Generate plan from direct input
rad plan "Build a REST API with authentication"
rad craftβ
Execute a generated plan through its iterations and tasks.
Usageβ
rad craft <plan-identifier> [options]
Argumentsβ
plan-identifier- Plan ID (REQ-XXX) or folder name
Optionsβ
--iteration <I1>- Execute specific iteration only--task <I1.T1>- Execute specific task only--resume- Resume from last checkpoint--dry-run- Show what would be executed without running--json- Output results as JSON--yolo- Enable continuous execution mode (runs until all tasks complete)--engine <engine>- Engine to use for execution
Examplesβ
# Execute plan by REQ ID
rad craft REQ-001
# Execute specific iteration
rad craft REQ-001 --iteration I1
# Execute specific task
rad craft REQ-001 --task I1.T1
# Resume from checkpoint
rad craft REQ-001 --resume
# Dry run
rad craft REQ-001 --dry-run
# YOLO mode (continuous execution)
rad craft REQ-001 --yolo
# Use specific engine
rad craft REQ-001 --engine claude
rad completeβ
Complete workflow from source to execution (automatically generates plan and executes).
Usageβ
rad complete <source>
Argumentsβ
source- File path, Jira ticket ID (RAD-42), or Braingrid REQ ID (REQ-2025-001)
Examplesβ
# Complete from file
rad complete spec.md
# Complete from Jira ticket
rad complete RAD-42
# Complete from Braingrid REQ
rad complete REQ-2025-001
Source Typesβ
- Local File: Path to a markdown specification file
- Jira Ticket: Format
PROJ-123(uppercase letters, dash, digits) - Braingrid REQ: Format
REQ-YYYY-NNN(year and 3+ digit number)