git-worktree-workflow
Installation
SKILL.md
Git Worktree Workflow
Overview
Git worktrees allow you to have multiple working directories from a single repository, enabling parallel development workflows with Codex. This is essential for running multiple Codex 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 Codex in worktree
cd ../project-api && Codex "Implement the feature"