Create and manage Git worktrees for parallel feature development. Use when user wants to work on multiple features simultaneously or needs isolated development environments.
This skill automates creating and managing Git worktrees for simultaneous feature development.
"Create and manage a git worktree for parallel feature development, then open the new worktree in the editor" for concurrent coding sessions.
feat/<slug>, or use user-provided branch names../<project_name>-wt (created if needed)git worktree add with either new or existing branchescode -n <path> or alternative editor commandcd <path> && codexgit worktree list--force flags unless explicitly requestedThis skill streamlines parallel development workflows by eliminating manual setup steps.