Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dschlyter/dotfiles --skill wt명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | wt |
| description | Switch to and from worktree |
When this skill is invoked the user want to switch the current session to a worktree, or switch back from a worktree.
Check the current working dir (without any tool calls), if it contains .claude/worktrees then you are in a worktree.
If the user supplied args to the skill, this might be instructions on branch names, etc. If unrelated to branch names or worktrees, then the args are instructions of work to be carried out once the worktree switch is done.
git worktree add <repo>/.claude/worktrees/<branch-name> <branch-name>EnterWorktree to enter the worktreeIf the current dir is not the root of the repo, then we want a sparse checkout. This avoids copying the entire monorepo into the worktree.
When creating the worktree in step 5, replace the normal flow with:
git rev-parse --show-toplevel and compare to pwd)git worktree add --no-checkout <repo>/.claude/worktrees/<branch-name> (you MUST NOT add the branch as a parameter in the end, as that will cause a checkout)EnterWorktree (with path) to enter the empty worktreegit sparse-checkout set <relative-path-to-subdir>
git checkout <branch>
cd <repo>/.claude/worktrees/<branch-name>/<relative-path-to-subdir>ExitWorktree with action: "keep" to leave the worktree (since the worktree was probably created manually, not by EnterWorktree, remove will be rejected)git worktree remove