Start the god-ralph orchestrator to autonomously execute ready beads
Launches autonomous orchestrator to execute ready beads with dry-run preview and user confirmation.
/plugin marketplace add DuncanJurman/entropy-plugins/plugin install god-ralph@entropy-marketplaceStart the god-ralph orchestrator to autonomously execute all ready beads.
First, show the execution plan:
# Check for ready beads
echo "š god-ralph Execution Plan"
echo "āāāāāāāāāāāāāāāāāāāāāāāāāā"
# Get ready beads
bd ready --json 2>/dev/null || echo '{"issues": []}'
Display the plan:
Then ask user for confirmation:
--no-dry-run: Skip dry-run, start immediately--max-parallel N: Maximum parallel Ralphs (default: auto)--max-iterations N: Override max iterations per bead (default: 50)Before launching orchestrator:
# Create state directory
mkdir -p .claude/god-ralph/logs
# Initialize orchestrator state
cat > .claude/god-ralph/orchestrator-state.json << 'EOF'
{
"status": "starting",
"started_at": "$(date -Iseconds)",
"active_ralphs": [],
"completed_beads": [],
"failed_beads": [],
"total_iterations": 0
}
EOF
After user confirms, invoke the orchestrator agent using the Task tool:
Task(
subagent_type="general-purpose",
prompt="You are the god-ralph orchestrator. Execute the orchestrator workflow as defined in agents/orchestrator.md.
Start by:
1. Reading bd ready --json to find ready beads
2. Analyzing parallelism
3. Spawning Ralph workers
4. Monitoring and merging
Continue until no ready beads remain or user stops.",
description="god-ralph orchestrator"
)
š god-ralph Execution Plan
āāāāāāāāāāāāāāāāāāāāāāāāāā
Ready beads: 5
- beads-abc: "Add user settings API"
- beads-def: "Implement dark mode toggle"
- beads-ghi: "Fix login validation bug"
- beads-jkl: "Add password reset flow"
- beads-mno: "Update user profile page"
Parallelism analysis:
Group 1: beads-abc, beads-ghi (no file overlap)
Group 2: beads-def, beads-mno (depends on Group 1, UI changes)
Group 3: beads-jkl (auth system, sequential)
Estimated:
- Iterations: 45-75
- Cost: $15-25
- Time: 30-60 minutes
Proceed with execution? [y/n]
/god-ralph status to check progress/god-ralph stop to gracefully halt execution.claude/god-ralph/logs//startInitiates the task orchestration workflow using the three-agent system (task-orchestrator, task-decomposer, and dependency-analyzer) to create a comprehensive execution plan.