CLI Workflows
CLI Commands
Section titled “CLI Commands”While the dashboard is the main interface, Rally provides CLI commands for scriptable workflows.
Core Commands
Section titled “Core Commands”rally dashboard # Launch interactive dashboardrally onboard owner/repo # Register a projectrally dispatch # Dispatch with interactive promptsrally dispatch issue 42 # Direct dispatch to issue #42rally dispatch pr 99 # Direct dispatch to PR #99rally status # List active dispatchesrally clean # Clean up completed dispatchesStatus and Monitoring
Section titled “Status and Monitoring”rally status # Summary of all active dispatchesrally status --json # JSON output for scriptingrally sessions # List Copilot sessionsCleanup Commands
Section titled “Cleanup Commands”rally clean # Interactive cleanup of done dispatchesrally clean --all # Clean all done dispatchesrally clean --orphaned # Clean orphaned worktrees onlyProject Management
Section titled “Project Management”rally onboard remove [project] # Remove projectrally refresh # Refresh project data from GitHubDispatch Flow (CLI)
Section titled “Dispatch Flow (CLI)”# Option 1: Interactiverally dispatch# → Select project# → Choose Issue or PR# → Enter number
# Option 2: Directrally dispatch issue 42 --project myreporally dispatch pr 99 --project myrepoCommon Workflows
Section titled “Common Workflows”Starting Fresh
Section titled “Starting Fresh”rally onboard owner/myreporally dashboard# Press 'n' to dispatch first issueDaily Workflow
Section titled “Daily Workflow”rally dashboard # Check status# Work on items, push changesrally clean --all # Clean up merged PRsCI/Scripting
Section titled “CI/Scripting”# Check for completed dispatchesif rally status --json | jq -e '.done | length > 0'; then rally clean --allfiCommand Reference
Section titled “Command Reference”See the Command Reference for full details on all commands and options.