git worktree를 활용해 분리된 작업 환경을 자동으로 구축한다. 기본 브랜치에서 최신 코드를 가져와 `.git-worktrees/` 디렉터리에 새로운 worktree를 생성하고, `.env`, Serena memories, npm 의존성을 자동으로 설정한다. 브랜치명에 포함된 `/`는 자동으로 `-`로 변환된다. 이미 존재하는 worktree가 있을 경우 재사용한다.
Creates a new git worktree from the default branch, automatically configuring .env, Serena memories, and npm dependencies. Uses existing worktrees if available. Triggered when you need a fresh, isolated workspace for a new feature or task.
/plugin marketplace add gaebalai/claude-code-marketplace/plugin install gaebalai@marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/create-worktree.sh아래 명령어를 실행해 git worktree를 생성하고 환경 설정을 수행한다.
인자에는 git worktree로 만들 브랜치 이름을 지정한다.
bash scripts/create-worktree.sh [브랜치명]