worktree

Create and manage Git worktrees for parallel branch development.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/yuush10/auto-invoice-collector --skill worktree-yuush10
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: worktree
Source: https://github.com/yuush10/auto-invoice-collector/tree/main/.claude/skills/worktree
Command: npx skills add https://github.com/yuush10/auto-invoice-collector --skill worktree-yuush10

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps developers manage multiple branches concurrently by using Git worktrees, enabling parallel development without stashing or context switching.

Core Features & Use Cases

  • Parallel feature development: Create isolated worktrees for different features or phases.
  • Easy management: List active worktrees, remove unused ones, prune stale entries.
  • Collaboration: Follow naming conventions to share worktree structures with teammates.

Quick Start

Create a new worktree for a feature: git worktree add ../auto-invoice-collector-feature-123 -b feature/123-new-feature Navigate to the new directory and start work: cd ../auto-invoice-collector-feature-123 npm install