Help us improve
Share bugs, ideas, or general feedback.
From create-worktrees
Creates a git worktree outside the main repo for parallel development on a new branch without stashing. Outputs path, branch, base details, and lists active worktrees.
npx claudepluginhub rohitg00/awesome-claude-code-toolkit --plugin create-worktreesHow this command is triggered — by the user, by Claude, or both
Slash command
/create-worktrees:worktree-createThe summary Claude sees in its command listing — used to decide when to auto-load this command
Create a git worktree for parallel development on a separate branch without stashing. ## Steps 1. Verify the current repository supports worktrees: 2. Determine the worktree configuration: 3. Create the worktree: 4. Set up the worktree environment: 5. List active worktrees with `git worktree list`. 6. Provide the path and instructions to switch to the new worktree. ## Format ## Rules - Always create worktrees outside the main repository directory. - Use descriptive branch names following project conventions. - Do not copy .env files with secrets to worktrees.
/worktreeCreates git worktrees for parallel development on multiple branches: accepts branch/base args, copies configs, installs deps, lists existing, removes/prunes.
/create-worktreesCreates Git worktrees for specified branches with optional base branch and path, enabling parallel development and PR reviews without stashing.
/worktreeCreates an isolated git worktree in ../[repo]-[branch] for parallel development, copies .env* files, installs dependencies, and validates setup. Also supports --list and --clean.
/worktreeCreates an isolated git worktree in .worktrees/<name> based on main, current, or specified branch. Ensures .worktrees/ is git-ignored and lists all worktrees.
/worktree-startCreates Git worktree for parallel development from branch or new one, auto-prefixes by type (feature/fix/refactor), detects project domain (Next.js/Nuxt/Vite/Python/Go/Rust), adds Claude Code .gitignore safeguards.
/worktreeCreates or removes git worktrees for isolated parallel development. Handles env files, dependency syncing, and project setup.
Share bugs, ideas, or general feedback.
Create a git worktree for parallel development on a separate branch without stashing.
git worktree list.Worktree Created:
Path: <absolute path>
Branch: <branch name>
Base: <parent branch>