·git:worktrees
</>

git:worktrees

Use when working on multiple branches simultaneously, context switching without stashing, reviewing PRs while developing, testing in isolation, or comparing implementations across branches - provides git worktree commands and workflow patterns for parallel development with multiple working directories.

77Installs·13Trend·@neolabhq

Installation

$npx skills add https://github.com/neolabhq/context-engineering-kit --skill git:worktrees

How to Install git:worktrees

Quickly install git:worktrees AI skill to your development environment via command line

  1. Open Terminal: Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.)
  2. Run Installation Command: Copy and run this command: npx skills add https://github.com/neolabhq/context-engineering-kit --skill git:worktrees
  3. Verify Installation: Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Source: neolabhq/context-engineering-kit.

SKILL.md

View raw

Git worktrees enable checking out multiple branches simultaneously in separate directories, all sharing the same repository. Create a worktree instead of stashing changes or cloning separately.

Core principle: One worktree per active branch. Switch contexts by changing directories, not branches.

| Main worktree | Original working directory from git clone or git init | | Linked worktree | Additional directories created with git worktree add | | Shared .git | All worktrees share same Git object database (no duplication) | | Branch lock | Each branch can only be checked out in ONE worktree at a time |

Use when working on multiple branches simultaneously, context switching without stashing, reviewing PRs while developing, testing in isolation, or comparing implementations across branches - provides git worktree commands and workflow patterns for parallel development with multiple working directories. Source: neolabhq/context-engineering-kit.

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/neolabhq/context-engineering-kit --skill git:worktrees
Category
</>Dev Tools
Verified
First Seen
2026-03-02
Updated
2026-03-10

Browse more skills from neolabhq/context-engineering-kit

Quick answers

What is git:worktrees?

Use when working on multiple branches simultaneously, context switching without stashing, reviewing PRs while developing, testing in isolation, or comparing implementations across branches - provides git worktree commands and workflow patterns for parallel development with multiple working directories. Source: neolabhq/context-engineering-kit.

How do I install git:worktrees?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/neolabhq/context-engineering-kit --skill git:worktrees Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Where is the source repository?

https://github.com/neolabhq/context-engineering-kit