← Back

New Worktree

This skill creates a new Git worktree for a specified branch name, installing dependencies and copying environment files. It then opens Visual Studio Code, providing an isolated workspace for parallel development tasks.

What it does

This skill streamlines the creation of a new Git worktree. It sets up a new branch, installs project dependencies (detecting npm, pnpm, or bun), copies relevant .env files, and clears any session-local Claude locks. Finally, it opens the new worktree in a fresh VS Code window, preparing an isolated development environment for you.

When to use it

Use this skill when you need to work on a new feature, a bug fix, or any task that requires an isolated Git working copy without disturbing your main development branch. It allows you to run parallel Claude Code sessions, each in its own clean environment.

How to set it up

To use this skill, copy its definition file to .claude/skills/new-worktree/SKILL.md in your repository. You can then invoke it within Claude Code by typing /new-worktree [prefix/]<name>, for example, /new-worktree feat/my-new-feature or /new-worktree fix/bug-report-123.

The content

New Worktree

Spin up a new git worktree for parallel Claude Code session work.

Full reference: @.claude/ref/workflow/worktrees.md

Argument: $ARGUMENTS

Current repo: !git rev-parse --show-toplevel Current branch: !git branch --show-current Existing worktrees: !git worktree list


Step 1: Parse and validate input

$ARGUMENTS accepts two forms:

  1. Bare name — e.g. discover-bug → prefix defaults to feat/
  2. Prefixed name — e.g. fix/discover-bug, chore/cleanup-stash, docs/api-readme, refactor/league-adapter

Valid prefixes: feat, fix, chore, docs, refactor, test, hotfix, ops. Anything else → abort and list the valid set.

The name portion (after the /) must be a non-empty, lowercase, hyphen-separated identifier. Uppercase letters, spaces, or special characters other than hyphens → abort and explain.

If $ARGUMENTS is empty → abort and ask the user.

Step 2: Resolve paths

From the current repo path, compute:

  • repo_root = git rev-parse --show-toplevel
  • repo_name = basename of repo_root (e.g. padel-league.richi.solutions)
  • project_prefix = repo_name with .richi.solutions stripped (e.g. padel-league)
  • parent_dir = parent of repo_root
  • prefix = the parsed prefix from Step 1 (default feat)
  • name = the parsed name from Step 1
  • worktree_path = <parent_dir>/<project_prefix>.<name>
  • branch_name = <prefix>/<name>

Examples:

  • /new-worktree i18n-cleanup on padel-league.richi.solutions → worktree padel-league.i18n-cleanup, branch feat/i18n-cleanup
  • /new-worktree fix/discover-bug on padel-league.richi.solutions → worktree padel-league.discover-bug, branch fix/discover-bug
  • /new-worktree hotfix/webhook-crash on padel-league.richi.solutions → worktree padel-league.webhook-crash, branch hotfix/webhook-crash

Step 3: Pre-flight checks

Abort with a clear error if:

  • The worktree path already exists (Test-Path / -d)
  • The branch already exists locally (git show-ref --verify refs/heads/<branch_name>)
  • The branch is already checked out in another worktree (parse git worktree list output)

Step 4: Create the worktree

git fetch origin
git worktree add <worktree_path> -b <branch_name> origin/main

If origin/main does not exist (e.g. solo repo without remote), fall back to local main.

Step 5: Install dependencies

cd <worktree_path>
npm install

If the repo uses pnpm (detected by pnpm-lock.yaml), use pnpm install instead. If bun (detected by bun.lockb), use bun install.

Step 6: Copy environment files

For each of these files that exists in repo_root but is in .gitignore, copy it to worktree_path:

  • .env
  • .env.local
  • .env.development
  • .env.development.local

Use a non-destructive copy (don't overwrite if it somehow already exists in the new worktree — though Step 3 should have prevented that).

Step 7: Reset session-local state

A fresh worktree must start without inherited Claude session locks. The following files are per-session and should not carry over from another worktree's checkout:

rm -f <worktree_path>/.claude/scheduled_tasks.lock
rm -f <worktree_path>/.claude/*.lock

This is best-effort — missing files are not an error.

Step 8: Open VS Code

code <worktree_path>

This opens a new VS Code window. Tell the user explicitly:

Start a new Claude Code session in the new window. Do not continue the current session — it is attached to the main worktree's workspace and will keep editing files there if you keep using it for code changes.

The current session is fine for reviewing, browsing, or kicking off further worktrees. It is not fine for editing the new feature.

If code is not on PATH, skip the code invocation and tell the user the absolute path to open manually. Still emit the "new session" guidance.

Step 9: Report

Output a concise summary:

✓ Worktree ready

  Path:   <worktree_path>
  Branch: <branch_name> (based on origin/main)
  Deps:   installed
  Env:    copied N file(s)
  Locks: cleared
  IDE:    new VS Code window opened (or: open manually)

➜  Start a NEW Claude Code session in the new window.
   Do NOT continue editing in this session — it lives in the main worktree.

Notes

  • This skill creates a new branch from origin/main. It does not check out an existing remote branch. To work on an existing branch, the user should run git worktree add <path> <branch> manually (no -b flag).
  • The skill does not commit, push, or merge anything. It only sets up the workspace.
  • Cleanup after PR merge is the user's responsibility: git worktree remove <path> + git branch -d <branch>. A future /cleanup-worktree skill can automate this.

Served straight from the framework this site runs on. This page always shows the current version.

Want something like this for you?

It starts with a conversation: 30 minutes, no strings attached.