← ClaudeAtlas

nazgultasklisted

Task lifecycle management — skip, unblock, add, prioritize, info, and list tasks. Use when you need to manage individual tasks in the Nazgul pipeline.
OrodruinLabs/nazgul · ★ 4 · AI & Automation · score 73
Install: claude install-skill OrodruinLabs/nazgul
# Nazgul Task ## Examples - `/nazgul:task` — List all tasks with status summary - `/nazgul:task info TASK-003` — Show full details and review history for a task - `/nazgul:task skip TASK-005` — Skip a task and promote unblocked downstream tasks - `/nazgul:task unblock TASK-004` — Reset a blocked task back to READY - `/nazgul:task add "Implement rate limiting"` — Create a new task - `/nazgul:task prioritize TASK-006 --before TASK-003` — Reorder task execution ## Arguments $ARGUMENTS ## Current State - Task list: !`ls nazgul/tasks/TASK-*.md 2>/dev/null || echo "No tasks"` - Plan: !`head -50 nazgul/plan.md 2>/dev/null || echo "No plan"` ## Instructions Parse `$ARGUMENTS` for a subcommand and its parameters. If no subcommand is provided, default to `list`. ### Subcommands --- #### `list` (default) Produce a quick status table of all tasks: ``` Nazgul Tasks ═══════════════════════════════════════════════════════════ ID Status Description ───────────────────────────────────────────────────────── TASK-001 DONE Set up project scaffolding TASK-002 IN_PROGRESS Implement auth module TASK-003 READY Add payment processing TASK-004 BLOCKED Deploy to staging TASK-005 PLANNED Write integration tests ───────────────────────────────────────────────────────── Total: 5 | Done: 1 | Active: 2 | Blocked: 1 | Planned: 1 ``` 1. Read each `nazgul/tasks/TASK-*.md` file 2. Extract: task ID, status, and