git-worktree-workflow
Installation
SKILL.md
Git Worktree Workflow Skill
Version: 1.1.0 Created: 2025-12-30 Last Updated: 2026-01-02 Category: Development
Overview
Git worktrees allow you to have multiple working directories from a single repository, enabling parallel development workflows with Claude Code. This is essential for running multiple Claude instances on different tasks simultaneously.
Quick Start
# 1. Create worktree for new feature branch
git worktree add -b feature-api ../project-api main
# 2. Run Claude in worktree
cd ../project-api && claude "Implement the feature"