From god-ralph
Show current god-ralph execution progress, active Ralphs, and costs
npx claudepluginhub DuncanJurman/entropy-plugins --plugin god-ralph# /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
/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.
/statusDisplays current design system state from .interface-design/system.md including direction, foundation, depth, tokens, patterns, and last updated time. Suggests setup options if no system found.
/statusChecks current session status and measures goal drift to assess alignment and progress in the conversation.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
Share bugs, ideas, or general feedback.
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 only