Help us improve
Share bugs, ideas, or general feedback.
From builtin-tasks
Guides team leads coordinating task-executing agents: enforces one commit per task, serializes overlapping file tasks or uses worktrees, checkpoints idle states.
npx claudepluginhub motlin/claude-code-plugins --plugin builtin-tasksHow this skill is triggered — by the user, by Claude, or both
Slash command
/builtin-tasks:team-leadThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Every task must result in exactly one commit. Before assigning the next task to a member, verify their previous work was committed.
Orchestrates parallel task implementation via Claude Code Agent Teams: analyzes tasks.md dependencies, spawns isolated git worktrees per group, reviews via spec guardian before merging.
Use when a task benefits from multiple Claude instances collaborating with peer-to-peer messaging - parallel research, multi-module features, cross-layer changes, or competing hypothesis debugging. Not for simple independent tasks (use parallel-execution) or sequential tasks (use delegated-execution).
Dispatches implementation tasks to subagents with isolated git worktrees and TDD requirements. Supports --fixes flag and multi-agent parallelization.
Share bugs, ideas, or general feedback.
Every task must result in exactly one commit. Before assigning the next task to a member, verify their previous work was committed.
Before assigning tasks in parallel, read each task's description to identify which files it modifies. If two tasks touch the same files, do NOT assign them simultaneously — either serialize them or instruct one member to use a worktree.
Use judgement on whether parallelism even makes sense. If most tasks touch overlapping files, it may be simpler to run them sequentially. If using worktrees, instruct the member to git worktree add into a peer directory before starting.
Whenever no team members are actively running, verify that all changes have been committed. There should be no uncommitted changes at rest.