Create a new Git worktree with branch name and optional path: $ARGUMENTS
Creates a new Git worktree with a branch and optional path, then installs dependencies for common project directories (astro, strapi, tests). Use this when you need to quickly set up an isolated workspace for feature development or testing.
/plugin marketplace add L-Sypniewski/claude-code-toolkit/plugin install git-project-management@claude-code-toolkitCreate a new Git worktree with branch name and optional path: $ARGUMENTS
First, parse the arguments to extract:
Then execute these steps:
git worktree listgit worktree add <path> -b <branch-name>npm ci in astro/ directory (frontend dependencies)npm ci in strapi/ directory (CMS dependencies)npm ci in tests/ directory (test dependencies)