Set up a local review environment for a colleague's branch using git worktrees
haikudevelopment/# Local Review You are tasked with setting up a local review environment for a colleague's branch. This involves creating a worktree, setting up dependencies, and optionally launching a new editor session. ## Process When invoked with a parameter like `gh_username:branchName`: 1. **Parse the input**: - Extract GitHub username and branch name from the format `username:branchname` - If no parameter provided, ask for it in the format: `gh_username:branchName` 2. **Extract ticket information**: - Look for ticket numbers in the branch name (e.g., `eng-1696`, `ENG-1696`, `123`) -...