Create a new Git worktree with branch name and optional path: $ARGUMENTS
npx claudepluginhub L-Sypniewski/claude-code-toolkit --plugin git-project-managementCreate a new Git worktree with branch name and optional path: $ARGUMENTS
First, parse the arguments to extract:
- Branch name (required, first argument)
- Worktree path (optional, second argument - if not provided, use ../project-{branch-name})
Then execute these steps:
1. Verify we're in a Git repository
2. Show current worktrees with `git worktree list`
3. Create the worktree using `git worktree add <path> -b <branch-name>`
4. Navigate to the new worktree directory
5. List directory contents and check for dependency files (package.json, requirements.txt, etc.)
6. Install dependencies fo.../create_worktreeCreates Git worktree for Linear branch (ENG-XXXX), confirms relative plan file path in thoughts/shared, and launches humanlayer implementation session.
Create 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)