worktree

Create, list, delete, and locate git worktrees for parallel development.

Updated Jan 2, 2026
One-click install
npx skills add https://github.com/AwolDes/agentfiles --skill worktree-awoldes
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: worktree
Source: https://github.com/AwolDes/agentfiles/tree/main/.claude/skills/worktree
Command: npx skills add https://github.com/AwolDes/agentfiles --skill worktree-awoldes

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Create and manage git worktrees for parallel development. Use when the user wants to create a worktree, work on a feature in isolation, set up a new branch with its own directory, or manage existing worktrees.

Core Features & Use Cases

  • Create a worktree for a branch to isolate feature development.
  • List all existing worktrees to track parallel work.
  • Delete a worktree when it's no longer needed.
  • Get the path to a worktree to quickly cd into it.

Quick Start

  • Create a new worktree: bin/worktree create feature/your-branch
  • List all worktrees: bin/worktree list
  • Delete a worktree: bin/worktree delete feature/your-branch
  • Jump to a worktree: cd <path>