From mk
Configures parallel agent team for complex tasks: creates git worktrees, generates ownership map, initializes task queue.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mk:team-config "task description" --agents NWhen to use
Auto-invoked when orchestrator decomposes a COMPLEX task into parallel subtasks — sets up worktrees, ownership map, task queue. Not user-callable directly.
"task description" --agents NThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Sets up the infrastructure for parallel agent execution. Called by orchestrator when a COMPLEX task is decomposed into independent subtasks.
Sets up the infrastructure for parallel agent execution. Called by orchestrator when a COMPLEX task is decomposed into independent subtasks.
session-state/task-queue.json with claiming protocolPlan approved (Gate 1)
↓
Orchestrator identifies parallel opportunity
↓
mk:team-config
├── 1. Parse plan for independent subtasks
├── 2. Generate ownership map (which agent owns which files)
├── 3. Validate zero overlap between ownerships
├── 4. Create git worktrees via mk:worktree
└── 5. Create task-queue.json via mk:task-queue
↓
Parallel agents start claiming tasks
When team mode activates, Read references/team-coordination.md — the team-only
coordination rules (file ownership per task, no force-push, worktree-branch commits,
actionable completion messages, lead docs-impact ownership). These were moved out of
always-loaded parallel-execution-rules.md so they load only on team activation.
See templates/ownership-map-template.md for the format agents use to declare file ownership.
parallel-execution-rules.md): (e.g., mk:review) need quoting in shell pathsgit worktree list to check for orphaned worktrees before creating new onesAfter all parallel agents complete and integration test passes:
mk:worktree cleanupsession-state/task-queue.jsonnpx claudepluginhub ngocsangyem/meowkit --plugin mkGuides team leads coordinating task-executing agents: enforces one commit per task, serializes overlapping file tasks or uses worktrees, checkpoints idle states.
Configures Claude Code agent teams for parallel execution, inter-agent messaging, and task coordination using implicit team architecture.
Manages task claiming and file ownership tracking for parallel agent execution. Agents claim tasks from a shared queue with ownership enforcement to prevent conflicts.