From oh-my-colab
Dispatch multiple specialized subagents to work in parallel on independent tasks using git worktrees to prevent conflicts. Use when a plan has 3+ independent tasks or total work >2h. Triggers when BUILD workflow runs a multi-task plan.
npx claudepluginhub iadr-dev/colab --plugin oh-my-colabThis skill is limited to using the following tools:
Use when: plan has multiple independent tasks that can be parallelized.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Use when: plan has multiple independent tasks that can be parallelized.
Dispatch when:
Do inline when:
git worktree add .git/worktrees/ohc-task-1 -b ohc/task-1
git worktree add .git/worktrees/ohc-task-2 -b ohc/task-2
Save to .ohc/state/dispatch-{id}.json:
{
"task": "Task name from plan",
"agent": "executor",
"worktree": ".git/worktrees/ohc-task-1",
"files": ["src/auth.ts", "tests/auth.test.ts"],
"success_criterion": "All auth tests pass",
"plan_ref": ".ohc/plans/auth-feature.md#task-1"
}
ohc team 3:claude "implement tasks from .ohc/state/dispatch-*.json"
Or: /ohc-team 3:executor in Claude Code with task specs attached.
git merge ohc/task-1 ohc/task-2 ohc/task-3
Run verifier on merged result.
git worktree remove .git/worktrees/ohc-task-1
git branch -d ohc/task-1
See references/dispatch-patterns.md for when to dispatch. See references/worktree-coordination.md for conflict prevention.