From next-task
Orchestrates end-to-end task pipeline: discovers tasks via taskmaster-ai or GitHub issues, plans changes, implements with TDD and auto-fixes, reviews via certainty-graded gates, ships PRs. Git-resumable.
How this skill is triggered — by the user, by Claude, or both
Slash command
/next-task:next-taskThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Gated pipeline: DISCOVER → PLAN → IMPLEMENT → REVIEW → SHIP.
Gated pipeline: DISCOVER → PLAN → IMPLEMENT → REVIEW → SHIP. State persists in git (branch + commit messages). Each phase can resume independently.
gh issue list --label next-task --limit 1 # output: issue_idgit checkout -b task/<id>-<slug> # output: branch_namegit commit -m "feat: <description>" # output: commit_shagit push -u origin <branch> # output: remote_branchgh pr create --title "<task>" --body "<plan_summary>" # output: pr_urlgh run list --branch <branch> every 30s. # output: ci_statusgh run view --log-failed, diagnose, fix, push. Max 2 retries.State encoded in git:
task/<id>-<slug>).b00t/quality-report.md (gitignored, ephemeral)gh run list outputResume interrupted task:
/next-task --resume <branch_name>
Detects current phase from branch + commit state, continues from last gate.
/next-task # Auto-discover next task
/next-task --task <id> # Specific task by id
/next-task --resume <branch> # Resume interrupted pipeline
/next-task --phase <phase> # Start from specific phase
/next-task --skip-gates # ⚠️ Skip human gates (CI/CD use only)
| Gate | Trigger | Required |
|---|---|---|
| Task confirmation | After DISCOVER | Always |
| Plan approval | After PLAN | Always |
| MEDIUM quality findings | During IMPLEMENT | If MEDIUM findings exist |
| LOW quality findings | During REVIEW | If LOW findings exist |
| Ship confirmation | Before SHIP | Always (unless --skip-gates) |
certainty-grade skill for all findingscode-quality skill at IMPLEMENT and REVIEW phasescertainty-grade skill for all findingscode-quality + deslop skills at IMPLEMENT phasedrift-detect at REVIEW phasemodel-routing skill to select model per phaseb00t learn for task-relevant topics before IMPLEMENTnpx claudepluginhub elasticdotventures/_b00t_ --plugin next-taskOrchestrates backlog task selection through isolated implementation, review, documentation, verification, and publish gates. Use when asking for the next task or backlog work.
Orchestrates full dev cycle in isolated git worktree: task understanding, TDD implementation, quality review, draft PR, CI/CD monitoring to merge-ready PR. Explicit invoke via /developer-workflow:implement-task.
Orchestrates task execution with git worktree isolation, TDD implementation, validation loop, and merge for phrases like 'execute task N' or 'implement TASK-NNN'.