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.
npx claudepluginhub elasticdotventures/_b00t_ --plugin next-taskThis skill uses the workspace's default tool permissions.
Gated pipeline: DISCOVER → PLAN → IMPLEMENT → REVIEW → SHIP.
Orchestrates task execution with git worktree isolation, TDD implementation, validation loop, and merge for phrases like 'execute task N' or 'implement TASK-NNN'.
Orchestrates git-only agile workflows with checkpoint-based flow control for task cycles, daily standups, sprints, and retrospectives. Use for 'run workflow', 'what's next', or guided development steps.
Executes tech plans via dependency-aware task batching, TDD, incremental commits, section code reviews, and PR creation. Use after planning phases.
Share bugs, ideas, or general feedback.
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 IMPLEMENT