worktree-create

Create isolated Git worktrees from issue numbers and descriptions.

18|5|Updated Nov 3, 2025
One-click install
npx skills add https://github.com/mvillmow/ml-odyssey --skill worktree-create
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: worktree-create
Source: https://github.com/mvillmow/ml-odyssey/tree/main/.claude/skills/worktree-create
Command: npx skills add https://github.com/mvillmow/ml-odyssey --skill worktree-create

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? This Skill enables developers to create and manage multiple Git worktrees, allowing parallel development on different branches without constant context switching, stashing, or committing. It automates environment setup, saving time and reducing complexity.

Core Features & Use Cases:

  • Worktree Creation: Easily create new worktrees for specific issues or features, isolating development environments.
  • Isolated Environments: Work on multiple branches simultaneously in separate directories, preventing conflicts.
  • Use Case: You need to work on two independent features concurrently. Use this skill to create a separate worktree for each feature, allowing you to switch between them instantly without affecting the other's state, maximizing productivity.

Quick Start: Use the worktree-create skill to create a new worktree for issue number 42 with the description "implement-tensor-ops".

Frequently Asked Questions about worktree-create

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create multiple Git worktrees to work on different branches simultaneously?

Create isolated Git worktrees using issue numbers and descriptions to develop on multiple branches in parallel. Each worktree is a separate directory linked to your repository, eliminating the need to stash changes or constantly switch contexts between branches.

What's the best way to avoid context switching when working on multiple features?

Git worktrees let you maintain separate working directories for each branch, preserving the state of each feature independently. Switch between worktrees instantly without stashing or committing incomplete work, keeping each development environment isolated and intact.

Can I test changes across different branches without constant rebasing or stashing?

Yes. Worktrees enable parallel development by creating isolated environments for each branch. Test changes across multiple branches simultaneously in separate directories, then switch between them without losing uncommitted work or disrupting other branches.

How do I organize and manage multiple worktrees in my Git workflow?

This skill provides commands to create new worktrees from issue numbers, list active worktrees, switch between them, and remove completed ones. It maintains a consistent directory layout and handles common errors like existing branches or permission issues automatically.

What happens if I try to create a worktree for a branch that already exists?

The skill detects existing branches and directories, preventing duplicate worktrees. Error handling prevents conflicts from existing branch references or directory collisions, keeping your workflow clean and preventing accidental overwrites.