git-worktree-workflow

Installation
SKILL.md

Git Worktree Workflow

Enable parallel feature development by creating isolated working directories for each user story using git worktree. Multiple agents can work simultaneously without interfering with each other.


Core Concept

Git worktree allows multiple working directories from a single repository

project/
├── .git/                    # Shared git repository
├── main/                    # Primary worktree (main branch)
├── worktrees/
│   ├── feat-us1/           # Story 1 branch (Agent A working here)
│   ├── feat-us2/           # Story 2 branch (Agent B working here)
│   └── feat-us3/           # Story 3 branch (Agent C working here)
Installs
2
First Seen
Feb 21, 2026
git-worktree-workflow — vineethsoma/agent-packages