What problem does it solve?
When multiple agents modify the same Git repository at the same time, changes can conflict and overwrite each other; this skill solves safe parallel work by isolating each agent’s filesystem changes in a dedicated git worktree.
Core Features & Use Cases
- Isolated parallel execution: Create separate work directories via git worktree to prevent file collisions while agents iterate on the same codebase.
- Multi-agent coordination: Supports peer discovery, SubAgent orchestration, and Best-of-N execution where multiple candidate solutions are compared.
- Merge conflict handling: Coordinates structured merge proposals through message exchanges and applies a defined merge strategy to combine agent branches cleanly.
- Use Case: Run Best-of-N implementations for a feature (e.g., “login”), compare code quality and tests across worktrees, then merge the chosen branch while minimizing disruption to the main workspace.
Quick Start
Ask the AI to run Best-of-N parallel implementations for the task you specify and then merge the best result using the worktree-based agent workspaces.