From god-ralph
Show current god-ralph execution progress, active Ralphs, and costs
How this command is triggered — by the user, by Claude, or both
Slash command
/god-ralph:statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /god-ralph status Display current execution status, active Ralphs, and progress metrics. ## Output Read and display the orchestrator state: ## Display Format ## Live Logs To see live streaming output: ## Bead-Specific Status Check status of a specific bead: ## Arguments - `--json`: Output raw JSON for scripting - `--live`: Continuously update (like watch) - `--bead <id>`: Show status for specific bead only
Display current execution status, active Ralphs, and progress metrics.
Read and display the orchestrator state:
# Check if orchestrator is running
if [[ -f ".claude/god-ralph/orchestrator-state.json" ]]; then
cat .claude/god-ralph/orchestrator-state.json | jq '.'
else
echo "No active god-ralph session"
fi
📊 god-ralph Status
━━━━━━━━━━━━━━━━━━
Status: running
Started: 2024-01-10 14:30:00 (45 minutes ago)
Active Ralphs:
┌─────────────┬────────────┬───────────────┬──────────┐
│ Bead ID │ Iteration │ Worktree │ Status │
├─────────────┼────────────┼───────────────┼──────────┤
│ beads-abc │ 12/50 │ .worktrees/1 │ working │
│ beads-def │ 8/50 │ .worktrees/2 │ tests │
│ beads-ghi │ 3/50 │ .worktrees/3 │ starting │
└─────────────┴────────────┴───────────────┴──────────┘
Progress:
Completed: 5 beads
Failed: 1 bead (beads-xyz: max iterations)
Remaining: 8 beads
Metrics:
Total iterations: 156
Estimated cost: $23.40
Avg iterations/bead: 12.3
Recent Activity:
[14:42] beads-mno completed (8 iterations)
[14:40] beads-jkl merged successfully
[14:38] Verification passed for beads-jkl
[14:35] beads-xyz failed (max iterations reached)
To see live streaming output:
# Tail the current log file
tail -f .claude/god-ralph/logs/orchestrator.log
Check status of a specific bead:
# Show Ralph session for specific bead
if [[ -f ".worktrees/ralph-beads-abc/.claude/god-ralph/sessions/beads-abc.json" ]]; then
cat ".worktrees/ralph-beads-abc/.claude/god-ralph/sessions/beads-abc.json" | jq '.'
fi
--json: Output raw JSON for scripting--live: Continuously update (like watch)--bead <id>: Show status for specific bead onlynpx claudepluginhub DuncanJurman/entropy-plugins --plugin god-ralph/statusDisplays the current Ralph loop status by reading .claude/ralph-loop.local.md, showing iteration count, elapsed time, and completion promise.
/ralphmad-statusShows RalphMAD workflow status for the current project as a phased table, indicating DONE/READY/BLOCKED based on artifacts and prerequisites.
/ralph_customLaunches Ralph autonomous task agent to execute multi-step goals from markdown files, iterating with self-correction, tmux agents, and git commits until success or max iterations.
/statusDisplays orchestrator status dashboard with project progress bar and counts, phases, running tasks, blockers, recent activity, tech stack, checkpoints, and commands.
/statusDisplays current egregore state: work item progress table, pipeline position, token budget, session counts, and recent decision log tail.
/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.