← ClaudeAtlas

nazgulstatuslisted

Check the current state of a Nazgul autonomous loop. Use when asked about loop progress, task status, iteration count, review board status, or how the Nazgul loop is going.
OrodruinLabs/nazgul · ★ 4 · AI & Automation · score 73
Install: claude install-skill OrodruinLabs/nazgul
# Nazgul Status ## Examples - `/nazgul:status` — View current loop progress, task counts, and review board state ## Current State - Mode: !`jq -r '.mode // "unknown"' nazgul/config.json 2>/dev/null || echo "unknown"` - Iteration: !`jq -r '"\(.current_iteration // 0)/\(.max_iterations // 40)"' nazgul/config.json 2>/dev/null || echo "0/40"` - Classification: !`jq -r '.project.classification // "unknown"' nazgul/config.json 2>/dev/null || echo "unknown"` - AFK: !`jq -r 'if .afk.enabled then "enabled" else "disabled" end' nazgul/config.json 2>/dev/null || echo "disabled"` - Paused: !`jq -r '.paused // false' nazgul/config.json 2>/dev/null || echo "false"` - Reviewers: !`jq -r '.agents.reviewers // [] | join(", ")' nazgul/config.json 2>/dev/null || echo "none"` - Specialists: !`jq -r '.agents.specialists // [] | join(", ")' nazgul/config.json 2>/dev/null || echo "none"` - Consecutive failures: !`jq -r '.safety.consecutive_failures // 0' nazgul/config.json 2>/dev/null || echo "0"` - Context strategy: !`jq -r '.context.budget_strategy // "unknown"' nazgul/config.json 2>/dev/null || echo "unknown"` - Objective: !`jq -r '.objective // "none"' nazgul/config.json 2>/dev/null || echo "none"` - Plan summary: !`head -30 nazgul/plan.md 2>/dev/null || echo "No plan found"` - Git branch: !`git branch --show-current 2>/dev/null` - Last commit: !`git log --oneline -1 2>/dev/null` - Latest checkpoint: !`ls -1t nazgul/checkpoints/iteration-*.json 2>/dev/null | head -1 || echo "No checkpoints"`